Windows Server 2008 上的调度作业
我有一个文件位于 c:\sample\file.exe。 现在我想每晚执行 file.exe。如何使用批处理文件来实现此目的?
请帮帮我
I have a file located in c:\sample\file.exe. Now i want to execute file.exe every night.How can i achive this using batch file?
Please help me out
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在控制面板下,有一个名为“计划任务”的小程序。 这通常是你设置的方式,嗯,又是什么,是的,就是这样,计划任务:-)
如果你真的想从批处理文件而不是漂亮的 GUI 中执行此操作(例如,你正在这样做某些静默安装的一部分),您可以使用
at
或schtasks
。 有关详细信息,请参阅此处,或使用此作为模板:请参阅上述页面以获取更多选项。
Under the Control Panel, there's a applet called Scheduled Tasks. This is usually how you set up, um, what was it again, yes, that's it, scheduled tasks :-)
If you really want to do this from a batch file rather than a nice GUI (e.g., you're doing it as a part of some silent install), you use either
at
orschtasks
. See here for details, or use this as a template:See the afore-mentioned page for even more options.
将此命令保存在批处理文件中并执行。
Save this command in batch file and execute it.