Skip to content Skip to footer

You can remove apps and packages from Windows 11 that you don’t use. Be cautious while using PowerShell to uninstall apps, as removing certain built-in apps may cause unintended consequences or system instability. It’s always a good idea to create a backup or create a system restore point before making changes.. Make sure you create a restore point or back up your system.

Right click on the start button, then select ‘windows terminal’.

Open terminal on windows 11

Type the following command to view a list of all installed apps.

Get-AppxPackage | Select Name, PackageFullName

Get-AppxPackage

To remove the app, you need to add Remove-AppxPackage to the Get-AppxPackage command. 

Get-AppxPackage NAME | Remove-AppxPackage

Get-AppxPackage

Just replace NAME with the name of the package in the list. Included is a list of commands to remove common apps.

Commands to Remove Apps
AppPowerShell Command
Alarms and ClocksGet-AppxPackage *WindowsAlarms* | Remove-AppxPackage
AV1 CodecGet-AppxPackage *AV1VideoExtension* | Remove-AppxPackage
CalculatorGet-AppxPackage *WindowsCalculator* | Remove-AppxPackage
CortanaGet-AppxPackage *Microsoft.549981C3F5F10* | Remove-AppxPackage
Feedback HubGet-AppxPackage *WindowsFeedbackHub* | Remove-AppxPackage
HEIF image supportGet-AppxPackage *HEIFImageExtension* | Remove-AppxPackage
Help and tipsGet-AppxPackage *GetHelp* | Remove-AppxPackage
MapsGet-AppxPackage *WindowsMaps* | Remove-AppxPackage
Microsoft EdgeGet-AppxPackage *MicrosoftEdge* | Remove-AppxPackage
Microsoft To-DoGet-AppxPackage *Todos* | Remove-AppxPackage
Movies and TVGet-AppxPackage *ZuneVideo* | Remove-AppxPackage
MS OfficeGet-AppxPackage *MicrosoftOfficeHub* | Remove-AppxPackage
MS PaintGet-AppxPackage *Paint* | Remove-AppxPackage
Music appGet-AppxPackage *ZuneMusic* | Remove-AppxPackage
News appGet-AppxPackage *BingNews* | Remove-AppxPackage
NotepadGet-AppxPackage *WindowsNotepad* | Remove-AppxPackage
OneDriveGet-AppxPackage *OneDriveSync* | Remove-AppxPackage
People appGet-AppxPackage *People* | Remove-AppxPackage
PhotosGet-AppxPackage *Windows.Photos* | Remove-AppxPackage
PowerAutomateGet-AppxPackage *PowerAutomateDesktop* | Remove-AppxPackage
PowerShellGet-AppxPackage *PowerShell* | Remove-AppxPackage
Screen & Sketch/Snipping ToolGet-AppxPackage *ScreenSketch* | Remove-AppxPackage
SkypeGet-AppxPackage *SkypeApp* | Remove-AppxPackage
Solitaire CollectionGet-AppxPackage *MicrosoftSolitaireCollection* | Remove-AppxPackage
SpotifyGet-AppxPackage *SpotifyAB.SpotifyMusic* | Remove-AppxPackage
Sticky NotesGet-AppxPackage *MicrosoftStickyNotes* | Remove-AppxPackage
Teams/ChatGet-AppxPackage *Teams* | Remove-AppxPackage
Voice RecorderGet-AppxPackage *WindowsSoundRecorder* | Remove-AppxPackage
WeatherGet-AppxPackage *BingWeather* | Remove-AppxPackage
WebP image supportGet-AppxPackage *WebpImageExtension* | Remove-AppxPackage
Windows TerminalGet-AppxPackage *WindowsTerminal* | Remove-AppxPackage
Xbox and related appsGet-AppxPackage *Xbox* | Remove-AppxPackage
Your PhoneGet-AppxPackage *YourPhone* | Remove-AppxPackage

Further Reading

For more information on the topics discussed, have a look at the following book.

0
    Your Cart
    Your cart is empty