Javascript中使用WScript.Shell对象执行.bat文件和cmd命令
Javascript中使用WScript.Shell对象执行.bat文件和cmd命令
http://www.cnblogs.com/ZHF/p/3328439.html
WScript.Shell(Windows Script Host Runtime Library)是一个对象,对应的文件是C:/WINDOWS/system32/wshom.ocx,Wscript.shell是服务器系统会用到的一种组件。shell 就是“壳”的意思,这个对象可以执行操作系统外壳常用的操作,比如运行程序、读写注册表、环境变量等。这个对象通常被用在VB或VBS编程中。
安装WScript.Shell对象:regsvr32 WShom.Ocx
卸载WScript.Shell对象:regsvr32 -u WShom.Ocx 或者 regsvr32 /u WShom.Ocx
For Example:
1. 建立test.bat文件,存于D:根目录下,作用是将*txt文件拷贝到d:/test目录下。
1
2
3
|
md
copy
pause
|
2. 创建WScript.Shell对象,由该对象直接运行test.dat文件。
1
2
3
|
var
objShell;
objShell=
new
ActiveXObject(
"WScript.Shell"
);
var
iReturnCode=objShell.Run(
"c:/test.bat"
,0,
true
);
|
3. 创建WScript.Shell对象,由该对象直接运行CMD命令。
1
2
3
4
|
var
objShell
var
objShell=
new
ActiveXObject(
"WScript.Shell"
)
var
iReturnCode=objShell.Run(
"cmd.exe /c md test"
,0,
true
)
iReturnCode=objShell.Run(
"cmd.exe /c copy d:/*.text mytest"
,0,
true
)
|