Skip to content

Commit ac927f7

Browse files
committed
Learn Editor: Update schedule-antivirus-scans-powershell.md
1 parent 2fdc914 commit ac927f7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

defender-endpoint/schedule-antivirus-scans-powershell.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ For example, to set a daily quick scan run on the Windows clients at 12:00 PM. (
4949
```powershell
5050
Set-MpPreference -ScanScheduleQuickScanTime 720
5151
```
52+
To disable the daily quick scan, set this value to 0
53+
```powershell
54+
Set-MpPreference -ScanScheduleQuickScanTime 0
55+
```
5256

5357
## Use PowerShell cmdlets to scheduling weekly quick or full scans
5458

@@ -121,6 +125,7 @@ Set-MpPreference -ScanScheduleOffset 720
121125
|Disable CPU throttle on idle scans|Enabled/Not Configured (Default)|Set-MpPreference -DisableCpuThrottleOnIdleScans `Boolean` <br>For example: Set-MpPreference -DisableCpuThrottleOnIdleScans $True Idle here means 90% of CPU utilization or below|
122126
|Enable Low CPU Priority|Disabled/Not Configured (Default)|Set-MpPreference -EnableLowCpuPriority `Boolean` <br>For example: Set-MpPreference -EnableLowCpuPriority $False|
123127
|Disable Catchup Full Scan|Disabled/Not Configured (Default)|Set-MpPreference -DisableCatchupFullScan `Boolean` <br>For example: Set-MpPreference -DisableCatchupFullScan $True|
128+
|Disable Catchup Quick Scan|Disabled/Not Configured (Default)|Set-MpPreference -DisableCatchupQuickScan `Boolean` <br>For example: Set-MpPreference -DisableCatchupQuickScan $True|
124129
|Enable full scan on battery power|Disabled/Not Configured (Default)|Set-MpPreference -EnableFullScanOnBatteryPower `Boolean` <br>For example: Set-MpPreference -EnableFullScanOnBatteryPower $False|
125130

126131
For more information, see [Use PowerShell cmdlets to configure and run Microsoft Defender Antivirus](/editor/MicrosoftDocs/defender-docs-pr/defender-endpoint%2Fschedule-antivirus-scans-powershell.md/main/bcb7536e-34b9-8af7-5381-96c46d108a91/use-powershell-cmdlets-microsoft-defender-antivirus.md) and [Defender Antivirus cmdlets](/powershell/module/defender/).

0 commit comments

Comments
 (0)