1.

Solve : Sleep command??

Answer»

hi all,
i was searching google for batch commands and i FOUND that this guy used the sleep command.http://forums.pcworld.co.nz/showpost.php?s=a5e5c6311abc419032861bf3b334dec0&p=54416&postcount=2.
thats the link to his post but on that specific page, it only shows the post i was telling you about.
so is there really a sleep command?
like
Code: [SELECT]sleep 60
yes, you can download from the web. or you can make a homebrew ONE using ping, search the forum.
Or you can also use vbscript.
Code: [Select]Set objArgs = WScript.Arguments
interval=objArgs(0)
WScript.Sleep(CInt(interval)*60)
SAVE it as sleep.vbs, then in your batch to sleep sleep 1 min(60s)
Code: [Select]cscript /nologo sleep.vbs 60



Discussion

No Comment Found