|
Answer» i GOT a reset software, and I write a autoexec.bat for this reset utility. so when boot to C (DOS device),it will CALL this utility c:\sys.exe, but it is too quick ,so i want to add a delay example: sys.exe is running system is going to reboot,5,4,3,2,1 what is the command for it?what version of DOS? dos 98 bootable device/ms dos 6.22DOS 6.22 choice.com has a delay feature
Code: [Select]CHOICE [/C[:]choices] [/N] [/S] [/T[:]c,nn] [text]
/C[:]choices Specifies allowable KEYS. Default is YN /N Do not display choices and ? at end of prompt string. /S TREAT choice keys as case sensitive. /T[:]c,nn Default choice to c after nn seconds text Prompt string to display example (waits 5 seconds)
Code: [Select]choice /C., /N /T.,5
thanks
|