win10 定时重启某个程序

时间:2021-04-26 13:44:55   收藏:0   阅读:0

1. bat程序: restartProxify.bat

@echo off  
taskkill /f /im Proxifier.exe
cd /
cd "C:\Program Files (x86)\Proxifier"
Proxifier.exe
echo 成功重启 Proxifier.exe 程序
exit

2.  每一分钟执行 restartProxify.bat 程序一次

schtasks /create /tn han1 /tr D:\MINTOOL\dostop\restartProxify.bat /sc minute /mo 1  

3.  删除定时任务

schtasks /delete /tn han1 /f

4. 查看定时任务

schtasks /query /tn han1

 

schtasks /create /tn han1 /tr D:\MINTOOL\dostop\restartProxify.bat /sc minute /mo 1

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!