schtasks的系统出现故障(schtasks SYSTEM fails)

2019-11-01 10:42发布

值得注意的是在这里 ,并在帮助,你可以设置“运行方式”。

/RU  username      Specifies the "run as" user account (user context)
                       under which the task runs. For the system account,
                       valid values are "", "NT AUTHORITY\SYSTEM"
                       or "SYSTEM".

从我的测试中,这些命令将开始执行任务

schtasks /create /sc once /st 00:00 /f /tr foo.exe /tn bar
schtasks /run /i /tn bar

但是运行它作为系统将无法启动foo.exe

schtasks /create /sc once /st 00:00 /f /tr foo.exe /tn bar /ru SYSTEM
schtasks /run /i /tn bar

我想作为SYSTEM运行的原因是因为它是在其他的问题,这样做会基本上表示运行foo.exe背景没有窗口。

Answer 1:

这个对我有用

C:\Windows\system32>schtasks /create /sc once /st 09:36 /f /tr notepad.exe /tn bar /ru SYSTEM
SUCCESS: The scheduled task "bar" has successfully been created.

它也可以在使用

C:\Windows\system32>schtasks /run /i /tn bar
SUCCESS: Attempted to run the scheduled task "bar".


Answer 2:

你必须运行CMD.EXE作为管理员,然后输入你的代码。 只有管​​理员可以安排为系统和正常的命令行没有足够的权限运行任务。



文章来源: schtasks SYSTEM fails