diff --git a/Config/Features.json b/Config/Features.json index ab2ee55..b3ad689 100644 --- a/Config/Features.json +++ b/Config/Features.json @@ -401,6 +401,19 @@ "MinVersion": null, "MaxVersion": null }, + { + "FeatureId": "DisableNotifications", + "Label": "Disable Windows Notifications (From apps and other senders)", + "ToolTip": "Disables native Windows notifications from apps and other senders, this includes notifications from apps like Discord, WhatsApp, Teams, and Slack.", + "Category": "Privacy & Suggested Content", + "RegistryKey": "Disable_Notifications.reg", + "ApplyText": "Disabling Windows notifications and reminders", + "UndoLabel": "Enable Windows notifications and reminders", + "ApplyUndoText": "Enabling Windows notifications and reminders", + "RegistryUndoKey": "Enable_Notifications.reg", + "MinVersion": null, + "MaxVersion": null + }, { "FeatureId": "DisableLocationServices", "Label": "Disable Windows location services & app location access", diff --git a/Regfiles/Disable_Notifications.reg b/Regfiles/Disable_Notifications.reg new file mode 100644 index 0000000..4f56f62 Binary files /dev/null and b/Regfiles/Disable_Notifications.reg differ diff --git a/Regfiles/Sysprep/Disable_Notifications.reg b/Regfiles/Sysprep/Disable_Notifications.reg new file mode 100644 index 0000000..f3f6e7f Binary files /dev/null and b/Regfiles/Sysprep/Disable_Notifications.reg differ diff --git a/Regfiles/Undo/Enable_Notifications.reg b/Regfiles/Undo/Enable_Notifications.reg new file mode 100644 index 0000000..58fc5a2 Binary files /dev/null and b/Regfiles/Undo/Enable_Notifications.reg differ diff --git a/Scripts/Get.ps1 b/Scripts/Get.ps1 index 8827757..4114e79 100644 --- a/Scripts/Get.ps1 +++ b/Scripts/Get.ps1 @@ -28,6 +28,7 @@ param ( [switch]$DisableFastStartup, [switch]$DisableBitlockerAutoEncryption, [switch]$DisableModernStandbyNetworking, + [switch]$DisableNotifications, [switch]$DisableStorageSense, [switch]$DisableUpdateASAP, [switch]$PreventUpdateAutoReboot, diff --git a/Win11Debloat.ps1 b/Win11Debloat.ps1 index 1917680..a98636a 100644 --- a/Win11Debloat.ps1 +++ b/Win11Debloat.ps1 @@ -31,6 +31,7 @@ param ( [switch]$PreventUpdateAutoReboot, [switch]$DisableDeliveryOptimization, [switch]$DisableBing, + [switch]$DisableNotifications, [switch]$DisableStoreSearchSuggestions, [switch]$DisableSearchHighlights, [switch]$DisableDesktopSpotlight,