File name: | choice.exe.mui |
Size: | 12288 byte |
MD5: | 446b10884084372248b89a7339ce7f5e |
SHA1: | 6e51b3343f4829e3d419de06207e418797ccc93f |
SHA256: | 663466c098690c3cae26a571e468021a92f15cd2a4a4862956e9d90375acf3b2 |
Operating systems: | Windows 10 |
Extension: | MUI |
In x64: | choice.exe Offers the user a choice (32-bit) |
If an error occurred or the following message in English (U.S.) language and you cannot find a solution, than check answer in English. Table below helps to know how correctly this phrase sounds in English.
id | English (U.S.) | English |
---|---|---|
1 | Invalid syntax. Type "CHOICE /?" for usage. |
Invalid syntax. Type "CHOICE /?" for usage. |
2 | Invalid syntax. /D can only be specified when /T is specified. Type "CHOICE /?" for usage. |
Invalid syntax. /D can only be specified when /T is specified. Type "CHOICE /?" for usage. |
3 | Invalid syntax. Valid range for /T is %d - %d. Type "CHOICE /?" for usage. |
Invalid syntax. Valid range for /T is %d - %d. Type "CHOICE /?" for usage. |
4 | Invalid syntax. /D only accepts single character. Type "CHOICE /?" for usage. |
Invalid syntax. /D only accepts single character. Type "CHOICE /?" for usage. |
5 | Invalid syntax. Default choice is not found in the specified choices. Type "CHOICE /?" for usage. |
Invalid syntax. Default choice is not found in the specified choices. Type "CHOICE /?" for usage. |
6 | Invalid syntax. /T can be specified only when /D is specified. Type "CHOICE /?" for usage. |
Invalid syntax. /T can be specified only when /D is specified. Type "CHOICE /?" for usage. |
7 | Type "CHOICE /?" for usage. |
Type "CHOICE /?" for usage. |
9 | List of choices cannot be empty. |
List of choices cannot be empty. |
10 | Duplicate choices are not allowed. |
Duplicate choices are not allowed. |
11 | Invalid choice. The valid choice characters are: a-z, A-Z, 0-9 and ASCII values of 128 to 254. |
Invalid choice. The valid choice characters are: a-z, A-Z, 0-9 and ASCII values of 128 to 254. |
12 | Message cannot be more than 254 characters. |
Message cannot be more than 254 characters. |
13 | The specified choices are not acceptable. |
The specified choices are not acceptable. |
14 | The timeout factor cannot be empty. |
The timeout factor cannot be empty. |
15 | The timeout factor is invalid. |
The timeout factor is invalid. |
16 | ERROR: The file is either empty or does not contain the valid choices. |
ERROR: The file is either empty or does not contain the valid choices. |
17 | YN | YN |
18 | The characters cannot be converted to upper case. |
The characters cannot be converted to upper case. |
19 | The default choice cannot be empty. |
The default choice cannot be empty. |
50 | CHOICE [/C choices] [/N] [/CS] [/T timeout /D choice] [/M text] |
CHOICE [/C choices] [/N] [/CS] [/T timeout /D choice] [/M text] |
51 | Description: |
Description: |
52 | This tool allows users to select one item from a list |
This tool allows users to select one item from a list |
53 | of choices and returns the index of the selected choice. |
of choices and returns the index of the selected choice. |
56 | Parameter List: |
Parameter List: |
57 | /C choices Specifies the list of choices to be created. |
/C choices Specifies the list of choices to be created. |
58 | Default list is "YN". |
Default list is "YN". |
60 | /N Hides the list of choices in the prompt. |
/N Hides the list of choices in the prompt. |
61 | The message before the prompt is displayed |
The message before the prompt is displayed |
62 | and the choices are still enabled. |
and the choices are still enabled. |
64 | /CS Enables case-sensitive choices to be selected. |
/CS Enables case-sensitive choices to be selected. |
65 | By default, the utility is case-insensitive. |
By default, the utility is case-insensitive. |
67 | /T timeout The number of seconds to pause before a default |
/T timeout The number of seconds to pause before a default |
68 | choice is made. Acceptable values are from 0 to |
choice is made. Acceptable values are from 0 to |
69 | 9999. If 0 is specified, there will be no pause |
9999. If 0 is specified, there will be no pause |
70 | and the default choice is selected. |
and the default choice is selected. |
72 | /D choice Specifies the default choice after nnnn seconds. |
/D choice Specifies the default choice after nnnn seconds. |
73 | Character must be in the set of choices specified |
Character must be in the set of choices specified |
74 | by /C option and must also specify nnnn with /T. |
by /C option and must also specify nnnn with /T. |
76 | /M text Specifies the message to be displayed before |
/M text Specifies the message to be displayed before |
77 | the prompt. If not specified, the utility |
the prompt. If not specified, the utility |
78 | displays only a prompt. |
displays only a prompt. |
80 | /? Displays this help message. |
/? Displays this help message. |
81 | NOTE: |
NOTE: |
82 | The ERRORLEVEL environment variable is set to the index of the |
The ERRORLEVEL environment variable is set to the index of the |
83 | key that was selected from the set of choices. The first choice |
key that was selected from the set of choices. The first choice |
84 | listed returns a value of 1, the second a value of 2, and so on. |
listed returns a value of 1, the second a value of 2, and so on. |
85 | If the user presses a key that is not a valid choice, the tool |
If the user presses a key that is not a valid choice, the tool |
86 | sounds a warning beep. If tool detects an error condition, |
sounds a warning beep. If tool detects an error condition, |
87 | it returns an ERRORLEVEL value of 255. If the user presses |
it returns an ERRORLEVEL value of 255. If the user presses |
88 | CTRL+BREAK or CTRL+C, the tool returns an ERRORLEVEL value |
CTRL+BREAK or CTRL+C, the tool returns an ERRORLEVEL value |
89 | of 0. When you use ERRORLEVEL parameters in a batch program, list |
of 0. When you use ERRORLEVEL parameters in a batch program, list |
90 | them in decreasing order. |
them in decreasing order. |
92 | Examples: |
Examples: |
93 | CHOICE /? |
CHOICE /? |
94 | CHOICE /C YNC /M "Press Y for Yes, N for No or C for Cancel." |
CHOICE /C YNC /M "Press Y for Yes, N for No or C for Cancel." |
95 | CHOICE /T 10 /C ync /CS /D y |
CHOICE /T 10 /C ync /CS /D y |
96 | CHOICE /C ab /M "Select a for option 1 and b for option 2." |
CHOICE /C ab /M "Select a for option 1 and b for option 2." |
98 | CHOICE /C ab /N /M "Select a for option 1 and b for option 2." |
CHOICE /C ab /N /M "Select a for option 1 and b for option 2." |
5001 | ERROR: | ERROR: |
5002 | WARNING: | WARNING: |
5003 | SUCCESS: | SUCCESS: |
5004 | INFO: | INFO: |
5005 | N/A | N/A |
5501 | Type the password for %s: | Type the password for %s: |
5502 | Passing the user credential for local connection. |
Passing the user credential for local connection. |
5503 | The target system must be running Windows XP or above. |
The target system must be running Windows XP or above. |
5504 | The remote system must be running Windows 2000 or above. |
The remote system must be running Windows 2000 or above. |
5601 | Invalid syntax. '%s' value is not allowed for '%s' option. %s |
Invalid syntax. '%s' value is not allowed for '%s' option. %s |
5602 | Invalid syntax. Specify valid numeric value for '%s'. %s |
Invalid syntax. Specify valid numeric value for '%s'. %s |
5603 | Invalid syntax. Specifiy valid floating point value for '%s'. %s |
Invalid syntax. Specifiy valid floating point value for '%s'. %s |
5604 | Invalid syntax. Mandatory option '%s' is missing. %s |
Invalid syntax. Mandatory option '%s' is missing. %s |
5605 | Invalid syntax. '%s' option is not allowed more than '%d' time(s). %s |
Invalid syntax. '%s' option is not allowed more than '%d' time(s). %s |
5607 | Invalid argument/option - '%s'. %s |
Invalid argument/option - '%s'. %s |
5608 | Invalid syntax. Default argument is missing. %s |
Invalid syntax. Default argument is missing. %s |
5609 | Length of the command line argument should not exceed 255 characters. |
Length of the command line argument should not exceed 255 characters. |
5610 | Invalid syntax. Default option is not allowed more than '%d' time(s). %s |
Invalid syntax. Default option is not allowed more than '%d' time(s). %s |
5611 | Invalid syntax. Value expected for '%s'. %s |
Invalid syntax. Value expected for '%s'. %s |
5612 | Invalid syntax. '%s' value is not allowed as default argument. %s |
Invalid syntax. '%s' value is not allowed as default argument. %s |
5613 | Type "%s /?" for usage. | Type "%s /?" for usage. |
5614 | Value for '%s' option cannot be empty. %s |
Value for '%s' option cannot be empty. %s |
5615 | Value for default option cannot be empty. %s |
Value for default option cannot be empty. %s |
5616 | Invalid syntax. Specify valid numeric value for default. %s |
Invalid syntax. Specify valid numeric value for default. %s |
5617 | Invalid syntax. Specifiy valid floating point value for default. %s |
Invalid syntax. Specifiy valid floating point value for default. %s |
5618 | Value for default option cannot be more than %d character(s). |
Value for default option cannot be more than %d character(s). |
5619 | Invalid syntax. Value cannot be specified with '%s' option. %s |
Invalid syntax. Value cannot be specified with '%s' option. %s |
5620 | Value for '%s' option cannot be more than %d character(s). |
Value for '%s' option cannot be more than %d character(s). |
File Description: | Offers the user a choice |
File Version: | 10.0.15063.0 (WinBuild.160101.0800) |
Company Name: | Microsoft Corporation |
Internal Name: | choice.exe |
Legal Copyright: | © Microsoft Corporation. All rights reserved. |
Original Filename: | choice.exe.mui |
Product Name: | Microsoft® Windows® Operating System |
Product Version: | 10.0.15063.0 |
Translation: | 0x409, 1200 |