答えて

0

これは実際には簡単です。

Start-Process "$env:ProgramFiles\Microsoft Security Client\MpCmdRun.exe" ` 
    -ArgumentList "-RestoreDefaults" -Wait -NoNewWindow 

上記のコマンドは、実際に "有効にする" Antimalware設定をリセットします。以下のコマンドは、設定を変更します。

Import-Module –Name "$env:ProgramFiles\Microsoft Security Client\MpProvider" 

Set-MProtPreference ` 
    -ScanParameters 1 ` 
    -ScanScheduleDay 0 ` 
    -ScanScheduleTime 06:00:00 ` 
    -ScanScheduleQuickScanTime 07:00:00 ` 
    -RandomizeScheduleTaskTimes $false 
関連する問題