20 分钟后连续运行批处理文件(windows xp 操作系统)?
我想运行一个包含命令的批处理文件 arp -d * (用于刷新 MAC 条目表)
我想在 20-20 分钟后连续执行此批处理文件..定期? 我如何通过批处理编程来做到这一点?
请指导我..
希望得到快速和积极的回应..
I want to run a batch file which contain command
arp -d * ( used to flush the MAC entry table)
I want to execute this batch file continuously after 20-20 minutes .. regulary ?
How can i do this with batch programming ?
Plz guide me ..
hoping for quick and positive response ..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的系统上没有 sleep 命令,您可以从 Windows 资源工具包获取它。
If you dont have the sleep command on your system you can get it from the Windows Resource Kit.
通过以下链接,您将能够实现您想要的:
如何批量执行命令按时间间隔生成文件。
每 30 秒运行一个程序
运行批处理文件每 30 秒一次
With the following links you'll be able to achieve what you want:
How to execute commands in a batch file in timed intervals.
Run a program every 30 seconds
run batch file every 30 seconds