ESX Virtualization

VMware ESXi, vSphere, VMware Backup, Hyper-V... how-to, videos....

Nakivo Backup and Replication - #1 Backup solution for Virtual, physical, cloud, NAS and SaaS

Menu
  • Certification
      • VCP-DCV vSphere 8
          • vcp2024-125.
        • Close
    • Close
  • VMware
    • Configuration Maximums
    • vSphere
      • VVF 9 and VCF 9
      • vSphere 8.0
      • vSphere 7.0
      • vSphere 6.7
      • vSphere 6.5
      • vSphere 6.0
      • Close
    • VMworld
      • VMware EXPLORE 2024
      • VMware EXPLORE 2023
      • VMware EXPLORE 2022
      • VMworld 2019
      • VMworld 2018
      • VMworld 2017
      • VMworld 2016
      • VMworld 2015
      • VMworld 2014
      • VMworld 2013
      • VMworld 2012
      • VMworld 2011
      • Close
    • Close
  • Microsoft
    • Windows Server 2012
    • Windows Server 2016
    • Windows Server 2019
    • Windows Server 2025
    • Close
  • Categories
    • Tips – VMware, Microsoft and General IT tips and definitions, What is this?, How this works?
    • Server Virtualization – VMware ESXi, ESXi Free Hypervizor, VMware vSphere Server Virtualization, VMware Cloud and Datacenter Virtualization
    • Backup – Virtualization Backup Solutions, VMware vSphere Backup and ESXi backup solutions.
    • Desktop Virtualization – Desktop Virtualization, VMware Workstation, VMware Fusion, VMware Horizon View, tips and tutorials
    • How To – ESXi Tutorials, IT and virtualization tutorials, VMware ESXi 4.x, ESXi 5.x and VMware vSphere. VMware Workstation and other IT tutorials.
    • Free – Free virtualization utilities, ESXi Free, Monitoring and free backup utilities for ESXi and Hyper-V. Free IT tools.
    • Videos – VMware Virtualization Videos, VMware ESXi Videos, ESXi 4.x, ESXi 5.x tips and videos.
    • Home Lab
    • Reviews – Virtualization Software and reviews, Disaster and backup recovery software reviews. Virtual infrastructure monitoring software review.
    • Close
  • Partners
    • NAKIVO
    • StarWind
    • Zerto
    • Xorux
    • Close
  • This Web
    • News
    • ESXi Lab
    • About
    • Advertise
    • Archives
    • Disclaimer
    • PDFs and Books
    • Close
  • Free
  • Privacy policy

How-to Uninstall Windows 10 Apps With Powershell

By Vladan SEGET | Last Updated: September 30, 2015

Shares

Built-in apps which are bundled with Windows 10 are sitting on freshly installed system. You can notice those apps in case you have created a multiple local users on the system because each time you have created new user, when the user logs on for the first time Windows 10 starts to install apps for that particular user. How-to Uninstall Windows 10 Apps With Powershell? That's the subject of today's post.

There are apps that you can uninstall the usually way (by clicking the icon > right click > uninstall), which works for many apps like those for example…. Get Office, Get Skype, Get Started, Microsoft Solitaire Collection, Money, News, Phone Companion….

However, even if you do uninstall the app this way, when create new user and first log him (her) in, the app gets deployed anyway. That's why the app has to be uninstalled via PowerShell.

Some apps cannot be uninstalled the standard way anyway…. If you look in the Settings > System > Apps and features, you'll see that some of the apps for uninstalling, the buttons are grayed out.

how-to unistall windows 10 apps

Microsoft do not want you to uninstall those apps the “normal” way. For this we'll use powershell code which can do it.

To check which apps are installed on your system, start PowerShell session as admin

PowerShell Session As an Admin

and enter this line of code:

Get–AppXProvisionedPackage –Online | Select PackageName

How-to Uninstall provissioned Apps

To Uninstall All Windows 10 Apps With Powershell enter this:

Get–AppxProvisionedPackage –Online | Remove–AppxProvisionedPackage –Online

You can also unistall some apps (one by one) by entering this:

Remove–AppxProvisionedPackage –Online –PackageName <PackageName>

Example for some apps:

Get-AppxPackage *3dbuilder* | Remove-AppxPackage

or

Get-AppxPackage *windowsalarms* | Remove-AppxPackage

or

Get-AppxPackage *windowscalculator* | Remove-AppxPackage

 

Each of those apps is uninstalled and shows a long list (you see first three only in the screenshot below…)

How-to uninstall windows 10 apps with powershell

Then when we check again which apps are “pre-installed” with the first command we used, we can see that there is nothing left…

How-to uninstall windows 10 apps with powershell

Now you can obviously to go back to the original state if you want and have those apps installed again. For this to do is very simple. Just enter this line of code:

Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}

It takes a while….

How-to uninstall windows 10 apps with powershell

There is another way to get a completely clean ISO. An iso which at the base does not have all those apps preinstalled. Check out Windows 10 Enterprise LTSB edition (eval).  That's all folks. Stay tuned for more news, tutorials.

Shares
5/5 - (2 votes)

| Filed Under: How To Tagged With: How-to Uninstall Windows 10 Apps With Powershell

About Vladan SEGET

This website is maintained by Vladan SEGET. Vladan is as an Independent consultant, professional blogger, vExpert x16, Veeam Vanguard x9, VCAP-DCA/DCD, ESX Virtualization site has started as a simple bookmarking site, but quickly found a large following of readers and subscribers.

Connect on: Facebook. Feel free to network via Twitter @vladan.

Comments

  1. Jiri Bergman says

    September 29, 2015 at 9:26 pm

    small improve remove metro apps
    Get-AppxPackage -AllUsers | Remove-AppxPackage

  2. namedtuple says

    September 30, 2015 at 10:29 am

    Typo in this line: Get–AppXProvisionedPackage –Online | Remove–AppxProvisionedPackage –Online;
    it should have lowercase ‘x’ in ‘Get–AppXProvisionedPackage’.

    • Vladan SEGET says

      September 30, 2015 at 11:28 am

      Thanks, I updated the post.

  3. Joseph Peni says

    April 4, 2016 at 8:51 am

    If you have any stubborn universal or privileged apps that seem difficult to remove, use the Powershell GRID option to select and delete apps:

    Just use Out-Gridview to display a grid of installed aapps and select which applications you want to remove.

    Get-AppxPackage | Out-GridView -Passthru | Remove-AppXPackage

    Edit: Keep in mind the above only removed the apps for the current user. To remove the apps from the computer for all users, run the following:

    Get-AppxProvisionedPackage -Online | Out-GridView -PassThru | Remove-AppxProvisionedPackage -Online

    This will display a grid of all installed apps. You can SELECT the apps (highlight in blue) you want to remove from the displayed list and click OK. Reboot. (I found I could only delete a few apps at a time by repeating the above command and selecting a few each time I reran the command)

Private Sponsors

Featured

  • Thinking about HCI? G2, an independent tech solutions peer review platform, has published its Winter 2023 Reports on Hyperconverged Infrastructure (HCI) Solutions.
  • Zerto: One Platform for Disaster Recovery, Backup & Cloud Mobility: Try FREE Hands-On Labs Today!
Click to Become a Sponsor

Most Recent

  • Free Virtual Backup Appliance from StarWind – With Community Support (example configuration for ESXi and Veeam Backup)
  • VMware vSphere Foundation (VVF 9) and VMware Cloud Foundation (VCF 9) Has been Released
  • Veeam Backup & Replication 12.3.2 – patch critical vulnerabilities for your dataprotection environments
  • Veeam confirming vSphere 9.0 and ESXi 9 upcoming support
  • Veeam Backup & Replication v13 Beta: A Game-Changer with Linux
  • What is Veeam Data Cloud Vault and how it can help SMBs
  • Nakivo Backup and Replication – Malware Scan Feature
  • Zerto 10 U7 released with VMware NSX 4.2 Support
  • XorMon NG 1.9.0 Infrastructure Monitoring – now also with Veeam Backup Support
  • Heartbeat vs Node Majority StarWind VSAN Failover Strategy

Get new posts by email:

 

 

 

 

Support us on Ko-Fi

 

 

Buy Me a Coffee at ko-fi.com

Sponsors

Free Trials

  • DC Scope for VMware vSphere – optimization, capacity planning, and cost management. Download FREE Trial Here.
  • Augmented Inline Deduplication, Altaro VM Backup v9 For #VMware and #Hyper-V – Grab your copy now download TRIAL.

VMware Engineer Jobs

VMware Engineer Jobs

YouTube

…

Find us on Facebook

ESX Virtualization

…

Copyright © 2025 ·Dynamik-Gen · Genesis Framework · Log in