Skip to content
OnMSFT.com
  • Home
  • About
  • Contact
  • Windows
  • Surface
  • Xbox
  • How-To
  • OnPodcast
  • Edge
  • Teams
  • Gaming
Menu
  • Home
  • About
  • Contact
  • Windows
  • Surface
  • Xbox
  • How-To
  • OnPodcast
  • Edge
  • Teams
  • Gaming
  1. Home
  2. How-to
  3. 2 easy ways uninstall your programs using PowerShell – OnMSFT.com

2 easy ways uninstall your programs using PowerShell – OnMSFT.com

admin admin
May 20, 2022
3 min read

Are you facing any difficulties in uninstalling your computer programs in the usual ways? Or  maybe you simply don’t want to do it the old way, and instead want to try a different method. Luckily, there are plenty of non-conformist ways to do that. One of the simple ways to uninstall your program is through the Windows PowerShell. Here’s how.

1. Use PowerShell

The PowerShell is a task automating program that consists of a command line shell, scripting language, and a management structure which helps you manage your system.

Built on top of .NET framework, PowerShell was introduced back in 2006 and has been going strong since then. Interestingly, you can also uninstall your in-built programs with the PowerShell. Here’s how.

  1. Head to the Start menu search bar, type in ‘powershell,’ and run the PowerShell as an admin.
  2. Pick and type any of the command from the list below and uninstall your app for good.

Camera: Get-AppxPackage *windowscamera* | Remove-AppxPackage

Get Office: Get-AppxPackage *officehub* | Remove-AppxPackage

Calendar and Mail: Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage

News: Get-AppxPackage *bingnews* | Remove-AppxPackage

OneNote: Get-AppxPackage *onenote* | Remove-AppxPackage

People: Get-AppxPackage *people* | Remove-AppxPackage

Get Started: Get-AppxPackage *getstarted* | Remove-AppxPackage

Groove Music: Get-AppxPackage *zunemusic* | Remove-AppxPackage

Maps: Get-AppxPackage *windowsmaps* | Remove-AppxPackage

Get Skype: Get-AppxPackage *skypeapp* | Remove-AppxPackage

Calculator: Get-AppxPackage *windowscalculator* | Remove-AppxPackage

Microsoft Solitaire Collection: Get-AppxPackage *solitairecollection* | Remove-AppxPackage

3D Builder: Get-AppxPackage *3dbuilder* | Remove-AppxPackage

Alarms and Clock: Get-AppxPackage *windowsalarms* | Remove-AppxPackage

Money: Get-AppxPackage *bingfinance* | Remove-AppxPackage

Movies & TV: Get-AppxPackage *zunevideo* | Remove-AppxPackage

Phone Companion: Get-AppxPackage *windowsphone* | Remove-AppxPackage

Sports: Get-AppxPackage *bingsports* | Remove-AppxPackage

Voice Recorder: Get-AppxPackage *soundrecorder* | Remove-AppxPackage

Weather: Get-AppxPackage *bingweather* | Remove-AppxPackage

Xbox: Get-AppxPackage *xboxapp* | Remove-AppxPackage

Photos: Get-AppxPackage *photos* | Remove-AppxPackage

Store: Get-AppxPackage *windowsstore* | Remove-AppxPackage

For example, we’ve uninstalled the Xbox app here, as shown in the picture below.

powershell

That’s it. Type in any of the above command and hit Enter. Your app will be uninstalled and removed in a few seconds.

2. $MyApp.Uninstall()

An alternate method to the above setting, you can uninstall a program with the help of the $MyApp.Uninstall() command. Before you can use this command, though, you’ll have to get the list of all the installed apps. This is important because you need to have the exact name of app, as understood or stored in the PowerShell. Here’s the correct command for that:

Get-WmiObject -Class Win32_Product | Select-Object -Property Name

You’ll have a huge list of commands after a few seconds.

The second step in this process is to spot the application you want to remove. Then, you’ll have to create a variable and map it to the app you wish to remove.

$MyApp = Get-WmiObject -Class Win32_Product | Where-Object{$_.Name -eq “Some App”}

Replace ‘Some App’ with the real program you’d like to uninstall. Now, the value of your app is stored in the MyApp variable. To finalize the uninstallation, run the following command and hit Enter:

$MyApp.Uninstall()

Do this and your program will be successfully installed through PowerShell.

Uninstalling Windows apps through the PowerShell

The PowerShell is a handy utility that can help you get more control over your PC. Removing your PC apps is only one, and perhaps one of the easiest ways to use this free Windows tool. We’ve covered a host of guides about PowerShell over the years—everything from creating PowerShell scripts on Windows 10 and Windows 11 to enabling Hyper-V through PowerShell is at OnMSFT. So don’t stop now, checkout Microsoft’s in-depth article on PowerShell to get a rounded idea about this handy utility.

Share This Post:

Share this article:
Tags:
PowerShell Windows 10 Windows 11
Previous Article Play these 3 video games for free on Xbox this weekend – OnMSFT.com Next Article How to create your own USB security key from scratch on Windows 11 – OnMSFT.com

Related Articles

1Password Windows 10 Edge extension coming soon » On MSFT

March 1, 2026

Windows 10: How to set your default apps for email, web browser, and more

March 1, 2026

Windows 10: How to enable the new Edge rendering engine in Internet Explorer 11

March 1, 2026

Leave a Comment Cancel reply

Your email address will not be published. Required fields are marked *

Recent Posts

  • US Internal Revenue Service to pay Microsoft ‘millions’ for an extra year of security patches
  • U.S.-Based Internet Traffic Was Redirected To China, Researchers Say
  • US and Canadian Microsoft Stores will have extra Xbox Ones on launch day
  • Urinal-mouted video games the next big thing?
  • Upgrade to a new Lumia device and get US$90 worth of Gameloft in-game credits

Recent Comments

  1. A WordPress Commenter on Hello world!

Archives

  • March 2026
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021
  • May 2021
  • April 2021
  • March 2021
  • February 2021
  • January 2021
  • December 2020
  • November 2020
  • October 2020
  • September 2020
  • August 2020
  • July 2020
  • June 2020
  • May 2020
  • April 2020
  • March 2020
  • February 2020
  • January 2020
  • December 2019
  • November 2019
  • October 2019
  • September 2019
  • August 2019
  • July 2019
  • June 2019
  • May 2019
  • April 2019
  • March 2019
  • February 2019
  • January 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • June 2018
  • May 2018
  • April 2018
  • March 2018
  • February 2018
  • January 2018
  • December 2017
  • November 2017
  • October 2017
  • September 2017
  • August 2017
  • July 2017
  • June 2017
  • May 2017
  • April 2017
  • March 2017
  • February 2017
  • January 2017
  • December 2016
  • November 2016
  • October 2016
  • September 2016
  • August 2016
  • July 2016
  • June 2016
  • May 2016
  • April 2016
  • March 2016
  • February 2016
  • January 2016
  • December 2015
  • November 2015
  • October 2015
  • September 2015
  • August 2015
  • July 2015
  • June 2015
  • May 2015
  • April 2015
  • March 2015
  • February 2015
  • January 2015
  • December 2014
  • November 2014
  • October 2014
  • September 2014
  • August 2014
  • July 2014
  • June 2014
  • May 2014
  • April 2014
  • March 2014
  • February 2014
  • January 2014
  • December 2013
  • November 2013
  • October 2013
  • September 2013
  • August 2013
  • July 2013
  • June 2013
  • May 2013
  • April 2013
  • March 2013
  • February 2013
  • January 2013
  • December 2012
  • November 2012
  • October 2012
  • September 2012
  • August 2012
  • July 2012
  • June 2012
  • May 2012
  • April 2012
  • March 2012
  • February 2012
  • January 2012
  • December 2011
  • November 2011
  • October 2011
  • September 2011
  • August 2011
  • July 2011
  • June 2011
  • May 2011
  • April 2011
  • March 2011
  • February 2011
  • January 2011
  • December 2010
  • November 2010
  • October 2010
  • September 2010

Categories

  • Announcements
  • Deals
  • Developer
  • Editorial
  • Feature
  • Feature stories
  • Hero-post
  • Hotdeals
  • How-to
  • Latest news
  • Microsoft / office 365
  • News
  • Office 365
  • Onpodcast
  • Opinion
  • Our featured post
  • Polls
  • Review
  • Reviews
  • Uncategorized
  • Videos
OnMSFT.com

OnMSFT.com covers Microsoft news, reviews, and how-to guides. Formerly known as WinBeta, we have been your source for Microsoft news since 1998.

Categories

  • Windows
  • Surface
  • Xbox
  • How-To
  • OnPodcast
  • Gaming
  • Edge
  • Teams

Recent Posts

  • US Internal Revenue Service to pay Microsoft ‘millions’ for an extra year of security patches
  • U.S.-Based Internet Traffic Was Redirected To China, Researchers Say
  • US and Canadian Microsoft Stores will have extra Xbox Ones on launch day
  • Urinal-mouted video games the next big thing?
  • Upgrade to a new Lumia device and get US$90 worth of Gameloft in-game credits

Quick Links

  • About OnMSFT.com
  • Contact OnMSFT
  • Join Our Team
© 2010–2026 OnMSFT.com LLC. All rights reserved.
About OnMSFT.comContact OnMSFT