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 启动应用程序

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

上一篇:ios10中禁止用户缩放页面


下一篇:关于windows和linux系统更换JDK版本后,修改环境变量也无法生效的原因和解决办法