Merge pull request #4782 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/MicrosoftDocs/windows-itpro-docs (branch public)
@ -410,6 +410,17 @@ Valid values are:
|
|||||||
- 1 – Enable.
|
- 1 – Enable.
|
||||||
- 0 (default) – Disable.
|
- 0 (default) – Disable.
|
||||||
|
|
||||||
|
<a href="" id="configuration-enablefilehashcomputation"></a>**Configuration/DisableCpuThrottleOnIdleScans**<br>
|
||||||
|
Indicates whether the CPU will be throttled for scheduled scans while the device is idle. This feature is enabled by default and will not throttle the CPU for scheduled scans performed when the device is otherwise idle, regardless of what ScanAvgCPULoadFactor is set to. For all other scheduled scans this flag will have no impact and normal throttling will occur.
|
||||||
|
|
||||||
|
The data type is integer.
|
||||||
|
|
||||||
|
Supported operations are Add, Delete, Get, Replace.
|
||||||
|
|
||||||
|
Valid values are:
|
||||||
|
- 1 – Enable.
|
||||||
|
- 0 (default) – Disable.
|
||||||
|
|
||||||
<a href="" id="configuration-enablefilehashcomputation"></a>**Configuration/EnableFileHashComputation**
|
<a href="" id="configuration-enablefilehashcomputation"></a>**Configuration/EnableFileHashComputation**
|
||||||
Enables or disables file hash computation feature.
|
Enables or disables file hash computation feature.
|
||||||
When this feature is enabled Windows defender will compute hashes for files it scans.
|
When this feature is enabled Windows defender will compute hashes for files it scans.
|
||||||
|
@ -181,7 +181,7 @@ mstsc.exe /remoteGuard
|
|||||||
```
|
```
|
||||||
|
|
||||||
> [!NOTE]
|
> [!NOTE]
|
||||||
> The user must be part of administrators group.
|
> The user must be authorized to connect to the remote server using Remote Desktop Protocol, for example by being a member of the Remote Desktop Users local group on the remote computer.
|
||||||
|
|
||||||
## Considerations when using Windows Defender Remote Credential Guard
|
## Considerations when using Windows Defender Remote Credential Guard
|
||||||
|
|
||||||
|
@ -143,28 +143,34 @@ Create a subtask or role files that contribute to an playbook or task.
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
- name: Add Microsoft APT key
|
- name: Add Microsoft APT key
|
||||||
apt_key:
|
apt_key:
|
||||||
keyserver: https://packages.microsoft.com/
|
keyserver: https://packages.microsoft.com/
|
||||||
id: BC528686B50D79E339D3721CEB3E94ADBE1229CF
|
id: BC528686B50D79E339D3721CEB3E94ADBE1229CF
|
||||||
when: ansible_os_family == "Debian"
|
when: ansible_os_family == "Debian"
|
||||||
|
|
||||||
- name: Add Microsoft apt repository for MDATP
|
- name: Add Microsoft apt repository for MDATP
|
||||||
apt_repository:
|
apt_repository:
|
||||||
repo: deb [arch=arm64,armhf,amd64] https://packages.microsoft.com/[distro]/[version]/prod [channel] main
|
repo: deb [arch=arm64,armhf,amd64] https://packages.microsoft.com/[distro]/[version]/prod [channel] main
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
state: present
|
state: present
|
||||||
filename: microsoft-[channel].list
|
filename: microsoft-[channel].list
|
||||||
when: ansible_os_family == "Debian"
|
when: ansible_os_family == "Debian"
|
||||||
|
|
||||||
|
- name: Add Microsoft DNF/YUM key
|
||||||
|
rpm_key:
|
||||||
|
state: present
|
||||||
|
key: https://packages.microsoft.com/keys/microsoft.asc
|
||||||
|
when: ansible_os_family == "RedHat"
|
||||||
|
|
||||||
- name: Add Microsoft yum repository for MDATP
|
- name: Add Microsoft yum repository for MDATP
|
||||||
yum_repository:
|
yum_repository:
|
||||||
name: packages-microsoft-com-prod-[channel]
|
name: packages-microsoft-com-prod-[channel]
|
||||||
description: Microsoft Defender for Endpoint
|
description: Microsoft Defender for Endpoint
|
||||||
file: microsoft-[channel]
|
file: microsoft-[channel]
|
||||||
baseurl: https://packages.microsoft.com/[distro]/[version]/[channel]/
|
baseurl: https://packages.microsoft.com/[distro]/[version]/[channel]/
|
||||||
gpgcheck: yes
|
gpgcheck: yes
|
||||||
enabled: Yes
|
enabled: Yes
|
||||||
when: ansible_os_family == "RedHat"
|
when: ansible_os_family == "RedHat"
|
||||||
```
|
```
|
||||||
|
|
||||||
- Create the Ansible install and uninstall YAML files.
|
- Create the Ansible install and uninstall YAML files.
|
||||||
@ -176,13 +182,13 @@ Create a subtask or role files that contribute to an playbook or task.
|
|||||||
```
|
```
|
||||||
```Output
|
```Output
|
||||||
- hosts: servers
|
- hosts: servers
|
||||||
tasks:
|
tasks:
|
||||||
- include: ../roles/onboarding_setup.yml
|
- include: ../roles/onboarding_setup.yml
|
||||||
- include: ../roles/add_apt_repo.yml
|
- include: ../roles/add_apt_repo.yml
|
||||||
- apt:
|
- apt:
|
||||||
name: mdatp
|
name: mdatp
|
||||||
state: latest
|
state: latest
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
```
|
```
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
@ -203,13 +209,13 @@ Create a subtask or role files that contribute to an playbook or task.
|
|||||||
```
|
```
|
||||||
```Output
|
```Output
|
||||||
- hosts: servers
|
- hosts: servers
|
||||||
tasks:
|
tasks:
|
||||||
- include: ../roles/onboarding_setup.yml
|
- include: ../roles/onboarding_setup.yml
|
||||||
- include: ../roles/add_yum_repo.yml
|
- include: ../roles/add_yum_repo.yml
|
||||||
- yum:
|
- yum:
|
||||||
name: mdatp
|
name: mdatp
|
||||||
state: latest
|
state: latest
|
||||||
enablerepo: packages-microsoft-com-prod-[channel]
|
enablerepo: packages-microsoft-com-prod-[channel]
|
||||||
```
|
```
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
@ -219,7 +225,7 @@ Create a subtask or role files that contribute to an playbook or task.
|
|||||||
- hosts: servers
|
- hosts: servers
|
||||||
tasks:
|
tasks:
|
||||||
- yum:
|
- yum:
|
||||||
name: mdatp
|
name: mdatp
|
||||||
state: absent
|
state: absent
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 53 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 27 KiB |