Merge pull request #1977 from MicrosoftDocs/user/tudobril/proc-excl

Clarify process exclusions
This commit is contained in:
Rebecca Agiewich 2020-02-05 10:36:40 -06:00 committed by GitHub
commit bc101064e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,9 +150,9 @@ Specify content excluded from being scanned by file extension.
| **Possible values** | valid file extensions |
| **Comments** | Applicable only if *$type* is *excludedFileExtension* |
##### Name of excluded content
##### Process excluded from the scan
Specify content excluded from being scanned by file name.
Specify a process for which all file activity is excluded from scanning. The process can be specified either by its name (e.g. `cat`) or full path (e.g. `/bin/cat`).
|||
|:---|:---|
@ -407,6 +407,10 @@ The following configuration profile will:
### Intune profile
```XML
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1">
<dict>
<key>PayloadUUID</key>
<string>C4E6A782-0C8D-44AB-A025-EB893987A295</string>
<key>PayloadType</key>
@ -475,6 +479,8 @@ The following configuration profile will:
</dict>
</dict>
</array>
</dict>
</plist>
```
## Full configuration profile example
@ -518,6 +524,12 @@ The following configuration profile contains entries for all settings described
<key>extension</key>
<string>pdf</string>
</dict>
<dict>
<key>$type</key>
<string>excludedFileName</string>
<key>name</key>
<string>cat</string>
</dict>
</array>
<key>exclusionsMergePolicy</key>
<string>merge</string>
@ -638,6 +650,12 @@ The following configuration profile contains entries for all settings described
<key>extension</key>
<string>pdf</string>
</dict>
<dict>
<key>$type</key>
<string>excludedFileName</string>
<key>name</key>
<string>cat</string>
</dict>
</array>
<key>exclusionsMergePolicy</key>
<string>merge</string>