Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Batch File Timer...?
Name: WeedHead Date: December 31, 2000 at 11:30:31 Pacific
Comment:
Ok i am trying to write a BAT file that has a 60 sec timer (runs once) and then executes a program. Also i am trying to get the BAT to exit after the program is called.
Name: KMCS Date: January 1, 2001 at 17:14:52 Pacific
Reply:
You can go to www.kmcsonline.com and download AUTODOS 2000 off of the freeware page which has a bunch of batch file utilities. The one of interest to you would be KMPAUSE which allows you to set a timeout within a batch file...plus AutoDOS has a ton of additional DOS utilities to play with and is is free.
Summary: Can anyone help me!!!!!!!!!!! Please. I have written a batch file with menu options, using the choice command I have given the user 30 seconds to view and decide which option they require. I would lik...
Summary: For config.sys and autoexec.bat, just make the paths without the drive letter. Instead of C:\DOS\HIMEM.SYS, make it \DOS\HIMEM.SYS, then when you put it on another drive with the same directory struc...
Summary: Its not too hard, its pretty 'basic' actually. This should bring the text on onto the screen one letter at a time: CLS welcome$ = "Welcome to my computer!" N = LEN(welcome$) FOR x = 1 TO N PR...