When you add wildcards to the Certificate, CMD, or Path fields, you can use the wildcards to specify files or directories.

Wildcard Description Example
* Matches 0 or more consecutive characters up to a single subdirectory level. C:\program files*\custom application\*.exe

Specifies any executable files in: C:\program files\custom application\ or C:\program files(x86)\custom application\.

** Matches a partial path across all subdirectory levels and is recursive. C:\Python27\Lib\site-packages\**

Specifies any files in that directory and all subdirectories.

? Matches 0 or 1 character in that position. C:\Program Files\Microsoft Visual Studio 1?.0\**

Specifies any files in the MS Visual Studio version 1 or versions 10-19.