重启批处理脚本

时间:2018-06-05 22:53:25

标签: file batch-file restart auto

我正在尝试让FiveM服务器自动重启。目前,这是启动服务器的方式

echo on
title FiveM
cd %~dp0
:loop
%~dp0run.cmd +exec server.cfg %*
timeout /t 6 >null
taskkill /f /im FiveM >nul
timeout /t 30 >null
goto loop```

pause

我希望我的服务器在1小时之后自动重启。要正常停止脚本,您需要cntrl + c。

我该怎么做?

0 个答案:

没有答案