How to uninstall Outlook (new) on Windows 11 and prevent it from redownloading when opening the Windows Mail?

Anonymous
2024-10-09T19:51:01+00:00

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:

  1. Uninstalled the new Outlook from settings (Windows Settings > Apps > Installed apps)
  2. Blocked new Outlook preinstallation via:
  • Remove-AppxProvisionedPackage -AllUsers -Online -PackageName (Get-AppxPackage Microsoft.OutlookForWindows).PackageFullName
  • Remove-AppxPackage -AllUsers -Package (Get-AppxPackage Microsoft.OutlookForWindows).PackageFullName
  1. 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 :)

Outlook | Windows | New Outlook for Windows | For business

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

59 answers

Sort by: Most helpful
  1. Anonymous
    2024-11-10T17:00:12+00:00

    Dear Addie.C,

    I did exactly what you indicated to do - opened Powershell, ran it as an Administrator, pasted all of the code you provided and hit enter, then restarted my computer to make sure the changes took place, then reopened Windows Mail and, lo and behold, New Outlook reinstalled itself again. Any other suggestions??

    Thanks for trying. If you do have any other suggestions I hope to hear from you soon.

    Thanks again.

    In a CMD with admin, type: sc.exe config appidsvc start=auto

    Then follow this guide: https://www.thewindowsclub.com/windows-8-applocker-step-by-step-guide

    Select Outlook For Windows as Deny. If it ask to create other rules to allow installing and running other apps, click yes.

    Reboot and now you can uninstall Outlook (new)

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2024-11-10T16:28:45+00:00

    Dear Addie.C,

    I did exactly what you indicated to do - opened Powershell, ran it as an Administrator, pasted all of the code you provided and hit enter, then restarted my computer to make sure the changes took place, then reopened Windows Mail and, lo and behold, New Outlook reinstalled itself again. Any other suggestions??

    Thanks for trying. If you do have any other suggestions I hope to hear from you soon.

    Thanks again.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2024-11-10T09:22:41+00:00

    Dear BW._1,

    If you want to go back to Windows Mail, you can try the following methods:

    1. Select all the codes below and copy them.
    2. Open PowerShell with admin privileges, you can search for PowerShell in the search bar, right-click on it, and select run with admin.
    3. Once PowerShell is open, paste the codes into it and press Enter. $username = $env:USERNAME   $folderPath = "C:\Users$username\AppData\Local\Packages\microsoft.windowscommunicationsapps_8wekyb3d8bbwe\LocalState\Migration"   $fileToDelete = "$folderPath\settings.json"   if (Test-Path -Path $fileToDelete) {     Remove-Item -Path $fileToDelete -Force     Write-Host "File $fileToDelete has been deleted." } else {     Write-Host "File $fileToDelete does not exist." }   $currentUser = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name   $acl = Get-Acl -Path $folderPath   $denyWriteRule = New-Object System.Security.AccessControl.FileSystemAccessRule($currentUser, "Write", "Deny")   $acl.AddAccessRule($denyWriteRule)   Set-Acl -Path $folderPath -AclObject $acl   Write-Host "Write access denied for $currentUser on $folderPath"

    Hope this helps you, please feel free to let me know how things are going. If there is any deviation in my understanding, please forgive me and provide me with more details. I am more than happy to continue to help you.

    All the best

    Addie.C - MSFT | Microsoft Community Support Specialist

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2024-10-21T17:10:24+00:00

    Thank you, Fred. This does seem to have "worked." Albeit, with a little caveat. I did everything that you had indicated, however, Microsoft still "tries" to install/load the new Outlook - however, it seems to be what I would refer to as a "non-working" version and hasn't yet forced/opened at its will any new version of Outlook. So.....I am cautiously optimistic. Thanks for the feedback and if there is any suggestion you might have with the respect to permanently blocking the "non-working" version of the new Outlook that you can think of, I would be most appreciative. Thanks again.

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2024-10-19T08:24:00+00:00

    I found out the new Outlook version is in the following folder:

    C:\Program Files\WindowsApps\Microsoft.OutlookForWindows_1.2024.925.0_x64__8wekyb3d8bbwe.
    I prevented the installation of the new Outlook bij renaming of the folder Microsoft.OutlookForWindows_1.2024.925.0_x64__8wekyb3d8bbwe.
    To do this I had to become owner of the ( Hidden) folder C:\Program Files\WindowsApps.
    How to change owner is written here: https://www.guidingtech.com/how-to-access-windowsapps-folder-on-windows/

    The slider remains.

    Was this answer helpful?

    0 comments No comments