Merge branch 'master' into MDBranchNetworkQoSPolicyDocUpdate

This commit is contained in:
ManikaDhiman 2020-09-28 08:30:16 -07:00
commit 36c6af6f19
2 changed files with 13 additions and 1 deletions

View File

@ -74,7 +74,6 @@ The following table lists the minimum Windows 10 version that supports Delivery
| Computers running Windows 10 | 1511 | | Computers running Windows 10 | 1511 |
| Computers running Server Core installations of Windows Server | 1709 | | Computers running Server Core installations of Windows Server | 1709 |
| IoT devices | 1803 | | IoT devices | 1803 |
| HoloLens devices | 1803 |
**Types of download packages supported by Delivery Optimization** **Types of download packages supported by Delivery Optimization**

View File

@ -49,6 +49,9 @@ File | A specific file identified by the full path | `/var/log/test.log`<br/>`/v
Folder | All files under the specified folder (recursively) | `/var/log/`<br/>`/var/*/` Folder | All files under the specified folder (recursively) | `/var/log/`<br/>`/var/*/`
Process | A specific process (specified either by the full path or file name) and all files opened by it | `/bin/cat`<br/>`cat`<br/>`c?t` Process | A specific process (specified either by the full path or file name) and all files opened by it | `/bin/cat`<br/>`cat`<br/>`c?t`
> [!IMPORTANT]
> The paths above must be hard links, not symbolic links, in order to be successfully excluded. You can check if a path is a symbolic link by running `file <path-name>`.
File, folder, and process exclusions support the following wildcards: File, folder, and process exclusions support the following wildcards:
Wildcard | Description | Example | Matches | Does not match Wildcard | Description | Example | Matches | Does not match
@ -107,6 +110,16 @@ Examples:
```bash ```bash
mdatp exclusion folder add --path "/var/*/" mdatp exclusion folder add --path "/var/*/"
``` ```
> [!NOTE]
> This will only exclude paths one level below */var/*, but not folders which are more deeply nested; for example, */var/this-subfolder/but-not-this-subfolder*.
```bash
mdatp exclusion folder add --path "/var/"
```
> [!NOTE]
> This will exclude all paths whose parent is */var/*; for example, */var/this-subfolder/and-this-subfolder-as-well*.
```Output ```Output
Folder exclusion configured successfully Folder exclusion configured successfully
``` ```