VBS写个循环运行程序的代码让它一直运行
VBS写个循环运行程序的代码让它一直运行
日期:2012-10-04 19:23:55 人气:1
循环可以使用while ... wend:
Dim objws
Set objws=WScript.CreateObject("wscript.shell")
while true
wscript.sleep 5000
objws.RUN "1.bat"
wend
注意:上面的代码会进入死循环,即会一直运行。