Share via

Microsoft re-adding apps I uninstalled

Ethan Kasprowicz 0 Reputation points
2026-05-06T00:56:37.4466667+00:00

Microsoft, can you please stop trying to install apps like Outlook and LinkedIn. I've had to uninstall apps over and over and I am getting sick and tired of it.

Outlook | Windows | New Outlook for Windows | For home
0 comments No comments

1 answer

Sort by: Most helpful
  1. Q&A Assist
    2026-05-06T00:56:48.91+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    On supported Windows versions, some Microsoft apps such as the new Outlook can be preinstalled or reinstalled by Windows Update or via Mail and Calendar deprecation.

    To stop the new Outlook app from being added back:

    1. Remove the provisioned (preinstalled/default) Outlook package so Windows Update doesn’t reinstall it:
         Remove-AppxProvisionedPackage -AllUsers -Online -PackageName (Get-AppxPackage Microsoft.OutlookForWindows).PackageFullName
      
      After this, Windows updates won't reinstall the new Outlook for Windows.
    2. Remove the app for all existing users so it disappears from current profiles:
         Remove-AppxPackage -AllUsers -Package (Get-AppxPackage Microsoft.OutlookForWindows).PackageFullName
      
    3. If Mail and Calendar are triggering the move to new Outlook, remove those apps as well:
         Get-AppxProvisionedPackage -Online | Where {$_.DisplayName -match "microsoft.windowscommunicationsapps"} | Remove-AppxProvisionedPackage -Online -PackageName {$_.PackageName}
         
         Remove-AppxPackage -AllUsers -Package (Get-AppxPackage microsoft.windowscommunicationsapps).PackageFullName
      
    4. To prevent users from acquiring new Outlook from Microsoft Store, configure or block Microsoft Store access using the guidance in "Configure access to the Microsoft Store app".

    If any of these apps were removed via policy (for example, a policy that removes default Microsoft Store packages), clear that policy before attempting to reinstall them from the Store or via management tools.

    Note: Removing or uninstalling the Microsoft Store app itself is not supported; only access to it can be configured or blocked.


    References:

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.