标签: windows batch-file jobs
我需要编写一个定期重启服务的脚本。我想这将是一项跟踪服务器上特定端口的已建立连接的工作。一旦达到一定数量的连接,它将重新启动服务。
这是我到目前为止所做的:
netstat -an | find /c ":80" //To find the count net stop "Service Name" //To stop the service net start "Service Name" //To start the service