Sorry I as ambiguous: this choice.com makes DOS apps like batch files work. I don't know exactly where you have to put it, so not too much help there.
Nope. choice.com has nothing to do with making batch files work. A batch file is simply a collection of command line parameters that are executed one after the other. choice.com is simply small program that expects the user to make an input. choice.com can be run from the command prompt (aka the DOS prompt, e.g., C:\ ), but it would not make sense from the command prompt... it only makes sense in a batch file, when the user needs to make a choice of what to do. And hence the name, "choice.com"....
When you execute any batch file, each command (the first statement on each line, generally) must be in the command interpreter (e.g., command.com), or must exist as an external command (e.g., choice.com, format.com, ncd.exe, etc. etc. ). If teh command exists in the current directory, it is used. If not, Windoze looks in the OS's root directory, system directory, and any other locations specified in the PATH variable. If the command cannot be located, then an error is returned.
Sooooo...... all you need to do to run the command "choice" in a batch file is to place choice.com in either your OS root directory (e.g., C:\Windows or \winnt ), or you can place it in the same directory from where the batch file is being run.
Hope that helps.... it is long, but that is the short version of basic DOS, choice.com, and batch file programming.
