在 Vista 中计划任务 - 系统重启
我正在尝试为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行
将在 1 秒内重新启动 Windows。
Execute
will restart windows in 1 second.