Uninstall apps using Powershell in windows 11

List all installed apps in Powershell:

Before we uninstall any app, first we need to know the app name. to get all installed apps in your windows pc, run the following command. 
winget list

Uninstall apps using Powershell

Once you know the name of the app to uninstall from our windows PC, Open powershell in Run as administrator and then run the following command. 
// syntax 
winget uninstall PackageName

// uninstalling windows weather app
winget uninstall  Microsoft.BingWeather_8wekyb3d8bbwe

Source:
https://learn.microsoft.com/en-us/windows/package-manager/winget/uninstall

Join the conversation