在 Vista 中计划任务 - 系统重启

发布于 2024-07-13 13:36:37 字数 550 浏览 7 评论 0原文

我正在尝试为 Windows Vista 编写系统重新启动任务。 我是一名网络开发人员,所以我在这里有点不适应。 我已经进入我的操作系统并发现了任务计划程序。

到目前为止,我已经能够通过调用 *.exe 文件来设置一些不同的任务来运行小型 WPF 程序。 我真正需要做的是设置系统在特定时间重新启动。 以凌晨 1 点为例。

有没有办法编写一个简单的 shell 脚本,将强制重新启动 Windows Vista 作为计划任务?

我担心的是,Vista 通常会在您重新启动时要求关闭程序,因此我想确保它确实是自动的,需要零用户交互。

任何帮助或示例链接将不胜感激。

系统:Windows Vista 32位

干杯, Ryan

答案:将所选答案中的代码复制并粘贴到文本文件中。

shutdown -r -f -t 01

将文件另存为 *.bat 文件。 然后,您可以在任务计划程序的“操作”选项卡中选择它。 奇迹般有效。

I am trying to write a system restart Task for Windows Vista. I'm a web developer by trade so I'm a little out of my element here. I have got into my OS and discovered Task Scheduler.

So far I've been able to set up some various tasks to run small WPF programs by calling the *.exe files. What I really need to do is set up a system restart at a specific time. 1 a.m. for example.

Is there a way to write a simple shell script that will force restart Windows Vista as a scheduled task?

My concern is that Vista typically asks to shut down programs when you hit restart, so I would want to make sure that it really is automatic requiring zero user interaction.

Any help, or links to examples would be greatly appreciated.

System: Windows Vista 32bit

Cheers,
Ryan

Answer: Copy and Paste the code in the selected answer to a text file.

shutdown -r -f -t 01

Save the file as a *.bat file. You can then select it in the Actions Tab of the Task Scheduler. Works like a charm.

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

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

发布评论

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

评论(1

臻嫒无言 2024-07-20 13:36:37

执行

关闭-r -f -t 01

将在 1 秒内重新启动 Windows。

Execute

shutdown -r -f -t 01

will restart windows in 1 second.

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