Изменение следующих Windows ключей реестра с помощью ps может помочь (для W10):
Чтобы отключить уведомления центра безопасности (некритические):
HKLM\SOFTWARE\Policies\Microsoft\Windows Defender Security Center\Notifications : DisableEnhancedNotifications
Чтобы отключить ВСЕ уведомления центра безопасности:
HKLM\SOFTWARE\Policies\Microsoft\Windows Defender Security Center\Notifications : DisableNotifications
Чтобы отключить ВСЕ уведомления:
HKCU\Software\Policies\Microsoft\Windows\Explorer : DisableNotificationCenter
HKCU\Software\Microsoft\Windows\CurrentVersion\PushNotifications : ToastEnabled
Код должен выглядеть следующим образом:
Set-ItemProperty -Path "$REG_LOCATION" -Name "$REG_KEY" -Type $TYPE -Value $VALUE
Set-ItemProperty -Path "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender Security Center\Notifications" -Name "DisableEnhancedNotifications" -Type DWord -Value 1