Stand 01.10.2025
Microsoft drängt Kunden zur neuen Outlook-Version.
Es ist möglich, das Verhalten zu ändern und die Push-Benachrichtigungen in Outlook zum Wechseln zu unterdrücken.
Windows
@echo off
reg add "HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Options\General" /v "HideNewOutlookToggle" /t REG_DWORD /d "1" /f
reg add "HKEY_CURRENT_USER\Software\Policies\Microsoft\office\16.0\outlook\preferences" /v "NewOutlookMigrationUserSetting" /t REG_DWORD /d "0" /f
powershell -command "Get-AppxPackage -AllUsers | Where-Object {$_.Name -Like '*OutlookForWindows*'} | Remove-AppxPackage"
powershell -command "Get-AppxProvisionedPackage -Online | ? DisplayName -like '*OutlookForWindows*' | Remove-AppxProvisionedPackage -Online"
pause
macOS
defaults write com.microsoft.Outlook EnableNewOutlook -int 0