Stop automatically installing the new Outlook

Anonymous
2024-05-23T21:36:54+00:00

I'm not using "the new Outlook", I'm staying with the "classic Outlook". Since I don't use it, I have to delete the app. To my surprise, it re-installs itself after a period of time. It's super annoying since I have to keep deleting it How do I stop this from happening?

Outlook | Windows | Classic 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

132 answers

Sort by: Oldest
  1. Anonymous
    2024-10-10T02:10:11+00:00

    Hello Windmill Photos,

    Good day! Thank you for posting to Microsoft Community. We are happy to help you.

    After Microsoft's update, since New Outlook is a Windows component, even if you uninstall it, New Outlook will still download back as soon as you update your Windows system next time. But Outlook and New Outlook can already be used in parallel in your system, so this will not affect your use of Outlook.

    We hope you find the above steps helpful, if you have any questions or concerns, please feel free to contact us!

    Best Regards, 

    Lucas Li - MFST | Microsoft Community Support Specialist 

    i do not want new outlook on my pc can you please help me just use the normal mail app and not new outlook?

    Was this answer helpful?

    20+ people found this answer helpful.
    0 comments No comments
  2. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  3. Anonymous
    2024-10-10T06:52:13+00:00

    That's not true at all because when you click on the old mail icon it redirects you to the new outlook and you can not run the old stuff!!!!

    Blatant lie!!!

    I just stopped closing the program, I keep it up full time so it wont change. Obviously not a fix but I am reduced to this because of MS BS

    Was this answer helpful?

    10+ people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2024-10-10T08:40:03+00:00

    Hello Windmill Photos,

    Good day! Thank you for posting to Microsoft Community. We are happy to help you.

    After Microsoft's update, since New Outlook is a Windows component, even if you uninstall it, New Outlook will still download back as soon as you update your Windows system next time. But Outlook and New Outlook can already be used in parallel in your system, so this will not affect your use of Outlook.

    We hope you find the above steps helpful, if you have any questions or concerns, please feel free to contact us!

    Best Regards, 

    Lucas Li - MFST | Microsoft Community Support Specialist 

    Is Microsoft deaf? Can you stop forcing us to use products we don't want/need?

    Otherwise you can also buy us the device since you own it and you do whatever you want with our money! Windows has become malware and you will lose in the end.

    Was this answer helpful?

    40+ people found this answer helpful.
    0 comments No comments
  5. Anonymous
    2024-10-11T09:56:23+00:00

    this way kind of works...but sometimes it seems they install outlook again:

    1. uninstall outlook (I mad a powersell script. I also made a shortcut on the desktop to run it):

    #requires -runasadministrator

    Get-AppxPackage -AllUsers | Where-Object {$_.Name -Like '*OutlookForWindows*'} | Remove-AppxPackage

    Write-Host "Press any key to continue..." -NoNewLine

    $null = $Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")

    2. create the outlook directory (in special apps folder) and remove all permissions to it. This involved:

    • taking ownership of the parent directory (in the dir's Properties->Security->Advanced tab)
    • (see below for location)
    • create the new "outlook" directory
    • remove inheritance (in the file's Properties->Security->Advanced tab) from the new directory
    • remove all "permission entries" (in the file's Properties->Security->Advanced tab) from the new directory

    the location of the outlook dir for me is:

    C:\Program Files\WindowsApps\Microsoft.OutlookForWindows_1.2024.925.0_x64__8wekyb3d8bbwe

    so first took ownership of : C:\Program Files\WindowsApps

    3. another solution I found involves installing another "fake" app with the same app id of outlook. Its on github.

    Was this answer helpful?

    8 people found this answer helpful.
    0 comments No comments