Choice.exe is available in the NT, 2000, and, presumably XP, resource kits.
Main Topics
Browse All TopicsI found the below article on another site (Link provided at the bottom of my post) Essentially it talks about creating a wait command however when I follow the directions it says that " "CHOICE" is not a recognized internal or external command, operable program or batch file. " and will not wait the number of seconds that I need. Any help would be greatly appreciated.
-------- THE BELOW WAS FOUND ON: http://malektips.com/dos00
SUMMARY: Make your batch files wait for a specified number of seconds before continuing. Works in DOS and Windows.
Do you need a batch file that waits a certain amount of seconds? In some languages, the command would be WAIT, but DOS and Windows do not come with this command for batch files. If you want to implement the WAIT command, create the following batch file and name it WAIT.BAT.
@CHOICE /T:N,%1% > NUL
Now, in order to wait 10 seconds in a batch file, just call the WAIT.BAT batch file as follows:
CALL WAIT 10
--------------------------
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
What operating system are you using?
asyscokid has a viable work around for you, but if you're looking for choice.com - simply copy it from an older system or download the supplement that includes this command here: http://support.microsoft.c
Alternatively, you may be interested in sleep.exe
Download it here: http://www.computerhope.co
Business Accounts
Answer for Membership
by: asyscokidPosted on 2004-05-05 at 08:15:18ID: 10996868
The rest of the article: However, if you are running Windows NT, Windows 2000, or Windows XP, you can use the following WAIT.BAT, as the CHOICE command is not included in the default install:
@ping 127.0.0.1 -n 2 -w 1000
@ping 127.0.0.1 -n %1% -w 1000
The reason for the two lines is that in order to wait using the PING command, you must add extra pings to correctly wait the desired number of seconds. Also, since the PING command is being used, it is possible that this WAIT batch file may run over a few milliseconds. Thus, it is not recommended to use this for critical real-time processing.