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-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
  2. 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
  3. Anonymous
    2024-10-09T11:26:59+00:00

    hi corey,

    I deleted these files however after 10 seconds of using the old windows mail, outlook(new) had reinstalled itself again. What am I doing wrong? it was definitely the correct files as you stated above.

    Was this answer helpful?

    20+ people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2024-10-09T14:33:51+00:00

    Hello,

    As of today, they have changed the way the new outlook is installed.

    I haven't found out how yet, if someone can help me I will appreciate it.

    Just wanted to mention it.

    This app is borderline malware.

    Edit: I found that if you uninstall it, when you launch the old mail app it unpins the old app, downloads the new outlook and pins it instead.

    They have also changed the registry so you can't stop it from the registry editor.

    Was this answer helpful?

    50+ people found this answer helpful.
    0 comments No comments
  5. Anonymous
    2024-10-09T18:11:43+00:00

    Microsoft will soon be getting out the big stick. They'll spank us for bieng naughty and not doing what we're told :-(

    Then there's the naughty step....

    Was this answer helpful?

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