Search found 3 matches

by MattGillman
05 May 2011 01:19
Forum: DOS Batch Forum
Topic: Time limit on CMD window to close
Replies: 5
Views: 12320

Re: Time limit on CMD window to close

Ok so where do i put in where do i put in the time on this new BAT?
by MattGillman
04 May 2011 14:06
Forum: DOS Batch Forum
Topic: Time limit on CMD window to close
Replies: 5
Views: 12320

Re: Time limit on CMD window to close

On new operating systems, usually "timeout /nobreak 5 > nul" will pause the Batch file. But on older systems you may need to use "ping 0 -n 5 > nul". The both will pause or 5 intervals. but pausing the process isnt going to close the window though, is it? Sorry, what question ar...
by MattGillman
04 May 2011 13:35
Forum: DOS Batch Forum
Topic: Time limit on CMD window to close
Replies: 5
Views: 12320

Time limit on CMD window to close

Hi, I have three batch files that link together. The first one, (which asks for a password) triggers the second one, (which runs through random numbers as if it were decoding something) which then triggers the third one (which shows "decoded" information). Here are the codes for all three ...