我有一个批处理脚本,如下所示:
sc stop myservice sc start myservice
它出错了,因为sc不会等到服务停止.如何使用脚本重新启动服务?
海报希望确保在尝试重新启动服务之前停止服务.您可以在“sc query”的输出上使用循环,执行以下操作:
:stop sc stop myservice rem cause a ~10 second sleep before checking the service state ping 127.0.0.1 -n 10 -w 1000 > nul sc query myservice | find /I "STATE" | find "STOPPED" if errorlevel 1 goto :stop goto :start :start net start | find /i "My Service">nul && goto :start sc start myservice