@@ -175,7 +175,7 @@ Examples:
175
175
Extension exclusion removed successfully
176
176
` ` `
177
177
178
- - Add/ Remove an exclusion for a file *(File path should already be present in case of adding or removing exclusion with global scope)* :
178
+ - Add or Remove an exclusion for a file *(File path should already be present in case of adding or removing exclusion with global scope)* :
179
179
180
180
` ` ` bash
181
181
mdatp exclusion file add --path /var/log/dummy.log --scope epp
@@ -209,7 +209,7 @@ Examples:
209
209
File exclusion removed successfully"
210
210
` ` `
211
211
212
- - Add/ Remove an exclusion for a folder:
212
+ - Add or Remove an exclusion for a folder:
213
213
214
214
` ` ` bash
215
215
mdatp exclusion folder add --path /var/log/ --scope epp
@@ -285,23 +285,27 @@ Examples:
285
285
- Add an exclusion for a process:
286
286
287
287
```bash
288
- mdatp exclusion process add --name /usr/bin/cat --scope global
288
+ mdatp exclusion process add --path /usr/bin/cat --scope global
289
289
```
290
290
291
291
```console
292
292
Process exclusion configured successfully
293
293
```
294
294
295
295
```bash
296
- mdatp exclusion process remove --name /usr/bin/cat --scope global
296
+ mdatp exclusion process remove --path /usr/bin/cat --scope global
297
297
```
298
+
299
+ > [!NOTE]
300
+ > Only full path is supported for setting process exclusion with `global` scope.
301
+ > Use only `--path` flag
298
302
299
303
```console
300
304
Process exclusion removed successfully
301
305
```
302
306
303
307
```bash
304
- mdatp exclusion process add --name /usr/bin/ cat --scope epp
308
+ mdatp exclusion process add --name cat --scope epp
305
309
```
306
310
307
311
```console
@@ -310,7 +314,7 @@ Examples:
310
314
311
315
312
316
```bash
313
- mdatp exclusion process remove --name /usr/bin/ cat --scope epp
317
+ mdatp exclusion process remove --name cat --scope epp
314
318
```
315
319
316
320
```console
@@ -321,15 +325,13 @@ Examples:
321
325
322
326
```bash
323
327
mdatp exclusion process add --name cat --scope epp
324
- mdatp exclusion process add --name /usr/bin/dog --scope global
328
+ mdatp exclusion process add --path /usr/bin/dog --scope global
325
329
```
326
330
327
331
```console
328
332
Process exclusion configured successfully
329
333
```
330
334
331
- > [!NOTE]
332
- > Use full path for process exclusion with `global` scope.
333
335
334
336
## Validate exclusions lists with the EICAR test file
335
337
0 commit comments