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: Newest
  1. Anonymous
    2024-09-15T09:19:49+00:00

    What's even worse is I have auto app updates feature turned off, but it installs the new app anyways even though it's not supposed to update any apps.

    Was this answer helpful?

    20+ people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2024-08-01T04:50:47+00:00

    You can create a batch file that uses a wildcard for the username to delete files in a specific folder across all users. Here's an example of how you can do it:


    batch
    @echo off
    set folderPath=C:\Users%username%\AppData\Local\Packages\microsoft.windowscommunicationsapps_8wekyb3d8bbwe\LocalState\Migration\*
    del /Q "%folderPath%"
    echo Files in %folderPath% have been deleted.
    pause-------------------------------------------------------------- This script does the following:

    1. @echo off prevents commands from being displayed in the command prompt.
    2. set folderPath=C:\Users\%username%\specific_folder\* sets the folder path, where %username% is a wildcard that automatically gets replaced with the currently logged-in user's username.
    3. del /Q "%folderPath%" deletes all files in the specified folder quietly (/Q).
    4. echo Files in %folderPath% have been deleted. prints a message indicating that the files have been deleted.
    5. pause keeps the command prompt window open so you can see the message.

    You could then save this file in the startup shell, just press the Windows key + R then type Shell:startup then OK

    This should take you to the folder where you could save the batch file which will run each time a user logs on.

    Hope this helps :)

    Was this answer helpful?

    10+ people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2024-07-31T20:31:06+00:00

    This is an issue when we are using images in VMware for our desktops and this has to be done at a user level. Our business is suffering do to this very Invasive way of pushing new **** out the most business DON'T want or need. So how do we make this stop at a DOMAIN level?

    Was this answer helpful?

    10+ people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2024-07-14T04:59:18+00:00

    Just delete any .JSON files here:

    C:\Users<Youruser>\AppData\Local\Packages\microsoft.windowscommunicationsapps_8wekyb3d8bbwe\LocalState\Migration

    Just replace <youruser> with your username example

    C:\Users\Corey\AppData\Local\Packages\microsoft.windowscommunicationsapps_8wekyb3d8bbwe\LocalState\Migration

    This will stop Outlook from auto installing it's aids on to your computer

    Was this answer helpful?

    90+ people found this answer helpful.
    0 comments No comments
  5. Anonymous
    2024-05-30T22:48:35+00:00

    Unfortunately Lucas, this is a poor answer to the question. Just saying that "old Outlook" and "new Outlook" can be installed in parallel doesn't work. When new Outlook gets installed, it changes the association of .eml and several other Outlook file types to itself. This breaks old Outlook and causes users to put in HelpDesk tickets because they can no longer work.

    There should be a way to prevent new Outlook from being installed on the machine via a group policy or registry key.

    Was this answer helpful?

    100+ people found this answer helpful.
    0 comments No comments