windows 定时关闭程序
windows关闭软件命令
taskkill
/im 指定名称
/f 强制关闭
执行命令
taskkill /im notepad++.exe /f
windows定时任务
决定用schtasks
最终命令
schtasks /create /sc once /tn notepadTask /tr "taskkill /im notepad++.exe /f" /st 20:30
/create 创建
/sc 指定计划频率 可选 MINUTE、 HOURLY、DAILY、WEEKLY、MONTHLY, ONCE, ONSTART, ONLOGON, ONIDLE, ONEVENT.
/tn 指定唯一识别这个计划任务的名称。名称重复时会提示覆盖
/tr 指定在这个计划时间运行的程序的路径和文件名
/st 开始运行时间
木头羊大圣