Hello!
Could you please help me with uninstalling the new Outlook from my computer (Windows 11) as I would still like to use the outdated Windows Mail app?
What I tried:
- Uninstalled the new Outlook from settings (Windows Settings > Apps > Installed apps)
- Blocked new Outlook preinstallation via:
- Remove-AppxProvisionedPackage -AllUsers -Online -PackageName (Get-AppxPackage Microsoft.OutlookForWindows).PackageFullName
- Remove-AppxPackage -AllUsers -Package (Get-AppxPackage Microsoft.OutlookForWindows).PackageFullName
- Blocked new Outlook installation as part of Mail and Calendar deprecation via:
- Get-AppxProvisionedPackage -Online | Where {$_.DisplayName -match "microsoft.windowscommunicationsapps"} | Remove-AppxProvisionedPackage -Online -PackageName {$_.PackageName}
- Remove-AppxPackage -AllUsers -Package (Get-AppxPackage microsoft.windowscommunicationsapps).PackageFullName
All shell commands were run as Administrator and I also deleted OutlookUpdate folder in Registry at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\Orchestrator\UScheduler_Oobe\OutlookUpdate
I would appreciate any advice regarding my question :)