如何在dos命令行中的给定时间启动应用程序?

发布于 2024-11-24 05:11:52 字数 292 浏览 2 评论 0原文

大约一个月前,我在谷歌上读到,dos 中有一个命令,可以在特定时间执行一项任务。

例如。 您可以在特定的时间和日期打开记事本。您可以在特定的日期和时间运行您想要的应用程序。但不幸的是我没有更多地关注它,我阅读了基础知识并放弃了它。现在我一直在谷歌上搜索它两天了,我找不到它。有人经历过吗?

有谁知道有关这些的网站或至少有一些命令要我执行。请让我知道,因为我想在我的一个 c 项目中使用该命令。所以请大家帮助我。

如果您有时间,请发布越来越多的答案,以便我可以获得越来越多的信息来处理。我会接受让我更有意义的答案。先感谢您

I read on google about a month back that there is a command in dos, That performs a task at a particular time.

for example.
You can turn on your notepad at a particular time and date.You can run your desired application at a specific date and time.But unfortunately I did not concetrate more on it I read the basics and left it off.Now I have been googling it from 2 days I dont find it.Does any one gone through it.

Does anyone knows a site regarding these or atleast a few commands to me to go through. please let me know it Because I want that command in one of my c project.So guys please help me.

And please if you have time then post more and more answers so that i could get more and more information to work on.I would accept the one that made me more sense. Thank you in advance

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

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

发布评论

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

评论(1

夜司空 2024-12-01 05:11:52

您可以使用 schtasks

schtasks /create /sc minute /mo 30 /tn "Task runs Every 30 Minuts" /tr c:\PATH\TO\TASK.exe

http://technet.microsoft.com/en-us/library/cc725744%28WS.10%29.aspx#BKMK_minutes

如果如果您使用的是老式操作系统,schtasks 不可用,请使用 at

at 00:00 cmd /c copy C:\Documents\*.* C:\MyDocs

http://support.microsoft.com/kb/313565/en-us

You can use schtasks

schtasks /create /sc minute /mo 30 /tn "Task runs Every 30 Minuts" /tr c:\PATH\TO\TASK.exe

http://technet.microsoft.com/en-us/library/cc725744%28WS.10%29.aspx#BKMK_minutes

If you are on an archaic operating system, where schtasks is not available, use at:

at 00:00 cmd /c copy C:\Documents\*.* C:\MyDocs

http://support.microsoft.com/kb/313565/en-us

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