How do I permanently delete Microsoft Outlook?

BruceRaffel 0 Reputation points
2024-12-08T14:18:32.3+00:00

I want to delete Microsoft Outlook, both the classic version and the new version. Permanently. So far, the permanently is not happening.

Windows
Windows
A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.
5,820 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Anthony P 0 Reputation points
    2024-12-08T15:04:11.45+00:00

    You can try the following two commands to locate the App(s) in question and firstly remove from all users, then secondly to remove the package from Windows.

    Open an elevated PowerShell terminal and run:

    Get-AppxPackage -AllUsers | Out-GridView -PassThru | ForEach-Object { Remove-AppxPackage -AllUsers -Package $_.PackageFullName -Verbose}

    then run:

    Get-AppxProvisionedPackage -Online | Out-GridView -PassThru | ForEach-Object { Remove-AppxProvisionedPackage -Online -PackageName $_.PackageName }

    0 comments No comments

  2. Anthony P 0 Reputation points
    2024-12-08T15:09:34.8866667+00:00

    This will list all the app packages that are built into your installation of Windows and any that were installed by the OEM. Simply hold CTRL and multi-select any apps you don't want, then click OK. These will then be removed. Note that some Windows apps are not removeable and will error.

    Run the following in an elevated PowerShell terminal.

    Get-AppxProvisionedPackage -Online | Out-GridView -PassThru | ForEach-Object { Remove-AppxProvisionedPackage -Online -PackageName $_.PackageName }

    0 comments No comments

Your answer

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