如何使用 SCHTASKS 在 SYSTEM 用户帐户下创建计划任务

发布于 2024-11-17 01:05:27 字数 289 浏览 6 评论 0原文

我目前正在尝试使用以下命令让 SCHTASKS 在 SYSTEM 帐户下创建计划任务:

schtasks.exe" /s "\\" /u "SYSTEM" /Create /SC DAILY /MO "7" /ST "12:00" /TN "mytask" /TR  "C:\test.exe "C:\""

虽然它输出:

ERROR: User credentials are not allowed on the local machine.

I am currently trying to get SCHTASKS to create a scheduled task under the SYSTEM account, by using the following command:

schtasks.exe" /s "\\" /u "SYSTEM" /Create /SC DAILY /MO "7" /ST "12:00" /TN "mytask" /TR  "C:\test.exe "C:\""

Although it outputs:

ERROR: User credentials are not allowed on the local machine.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

诗化ㄋ丶相逢 2024-11-24 01:05:27
  1. 打开提升的(管理)命令提示符。

  2. 输入以下命令:

    schtasks.exe /s "\" /ru "SYSTEM" /Create /SC DAILY /MO "7" /ST "12:00" /TN "mytask" /TR "C:\test.exe "C: \"

请注意区别在于,为了指定 SYSTEM 帐户,您需要使用 /RU 开关,而不是 /U一个。

  1. Open an elevated (admin) command prompt.

  2. Enter the following command:

    schtasks.exe /s "\" /ru "SYSTEM" /Create /SC DAILY /MO "7" /ST "12:00" /TN "mytask" /TR "C:\test.exe "C:\"

Please note the difference is that, in order to specify the SYSTEM account, you need to use the /RU switch and not the /U one.

£冰雨忧蓝° 2024-11-24 01:05:27
  1. 在调度程序中创建任务并将其导出为 XML (https://superuser.com/questions/1334495)
  2. 创建一个文本文件:
    schtasks.exe /create /RU SYSTEM /TN“文件夹\任务名称”/XML“I:\位置\任务名称.xml”
    每个任务的行数根据需要而定,然后将文件另存为批处理 (.bat),以管理员身份运行(右键单击以管理员身份运行)。
  3. 适用于您想要运行它的计算机。
  1. Create your tasks in scheduler them export them as XML (https://superuser.com/questions/1334495)
  2. Create a text file with:
    schtasks.exe /create /RU SYSTEM /TN "Folder\TaskName" /XML "I:\Location\TaskName.xml"
    as many lines as you want, with each task, then save file as batch (.bat), run as administrator (right click run as admin).
  3. Apply to computers that you want to run it on.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文