Add note on exclusions with wildcards

This commit is contained in:
Tudor Dobrila 2020-08-18 13:20:10 -07:00
parent dbee43c8b0
commit 877118df2d

View File

@ -67,6 +67,9 @@ Run the following command to see the available switches for managing exclusions:
mdatp exclusion
```
> [!TIP]
> When configuring exclusions with wildcards, enclose the parameter in double-quotes to prevent globbing.
Examples:
- Add an exclusion for a file extension:
@ -96,6 +99,15 @@ Examples:
Folder exclusion configured successfully
```
- Add an exclusion for a folder with a wildcard in it:
```bash
mdatp exclusion folder add --path "/var/*/"
```
```Output
Folder exclusion configured successfully
```
- Add an exclusion for a process:
```bash