How do I stop the new Outlook from opening?

Alec Crow 0 Reputation points
2025-12-30T02:39:42.9533333+00:00

I want to stop the new Outlook from opening when I open Outlook.

Outlook | Windows | Classic Outlook for Windows | For business

Locked Question. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

2 answers

Sort by: Most helpful
  1. Darren-Ng 12,765 Reputation points Microsoft External Staff Moderator
    2025-12-30T03:43:50.2666667+00:00

    Dear @Alec Crow,

    Thank you for posting your question in the Microsoft Q&A forum.

    Based on your description, you want to stop the New Outlook from opening automatically on your Windows 11 laptop and prefer to use the classic Outlook instead.

    Here are some suggestions you can try:

    Turn off “New Outlook” switch

    • Open New Outlook (the one that opens automatically).
    • In the top-right corner, turn off the switch labeled: “New Outlook”
    • Outlook will close automatically and reopen in Classic Outlook.
    • After this, every time you open Outlook, it will open the Classic version, not the new one.

    Resets Outlook’s startup preference

    • Close Outlook completely.
    • Press Windows + R, type:
        outlook.exe /firstrun
      
      Press Enter.
    • This resets Outlook’s startup preference and brings back the Classic Outlook prompt.

    If you have tried all the methods above but still cannot resolve the issue, try to uninstall app then reinstall it

    • Open Settings > Apps > Installed apps
    • Find Outlook (new)
    • Click Uninstall

    This will NOT remove Classic Outlook. Classic Outlook stays installed as part of Microsoft 365.

    Opening Outlook from: Desktop shortcut > Start menu > Taskbar pinned icon

    it will open Classic Outlook, not the new version.

    I hope information above helpful, if you have any other questions, please feel free to reach out.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Was this answer helpful?

  2. AI answer

    2025-12-30T02:39:53.33+00:00

    To stop the new Outlook from opening when you launch Outlook, you can manage the installation settings through Windows Registry or PowerShell commands, depending on your version of Windows.

    For Windows 11:

    1. Remove the new Outlook app: You can use the following PowerShell command to remove the new Outlook app package:
         Remove-AppxProvisionedPackage -AllUsers -Online -PackageName (Get-AppxPackage Microsoft.OutlookForWindows).PackageFullName
      
      After removal, Windows updates won't reinstall the new Outlook.
    2. Registry Modification: Additionally, you might need to remove a specific registry value to prevent the new Outlook from being installed again:
         HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\Orchestrator\UScheduler_Oobe\OutlookUpdate
      

    For Windows 10:

    1. Registry Setting: To prevent the new Outlook from being installed, add the following registry value:
         HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\Orchestrator\UScheduler_Oobe
      
      Then create a REG_SZ setting named BlockedOobeUpdaters with a value of ["MS_Outlook"].
    2. Remove the app package: If it has already been installed, use the PowerShell command mentioned above to remove it.

    These steps should help you manage the new Outlook's behavior on your system.

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?