20 分钟后连续运行批处理文件(windows xp 操作系统)?

发布于 2024-09-18 07:16:40 字数 140 浏览 8 评论 0原文

我想运行一个包含命令的批处理文件 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 技术交流群。

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

发布评论

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

评论(2

神回复 2024-09-25 07:16:40

如果您的系统上没有 sleep 命令,您可以从 Windows 资源工具包获取它。

:BEGIN
ARP -d *
SLEEP 1200 
GOTO BEGIN

If you dont have the sleep command on your system you can get it from the Windows Resource Kit.

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