windows查看程序启动参数,通过bat定时重启程序

windows查看程序的启动详细参数

wmic process get caption,commandline /value | findstr "WXWork.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 启动应用程序
posted @ 2019-09-24 14:15  JaminX86  阅读(4173)  评论(0编辑  收藏  举报