使用 PHP 将任务添加到 Windows 调度程序

发布于 2024-08-14 10:46:27 字数 83 浏览 5 评论 0原文

我无法找到有关使用 PHP 将任务添加到 Windows 任务计划程序的任何信息。我可以使用 exec()。

这必须在 IIS 上运行。

I'm unable to find any information on adding tasks to Windows Task Scheduler with PHP. I can use exec().

This has to work on IIS.

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

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

发布评论

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

评论(2

懷念過去 2024-08-21 10:46:28

schtasks 的语法

Schtasks /create /sc ScheduleType /tn TaskName /tr TaskRun [/s Computer [/u [Domain\]User [/p Password]]] [/ru {[Domain\]User | System}] [/rp Password] [/mo Modifier] [/d Day[,Day...] | *] [/m Month[,Month...]] [/i IdleTime] [/st StartTime] [/ri Interval] [{/et EndTime | /du Duration} [/k]] [/sd StartDate] [/ed EndDate] [/it] [/Z] [/F]

您可以使用

$cmd = 'schtasks /create blah blah blah...';
exec ($cmd);

Syntax for schtasks

Schtasks /create /sc ScheduleType /tn TaskName /tr TaskRun [/s Computer [/u [Domain\]User [/p Password]]] [/ru {[Domain\]User | System}] [/rp Password] [/mo Modifier] [/d Day[,Day...] | *] [/m Month[,Month...]] [/i IdleTime] [/st StartTime] [/ri Interval] [{/et EndTime | /du Duration} [/k]] [/sd StartDate] [/ed EndDate] [/it] [/Z] [/F]

You can use

$cmd = 'schtasks /create blah blah blah...';
exec ($cmd);
风柔一江水 2024-08-21 10:46:27

Windows 计划任务有一个名为 Schtasks 的命令行实用程序,您可以使用此实用程序将您的任务添加到计划任务列表中。

请访问 Schtasks 语法的 URL
http://technet.microsoft.com/ en-us/library/cc772785%28WS.10%29.aspx#BKMK_run

Windows Schedule Task has a command line utility called Schtasks you can use this utility to add your task to Scheduled task list.

Please go thru the URL for syntax of Schtasks
http://technet.microsoft.com/en-us/library/cc772785%28WS.10%29.aspx#BKMK_run

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文