win10 定时重启某个程序
2021-05-15 17:26
标签:x86 kill create task style size tar win10 color schtasks /create /tn han1 /tr D:\MINTOOL\dostop\restartProxify.bat /sc minute /mo 1 win10 定时重启某个程序 标签:x86 kill create task style size tar win10 color 原文地址:https://www.cnblogs.com/han-guang-xue/p/14699799.html1. 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
上一篇:WPF 多值转换器