A program path and name should have a maximum of 259 characters and
must only contain alphanumeric characters (A-Z, a-z, 0-9). It is not possible to specify
only the
program name.
You can use wildcards in place of drive letters and program names. Use a
question mark (?) to represent single-character data, such as a drive letter. Use
an asterisk (*)
to represent multi-character data, such as a program name.
NoteWildcards cannot be used to represent folder names. The exact name of
a folder must be specified.
|
Wildcards are used correctly in the following examples:
Correct Usage of Wildcards
Wildcards are used incorrectly in the following examples:
Incorrect Usage of Wildcards
Example
|
Reason
|
??:\Buffalo\Password.exe
|
?? represents two characters and drive letters only have a single alphabetic character.
|
*:\Buffalo\Password.exe
|
* represents multi-character data and drive letters only have a single alphabetic
character.
|
C:\*\Password.exe
|
Wildcards cannot be used to represent folder names. The exact name of a folder must
be
specified.
|
C:\?\Password.exe
|