windows通过.bat脚本重启.exe应用程序

工作中有些程序可能需要定时重启,可以用Windows计划任务,执行下面bat脚本。即可重启程序

@echo off
echo "QTranslate Restart"
taskkill /im QTranslate.exe
echo "QTranslate Stop"
start /d "E:\program\QTranslate\" QTranslate.exe
echo "QTranslate Start"
exit

相关命令

  • taskkill 杀死应用程序
  • start /d 启动应用程序

转载于:https://www.cnblogs.com/JaminXie/p/11578045.html

你可能感兴趣的:(windows通过.bat脚本重启.exe应用程序)