choice (command)

In computing, CHOICE is a command that allows for batch files to prompt the user to select one item from a set of single-character choices.[1] It was introduced as an external command (with filenames CHOICE.COM or CHOICE.EXE) with MS-DOS 6.0,[2] Novell DOS 7 and PC DOS 7.0, and is also available from the command line shell of some versions of Microsoft Windows, but not under Windows 2000 and Windows XP.[3] It has been reintroduced in Windows Server 2003 and is present in later versions.[4] The command is also available in FreeDOS[5] and ReactOS.

Starting with Windows 2000, the SET command has similar functionality using the /P command-line argument. However this command requires an additional key stroke (hitting ENTER key), which is not required by CHOICE.

Usage

The command returns the selected choice as an exit code which is set to the index of the key that the user selects from the list of choices. The first choice in the list returns a value of 1, the second a value of 2, and so forth. If a key is pressed that is not a valid choice, the command will sound a warning beep. If an error condition is detected, an exit code value of 255 will be returned. An exit code value of 0 will be returned if the user presses CTRL+BREAK or CTRL+C. Choice displays the default choices Y and N if used without parameters.[6]

Syntax

DOS

CHOICE [/C[:]choices] [/N] [/CS]

[/T[:]c,nn] [/M text]

Arguments:

  • /C[:]choices Specifies allowable keys. The default is "YN".
  • /T[:]c,nn This defaults choice to "c" after "nn" seconds.
  • /M text Specifies the prompt string to display.

Flags:

  • /N Specifies not to display the choices and "?" at end of prompt string.
  • /CS Specifies that choice keys should be treated as case sensitive.

Windows

CHOICE [/C [<Choice1><Choice2><…>]] [/N] [/CS] [/T <Timeout> /D <Choice>] [/M <"Text">]

Arguments:

  • /C[:]choices Specifies allowable keys. The default is "YN".
  • /T[:]nn This defaults choice to /D after "nn" seconds. Must be specified with default /D.
  • /D[:]c This defaults choice to 'c'.
  • /M text Specifies the prompt string to display.

Flags:

  • /N Specifies not to display the choices and "?" at end of prompt string.
  • /CS Specifies that choice keys should be treated as case sensitive.

Example

The batch file below gives the user three choices.[7] The user is directed depending upon his input by evaluating the exit code using the IF ERRORLEVEL command (which tests on "greater or equal"). The selected choice is then printed to the screen using the ECHO command.

@ECHO off
@CHOICE /C:123
IF "%ERRORLEVEL%"=="3" GOTO three
IF "%ERRORLEVEL%"=="2" GOTO two
IF "%ERRORLEVEL%"=="1" GOTO one
GOTO end
:one
ECHO You have pressed "1"!
GOTO end
:two
ECHO You have pressed "2"!
GOTO end
:three
ECHO You have pressed "3"!
:end
@PAUSE
Note that the example uses the DOS syntax. This example requires slight adjustments before it applies directly to Windows versions of the CHOICE command.
Note that the IF command, when checking the ERRORLEVEL, compares the number and matches if ERRORLEVEL is equal to or higher than that number. Because of this IF ERRORLEVEL comparisons should be done in decrementing order.

See also

References

  1. Jamsa, Kris A. (1993), DOS: The Complete Reference, Osborne McGraw-Hill, p. 206, ISBN 0078819040.
  2. http://www.computerhope.com/choicehl.htm
  3. Microsoft Windows XP Command-line reference A-Z
  4. http://www.techrepublic.com/blog/windows-and-office/make-the-choice-command-work-for-you-even-in-windows-7
  5. http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/1.2/repos/pkg-html/group-base.html
  6. Microsoft TechNet Choice article
  7. http://www.computerhope.com/batch.htm
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.