如何用php返回Windows计划任务列表

发布于 2024-11-24 08:34:56 字数 76 浏览 1 评论 0原文

我需要 PHP 来返回所有 Windows (XP) 计划任务 - 这可能吗?我正在创建一个调度脚本,用户需要能够查看哪些时间段已被占用。

I need a what for PHP to return all of Windows' (XP) Scheduled Tasks - is this possible? I'm creating a scheduling script and the user needs to be able to view what time slots are already occupied.

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

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

发布评论

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

评论(1

厌味 2024-12-01 08:34:56

这看起来很有希望 http://codesnob .wordpress.com/2009/05/18/displaying-windows-task-scheduler-tasks-with-php/

另外,http://msdn.microsoft.com/en-us/library /aa383448%28VS.85%29.aspx

最后,http://www.php.net/manual/en/class.com.php

编辑

我刚刚自己进行了测试,这有效。 32 位 Windows、Zend 服务器

$com = new com("Schedule.Service");
$com->Connect();
$oFolder = $com->GetFolder("\\");
$oCollection = $oFolder->GetTasks(0);
print "Count: " . $oCollection->Count . "n";
for ($i = 1; $i <= $oCollection->Count; $i++)
{
      echo $oCollection ->Item($i)->Name ;
}

This looks promising http://codesnob.wordpress.com/2009/05/18/displaying-windows-task-scheduler-tasks-with-php/

Also, http://msdn.microsoft.com/en-us/library/aa383448%28VS.85%29.aspx

And finally, http://www.php.net/manual/en/class.com.php

EDIT

I just ran a test my self and this worked. 32-bit Windows, Zend Server

$com = new com("Schedule.Service");
$com->Connect();
$oFolder = $com->GetFolder("\\");
$oCollection = $oFolder->GetTasks(0);
print "Count: " . $oCollection->Count . "n";
for ($i = 1; $i <= $oCollection->Count; $i++)
{
      echo $oCollection ->Item($i)->Name ;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文