间隔一定时间循环执行某程序(批处理)

一、VBS版本:

 程序代码
set os = createobject("wscript.shell")
do
os.run "test.exe"
wscript.sleep 1000*60
loop


二、BAT版本:

 程序代码
@echo off
:start
start test.exe
ping 127.1 -n 65 >nul
goto start


  欢迎光临 http://www.netboy365.com

你可能感兴趣的:(批处理)