Question

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 ..

Was it helpful?

Solution

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

OTHER TIPS

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top