The use of the asterisk (*) character with Trusted Directory rules has been modified as follows:
- The asterisk (*) wildcard character can only be present between file separator characters and not anywhere else. Examples:
- Valid:
- c:\windows\*\a
- c:\windows\*\a\*\a
- Not valid:
- c:\windows\*\a\*
- c:\windows\*
- c:\windows\*\
- Network paths are recognized if they start with the \\ characters.
- The question mark (?) and asterisk (*) characters can't be used together.
- Not valid:
- \\10.10.10.10?AD?***\User1
- \\10.10.10.10?AD?*\User1
- c:\windows\*?\a
- Multiple asterisk (*) characters aren't needed (when it matches zero or more characters).
- Not valid:
- \\10.10.10.10*****\User2
- c:\windows\***\a
- c:\windows\**\a
The asterisk (
*) wildcard character was modified due to code changes starting with ACC 8.2.1 Update 3. These code changes were implemented to address an issue with Trusted Directory rules using multiple path names. See the table below for valid and invalid patterns.
Feature |
Valid Patterns |
Invalid Patterns |
Trusted |
c:\windows\*\test
c:\windows\*\test\*\test2
\\*\AD\User1
\\?\AD\User1
\\10.??10.10\AD?\User1
\\10.10.10.10\?AD?\User1
\\10.10.10.10\????\User2
\\10.10.10.10\?AD\User1
\\10.10.10.10\AD?\User1
\\10.10.10.10\?AD?\User?
\\10.10.10.10\?AD?\?User1
\\10.10.10.10\?AD?\?User1?
\\10.10.10.10\?AD?\? |
c:\windows\*\a\*
c:\windows\*
c:\windows\*\
c:\windows\*?\a
c:\windows\**\a
c:\windows\***\a
\\10.10.10.10\AD*\User1
\\10.**10.10\AD*\User1
\\10.10.10.10\*AD*\User1
\\10.10.10.10\*****\User2
\\10.10.10.10\*AD\User1
\\10.10.10.10\*AD*\User*
\\10.10.10.10\*AD*\*User1*
\\10.10.10.10\*AD*\*
\\10.10.10.10\*AD*\*User1
\\10.10.10.10\?AD?***\User1
\\10.10.10.10\?***?***\User1
\\10.10.10.10\Test1\User**?
\\10.10.10.10?AD?***\User1
\\10.10.10.10?AD?*\User1 |