dim wsh
set wsh=wscript.createobject("wscript.shell")
msgbox "请输入要关闭程序的PID"
int pid=inputbox("请输入PID","")
b="command /c -c q -p "&pid
wsh.run b
请问执行的时候为什么关闭不了指定程序?什么地方写错了呢?`
set wsh=wscript.createobject("wscript.shell")
msgbox "请输入要关闭程序的PID"
int pid=inputbox("请输入PID","")
b="command /c -c q -p "&pid
wsh.run b
请问执行的时候为什么关闭不了指定程序?什么地方写错了呢?`
