Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想运行一个包含命令 arp -d * 的批处理文件(用于刷新 MAC 条目表)
我想在 20-20 分钟后连续执行这个批处理文件 .. 定期?我如何使用批处理编程来做到这一点?
请指导我..
希望得到快速和积极的回应..
通过以下链接,您将能够实现您想要的:
如何按时间间隔执行批处理文件中的命令。
每 30 秒运行一个程序
每 30 秒运行一次批处理文件
如果您的系统上没有 sleep 命令,您可以从 Windows 资源工具包中获取它。
:BEGIN ARP -d * SLEEP 1200 GOTO BEGIN