From 207ca807cd6bfb273e88229dbbb1c176bd78f0e8 Mon Sep 17 00:00:00 2001 From: Belim Date: Sat, 11 Jan 2025 12:18:16 +0100 Subject: [PATCH] Add Block New Outlook plugin --- plugins/Block New Outlook.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 plugins/Block New Outlook.json diff --git a/plugins/Block New Outlook.json b/plugins/Block New Outlook.json new file mode 100644 index 0000000..b7981e8 --- /dev/null +++ b/plugins/Block New Outlook.json @@ -0,0 +1,13 @@ +{ + "PlugID": "Block New Outlook Preinstall on Windows 11", + "PlugInfo": "This plugin removes the pre-installed Outlook app on Windows 11 builds after 23H2 and blocks future installations.", + "PlugCheck": [], + "PlugCategory": "Tweaks (Plugins)", + "PlugDo": [ + "Get-AppxPackage -Name Microsoft.OutlookForWindows | Remove-AppxPackage", + "reg delete \"HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\WindowsUpdate\\Orchestrator\\UScheduler_Oobe\\OutlookUpdate\" /f" + ], + "PlugUndo": [ + "PowerShell -Command \"Write-Output 'There is no undo operation for removing pre-installed Outlook.'\"" + ] +}