有没有办法将命令插入 Windows 任务计划程序?

有没有办法将命令插入 Windows 任务计划程序?

我需要在 Windows 机器上每天晚上 11 点运行一个命令。为了简单起见,我想自动将此命令插入 Windows 的事件调度程序中。我希望做这样的事情:

insertCommandIntoTaskScheduler.exe --at "11:00pm every night" "shutdown.exe -s -f"

这可能吗?还是我必须使用 UI?

答案1

使用schtasks

schtasks /create /tn "Shutdown" /tr "shutdown -s -f -t 0" /sc daily /st 23:00:00

相关内容