批处理窗口:30 分钟

发布于 2024-07-30 09:12:34 字数 130 浏览 4 评论 0原文

我想做点什么:

我有一个很大的批处理文件,但这就是我想要应用到 HOLE 批处理的内容:

30 分钟后,它应该显示一条消息。

这怎么可能,我可以将其设置为孔批次吗? 我里面好像有很多东西。

I want to do something:

i have a LARGE batch file, but this is what i want to apply to HOLE the batch:

After 30 Minutes, it should display a message.

How is this possible, and can i set this to the hole batch. I kinda have a lot of stuff in it.

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

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

发布评论

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

评论(1

装纯掩盖桑 2024-08-06 09:12:35

您可以从 Windows 资源工具包下载 sleep.exe。 或者您可以使用 ping。 否则,这里有一个将 vbscript 保存为 sleep.vbs 的实现

WScript.Sleep WScript.Arguments.Item(0) 'in milliseconds. 

,并在批处理中使用它

cscript /nologo sleep.vbs 3000

you can download sleep.exe from the windows resource kit. OR you can use ping. Otherwise, here's an implementation with vbscript

WScript.Sleep WScript.Arguments.Item(0) 'in milliseconds. 

save as sleep.vbs and use it in your batch

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