首页 > 代码库 > BAT-运行程序

BAT-运行程序

rem 设置环境变量
set path=%path:;E:\work\RTS\RTSRUN\X64\RTSTest\conf=%
set path=%path%;E:\work\RTS\RTSRUN\X64\RTSTest\conf

rem 进入程序目录
E:
cd E:\work\RTS\RTSRUN\X64\RTSTest\bin

rem 120秒
for /l %%i in (1 1 5) do (
start "" "RTSTest.exe"
ping 127.0.0.1 -n 120 >nul
)

pause


rem start RTSTest.exe
rem 120秒
rem @echo off
rem @ping 127.0.0.1 -n 120 >nul
rem @echo on

 

说明:

start "" "RTSTest.exe" 这个是打开一个windows程序,注意路径,注意 start 后边的 "" 一定不要丢掉。 

 

参考网址为:

http://www.jb51.net/article/25433.htm

 

BAT-运行程序