我目前正在寻找在Windows下管理服务启动/停止的最佳方法。
我将使用windows提供的任务sheduler在特定时间启动脚本。
该脚本的目标是:
还有什么是最好的语言呢? Python是一个不错的选择吗?
的Sebastien
答案 0 :(得分:0)
这是一个批处理脚本(另存为.bat)
tasklist /nh /fi "imagename eq x.exe" | find /i "x.exe" >nul && goto :HOURCHECK || net start Y
exit >nul
:HOURCHECK
timeout /t 3600
tasklist /nh /fi "imagename eq x.exe" | find /i "x.exe" >nul && REM Running || REM Not Running
只需将我的REM
评论替换为在一小时后检查时执行您想要的操作。