Add documentation for passive mode

This commit is contained in:
Tudor Dobrila
2019-09-18 18:21:07 +05:30
parent fbb6e3ea76
commit 3f5210413e

View File

@ -62,6 +62,23 @@ Whether real-time protection (scan files as they are accessed) is enabled or not
| **Data type** | Boolean | | **Data type** | Boolean |
| **Possible values** | true (default) <br/> false | | **Possible values** | true (default) <br/> false |
#### Enable / disable passive mode
Whether the antivirus engine runs in passive more or not. In passive mode:
- Real-time protection is turned off
- On demand scanning is turned on
- Automatic threat remediation is turned off
- Security intelligence updates are turned on
- Status menu icon is hidden
|||
|:---|:---|
| **Domain** | com.microsoft.wdav |
| **Key** | passiveMode |
| **Data type** | Boolean |
| **Possible values** | false (default) <br/> true |
| **Comments** | Available in Microsoft Defender ATP version 100.67.60 or higher. |
#### Scan exclusions #### Scan exclusions
Entities that have been excluded from the scan. Exclusions can be specified by full paths, extensions, or file names. Entities that have been excluded from the scan. Exclusions can be specified by full paths, extensions, or file names.
@ -213,6 +230,28 @@ Determines whether suspicious samples (that are likely to contain threats) are s
| **Data type** | Boolean | | **Data type** | Boolean |
| **Possible values** | true (default) <br/> false | | **Possible values** | true (default) <br/> false |
### User interface preferences
The *userInterface* section of the configuration profile is used to manage the preferences of the user interface of the product.
|||
|:---|:---|
| **Domain** | com.microsoft.wdav |
| **Key** | userInterface |
| **Data type** | Dictionary (nested preference) |
| **Comments** | See the following sections for a description of the dictionary contents. |
#### Show / hide status menu icon
Whether the status menu icon (shown in the top right corner of the screen) is hidden or not.
|||
|:---|:---|
| **Domain** | com.microsoft.wdav |
| **Key** | hideStatusMenuIcon |
| **Data type** | Boolean |
| **Possible values** | false (default) <br/> true |
## Recommended configuration profile ## Recommended configuration profile
To get started, we recommend the following configuration profile for your enterprise to take advantage of all protection features that Microsoft Defender ATP provides. To get started, we recommend the following configuration profile for your enterprise to take advantage of all protection features that Microsoft Defender ATP provides.
@ -357,6 +396,8 @@ The following configuration profile contains entries for all settings described
<dict> <dict>
<key>enableRealTimeProtection</key> <key>enableRealTimeProtection</key>
<true/> <true/>
<key>passiveMode</key>
<false/>
<key>exclusions</key> <key>exclusions</key>
<array> <array>
<dict> <dict>
@ -411,6 +452,11 @@ The following configuration profile contains entries for all settings described
<key>automaticSampleSubmission</key> <key>automaticSampleSubmission</key>
<true/> <true/>
</dict> </dict>
<key>userInterface</key>
<dict>
<key>hideStatusMenuIcon</key>
<false/>
</dict>
</dict> </dict>
</plist> </plist>
``` ```
@ -465,6 +511,8 @@ The following configuration profile contains entries for all settings described
<dict> <dict>
<key>enableRealTimeProtection</key> <key>enableRealTimeProtection</key>
<true/> <true/>
<key>passiveMode</key>
<false/>
<key>exclusions</key> <key>exclusions</key>
<array> <array>
<dict> <dict>
@ -519,6 +567,11 @@ The following configuration profile contains entries for all settings described
<key>automaticSampleSubmission</key> <key>automaticSampleSubmission</key>
<true/> <true/>
</dict> </dict>
<key>userInterface</key>
<dict>
<key>hideStatusMenuIcon</key>
<false/>
</dict>
</dict> </dict>
</array> </array>
</dict> </dict>