Apps Uninstall Apps in Windows 11

  • Thread starter Thread starter Brink
  • Start date Published: Start date Updated Updated:

All_apps_banner.png

This tutorial will show you how to uninstall apps for your account, all users, or new users in Windows 11.

If you no longer want or use an app, then you could uninstall the app to remove it and free up space on the drive.

Desktop apps are traditional programs installed by a user. These will not be an app from the Microsoft Store.

Windows apps are apps installed by a user from the Microsoft Store. Each Microsoft account owns their own apps.

Provisioned apps are apps included with Windows 11, and automatically installed when a new user signs in to Windows the first time. They are per-user apps, and typically installed in the "C:\Program Files\WindowsApps" folder. These are also available in Microsoft Store for a user to reinstall if needed.

Android apps are apps users can install from the Microsoft Store via Android Appstore. This feature uses the Windows Subsystem for Android (WSA), and allows users to interact with Android apps, just like others apps installed from the Microsoft Store. Windows Subsystem for Android (WSA) is being deprecated beginning March 5, 2025.

Starting with Windows 11 build 26220.7271 (Dev and Beta 25H2), Microsoft has added support for uninstalling Store-managed apps from the Microsoft Store’s library page. Simply find an installed app in your library, click the three-dot menu, and click uninstall.

Starting with Windows 11 build 2610.8313 (RP 24H2) and build 26200.8313 (RP 25H2), Microsoft adds support for a dynamic app removal list to the “Remove Default Microsoft Store packages” policy for Windows Enterprise and Education. Administrators can remove additional MSIX/APPX-packaged apps by specifying their app package family names using Group Policy. The dynamic list is not currently available in Intune Settings Catalog. Validation must be performed using Group Policy or custom OMA-URI. For more information, see Policy-based in-box app removal.

Reference:



Contents

  • Option One: Uninstall Desktop Apps, Windows Apps, and Android Apps in Start Menu
  • Option Two: Uninstall Desktop Apps, Windows Apps, and Android Apps in Settings
  • Option Three: Uninstall Desktop Apps in Control Panel
  • Option Four: Uninstall Windows Apps in Microsoft Store Library
  • Option Five: Uninstall Windows Apps and Android Apps for Current User in PowerShell or Command Prompt
  • Option Six: Uninstall Apps for Current User using winget Command
  • Option Seven: Uninstall Provisioned Apps for Current User in PowerShell or Command Prompt
  • Option Eight: Uninstall Provisioned Apps for All Users in PowerShell or Command Prompt
  • Option Nine: Uninstall Provisioned Apps for New Users in PowerShell or Command Prompt




Option One

Uninstall Desktop Apps, Windows Apps, and Android Apps in Start Menu


1 Open the Start Menu :win:.

2 Under the Pinned or All section on the Start Menu, right click on the app (ex: "Xbox") you want to uninstall, and click/tap on Uninstall. (see screenshots below)

Start_Menu_uninstall_pinned_app.webp
Start_Menu_uninstall_app_in_All_section.webp

3 If this is a desktop app, then go to step 3 in Option Two to uninstall the app in Settings.

Starting with Windows 11 version 22H2 KB5030310 Build 22621.2361, right-clicking on a Win32 app in Start, or searching for the app, and choosing “Uninstall” will now take you to Settings to uninstall the app.


4 If this is a Windows app, then click/tap on Uninstall to confirm. (see screenshot below)

Start_Menu_uninstall_app_confirmation.webp




Option Two

Uninstall Desktop Apps, Windows Apps, and Android Apps in Settings


1 Open Settings (Win+I).

2 Click/tap on Apps on the left side, and click/tap on Installed apps on the right side. (see screenshot below)

System Components that were listed on the Settings > Apps > Installed Apps page have moved to their own page under Settings > System > System Components.




Uninstall_apps_Settings-1.png

3 Click/tap on the More options (3 dots) button for the app (ex: "Speedtest") you want to uninstall, and click/tap on Uninstall. (see screenshots below)

Uninstall_apps_Settings-2.png
Uninstall_apps_Settings-3.png

4 Click/tap on Uninstall to confirm. (see screenshot below)

Uninstall_apps_Settings-4.png

5 If this is a desktop app, then follow any instructions for that program's uninstaller. This will vary per program.

6 When finished, you can close Settings if you like.




Option Three

Uninstall Desktop Apps in Control Panel


This option is no longer available starting with Windows 11 build 22523.

Links to Programs & Features in Control Panel will now open to Settings > Apps > Installed Apps.


1 Open the Control Panel (icons view), and click/tap on the Programs and Features icon.

2 Perform one of the following actions: (see screenshot below)
  • Click/tap on the app (ex: "Axialis IconWorkshop") you want to uninstall.
  • Select the app (ex: "Axialis IconWorkshop") you want to uninstall, and click/tap on Uninstall on the toolbar.
  • Right click or press and hold on the app (ex: "Axialis IconWorkshop") you want to uninstall, and click/tap on Uninstall.
Uninstall_apps_Control_Panel-1.png

3 If prompted by UAC, click/tap on Yes to approve.

4 Follow any instructions for that program's uninstaller. This will vary per program. (see screenshot below)

Uninstall_apps_Control_Panel-2.png

5 When finished, you can close the Control Panel if you like.




Option Four

Uninstall Windows Apps in Microsoft Store Library


This option is only available in Windows 11 build 26220.7271 (Dev and Beta 25H2).


1 Open the Microsoft Store app.

2 Click/tap on Library in the left pane. (see screenshot below)

Uninstall_app_Microsoft_Store_Library-1.webp

3 Click/tap on the More options (3 dots) button of the app you want to uninstall, and click/tap on Uninstall. (see screenshot below)

Apps with a Open button are installed apps.

Apps with a cloud button can be installed when you click/tap on the cloud button.


Uninstall_app_Microsoft_Store_Library-2.webp

4 Click/tap on Uninstall to confirm. (see screenshot below)

Uninstall_app_Microsoft_Store_Library-3.webp

5 When finished uninstalling apps, you can close the Microsoft Store app if you like.




Option Five

Uninstall Windows Apps and Android Apps for Current User in PowerShell or Command Prompt


1 Open Windows Terminal, and either Windows PowerShell or Command Prompt.

2 Copy and paste the appropriate command below you want to use into Windows Terminal, and press Enter to see a list of all installed Windows apps for the current user account. (see screenshot below)

(outputs to text file on your desktop)​
PowerShell
Get-AppxPackage | Where-Object {$_.NonRemovable -eq $False} | Select Name, PackageFullName >"$env:userprofile\Desktop\Apps_List.txt"

Command Prompt
powershell -command "Get-AppxPackage | Where-Object {$_.NonRemovable -eq $False} | Select Name, PackageFullName >"$env:userprofile\Desktop\Apps_List.txt""

OR​

(outputs inside Terminal)​
PowerShell
Get-AppxPackage | Where-Object {$_.NonRemovable -eq $False} | Select Name, PackageFullName

Command Prompt
powershell -command "Get-AppxPackage | Where-Object {$_.NonRemovable -eq $False} | Select Name, PackageFullName"

Uninstall_apps_for_current_user_in_PowerShell-1.png

3 Scroll through the list of installed apps, and look for the PackageFullName (ex: "Ookla.SpeedtestbyOokla_1.15.163.0_x64__43tkc6nmykmb6") of the app (ex: "Speedtest") you want to uninstall. (see screenshot above)

4 Type the appropriate command below into Windows Terminal, and press Enter. (see screenshot below)

PowerShell
Remove-AppxPackage -Package "PackageFullName"

Command Prompt
powershell -command "Remove-AppxPackage -Package "PackageFullName""

Substitute PackageFullName in the command above with the app's (ex: "Speedtest") actual PackageFullName (ex: "Ookla.SpeedtestbyOokla_1.15.163.0_x64__43tkc6nmykmb6") from step 3.

For example: Remove-AppxPackage -Package "Ookla.SpeedtestbyOokla_1.15.163.0_x64__43tkc6nmykmb6"


Uninstall_apps_for_current_user_in_PowerShell-2.png

5 When finished, you can close Windows Terminal if you like.




Option Six

Uninstall Apps for Current User using winget Command


You must be signed in as an administrator to use this option.



1 Open Windows Terminal (Admin), and select either Windows PowerShell or Command Prompt.

2 Copy and paste the command below into Windows Terminal (Admin), and press Enter to see a list of all installed apps. (see screenshot below step 3)

winget list

3 Scroll through the list of installed apps, and make note of the Name (ex: "Microsoft To Do") of the app you want to uninstall. (see screenshot below)

winget_list.png

4 Type the command below into Windows Terminal (Admin), and press Enter. (see screenshot below)

winget uninstall "App Name"

Substitute App Name in the command above with the actual app's Name (ex: "Microsoft To Do") from step 3.

For example: winget uninstall "Microsoft To Do"


winget_uninstall.png

5 When finished, you can close Windows Terminal (Admin) if you like.




Option Seven

Uninstall Provisioned Apps for Current User in PowerShell or Command Prompt


1 Open Windows Terminal, and select either Windows PowerShell or Command Prompt.

2 Copy and paste the appropriate command below you want to use into Windows Terminal (Admin), and press Enter to see a list of all installed built-in apps. (see screenshot below)

(outputs to text file on your desktop)​
PowerShell
Get-AppxPackage -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName >"$env:userprofile\Desktop\Provisioned_Apps_List.txt"

Command Prompt
powershell -command "Get-AppxPackage -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName >"$env:userprofile\Desktop\Provisioned_Apps_List.txt""

OR​

(outputs inside Terminal)​
PowerShell
Get-AppxPackage -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName

Command Prompt
powershell -command "Get-AppxPackage -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName"

Uninstall_provisioned_apps_for_current_user_in_PowerShell-1.jpg

3 Scroll through the list of installed apps, and look for the Name (ex: "Microsoft.XboxGamingOverlay") of the built-in app (ex: "Xbox Game Bar") you want to uninstall. (see screenshot above)

4 Type the appropriate command below into Windows Terminal (Admin), and press Enter. (see screenshot below)

PowerShell
Get-AppxPackage -PackageTypeFilter Bundle -Name "Name" | Remove-AppxPackage

Command Prompt
powershell -command "Get-AppxPackage -PackageTypeFilter Bundle -Name "Name" | Remove-AppxPackage"

Substitute Name in the command above with the app's (ex: "Xbox Game Bar") actual Name (ex: "Microsoft.XboxGamingOverlay") from step 3.

For example: Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.XboxGamingOverlay" | Remove-AppxPackage


Uninstall_provisioned_apps_for_current_user_in_PowerShell-2.png

5 When finished, you can close Windows Terminal if you like.




Option Eight

Uninstall Provisioned Apps for All Users in PowerShell or Command Prompt


You must be signed in as an administrator to use this option.


1 Open Windows Terminal (Admin), and select either Windows PowerShell or Command Prompt.

2 Copy and paste the appropriate command below you want to use into Windows Terminal (Admin), and press Enter to see a list of all installed built-in apps. (see screenshot below)

(outputs to text file on your desktop)​
PowerShell
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName >"$env:userprofile\Desktop\Provisioned_Apps_List.txt"

Command Prompt
powershell -command "Get-AppxPackage -AllUsers -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName >"$env:userprofile\Desktop\Provisioned_Apps_List.txt""

OR​

(outputs inside Terminal)​
PowerShell
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName

Command Prompt
powershell -command "Get-AppxPackage -AllUsers -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName"

Uninstall_provisioned_apps_for_all_users_in_PowerShell-1.jpg

3 Scroll through the list of installed apps, and look for the Name (ex: "Microsoft.GetHelp") of the built-in app (ex: "Get Help") you want to uninstall. (see screenshot above)

4 Type the appropriate command below into Windows Terminal (Admin), and press Enter. (see screenshot below)

PowerShell
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Name" | Remove-AppxPackage -AllUsers

Command Prompt
powershell -command "Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Name" | Remove-AppxPackage -AllUsers"

Substitute Name in the command above with the app's (ex: "Get Help") actual Name (ex: "Microsoft.GetHelp") from step 3.

For example: Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.GetHelp" | Remove-AppxPackage -AllUsers


Uninstall_provisioned_apps_for_all_users_in_PowerShell-2.png

5 When finished, you can close Windows Terminal (Admin) if you like.




Option Nine

Uninstall Provisioned Apps for New Users in PowerShell or Command Prompt


You must be signed in as an administrator to use this option.

When you uninstall a provisioned app for new users, that app will no longer be installed for any new account created afterwards.

This does not affect current existing accounts.


1 Open Windows Terminal (Admin), and select either Windows PowerShell or Command Prompt.

2 Copy and paste the appropriate command below you want to use into Windows Terminal (Admin), and press Enter to see a list of all installed built-in apps. (see screenshot below)

(outputs to text file on your desktop)​
PowerShell
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName >"$env:userprofile\Desktop\Provisioned_Apps_List.txt"

Command Prompt
powershell -command "Get-AppxPackage -AllUsers -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName >"$env:userprofile\Desktop\Provisioned_Apps_List.txt""

OR​

(outputs inside Terminal)​
PowerShell
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName

Command Prompt
powershell -command "Get-AppxPackage -AllUsers -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName"

Uninstall_provisioned_apps_for_all_users_in_PowerShell-1.jpg

3 Scroll through the list of installed apps, and look for the Name (ex: "Microsoft.GetHelp") of the built-in app (ex: "Get Help") you want to uninstall. (see screenshot above)

4 Type the appropriate command below into Windows Terminal (Admin), and press Enter. (see screenshot below)

PowerShell
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Name*'} | remove-appxprovisionedpackage –online

Command Prompt
powershell -command "Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Name*'} | remove-appxprovisionedpackage –online"

Substitute Name in the command above with the app's (ex: "Get Help") actual Name (ex: "Microsoft.GetHelp") from step 3.

For example: Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.GetHelp*'} | remove-appxprovisionedpackage –online


Uninstall_provisioned_apps_for_new_users_in_PowerShell.webp

5 When finished, you can close Windows Terminal (Admin) if you like.


That's it,
Shawn Brink


 
Last edited:
1765134051144.webp
 

My Computer My Computer

At a glance

WindowsIntel 8086kEVGA 3080 Ti FTW3 Ultra
OS
Windows
CPU
Intel 8086k
Motherboard
Asus z370-F
Graphics Card(s)
EVGA 3080 Ti FTW3 Ultra
Sound Card
ADI-2 DAC fs
I tried. It's not working.
I poked around where I could. Everything works for me. Maybe someone smarter can tell me where I have it. But I repeat, everything works for me.
 

My Computer My Computer

At a glance

Windows 11 Stable, Beta, Dev, CanaryAMD Ryzen 9 PRO 5950X128 GbIntel(R) Arc(TM) A380 Graphics (2 ГБ)
OS
Windows 11 Stable, Beta, Dev, Canary
Computer type
PC/Desktop
Manufacturer/Model
Micro-Star International Co., Ltd. MS-7D54
CPU
AMD Ryzen 9 PRO 5950X
Motherboard
MSI MAG X570S Tomahawk Max WiFi (MS-7D54) (2 PCI-E x1, 2 PCI-E x16, 2 M.2, 4 DDR4 DIMM, Audio, Video, 2.5GbE LAN, WiFi)
Memory
128 Gb
Graphics Card(s)
Intel(R) Arc(TM) A380 Graphics (2 ГБ)
Sound Card
Устройство с поддержкой High Definition Audio
Monitor(s) Displays
HP X34 [34" LCD] (6CM1300J5J) {2021}
Screen Resolution
3440x1440
Hard Drives
KINGSTON SFYRD2000G (2000 ГБ, PCI-E 4.0 x4)
PSU
Be Quiet! Dark Rock Pro 4
Case
Cooler Master HAF XB EVO
Internet Speed
1000 Mb/s
Browser
Chrome
Antivirus
Windows Defender
Here's another video

 

My Computer My Computer

At a glance

Windows 11 Stable, Beta, Dev, CanaryAMD Ryzen 9 PRO 5950X128 GbIntel(R) Arc(TM) A380 Graphics (2 ГБ)
OS
Windows 11 Stable, Beta, Dev, Canary
Computer type
PC/Desktop
Manufacturer/Model
Micro-Star International Co., Ltd. MS-7D54
CPU
AMD Ryzen 9 PRO 5950X
Motherboard
MSI MAG X570S Tomahawk Max WiFi (MS-7D54) (2 PCI-E x1, 2 PCI-E x16, 2 M.2, 4 DDR4 DIMM, Audio, Video, 2.5GbE LAN, WiFi)
Memory
128 Gb
Graphics Card(s)
Intel(R) Arc(TM) A380 Graphics (2 ГБ)
Sound Card
Устройство с поддержкой High Definition Audio
Monitor(s) Displays
HP X34 [34" LCD] (6CM1300J5J) {2021}
Screen Resolution
3440x1440
Hard Drives
KINGSTON SFYRD2000G (2000 ГБ, PCI-E 4.0 x4)
PSU
Be Quiet! Dark Rock Pro 4
Case
Cooler Master HAF XB EVO
Internet Speed
1000 Mb/s
Browser
Chrome
Antivirus
Windows Defender
Sorry for the delay in getting back to this thread. I got it figured out though.

Code:
PowerShell -Command "Get-appxpackage -allusers *Microsoft.BingWeather* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.BingWeather*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.Print3D* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.Print3D*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.Wallet* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.Wallet*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.Xbox.TCUI* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.Xbox.TCUI*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.XboxIdentityProvider* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.XboxIdentityProvider*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.YourPhone* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.YourPhone*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.XboxGamingOverlay* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.XboxGamingOverlay*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.Microsoft3DViewer* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.Microsoft3DViewer*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.MicrosoftStickyNotes* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.MicrosoftStickyNotes*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.MixedReality.Portal* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.MixedReality.Portal*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.SkypeApp* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.SkypeApp*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.Windows.Photos* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.Windows.Photos*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.WindowsAlarms* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.WindowsAlarms*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.WindowsMaps* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.WindowsMaps*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.WindowsSoundRecorder* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.WindowsSoundRecorder*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.XboxApp* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.XboxApp*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.XboxGameOverlay* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.XboxGameOverlay*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.BingNews* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.BingNews*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.GamingApp* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.GamingApp*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.Getstarted* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.Getstarted*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.ScreenSketch* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.ScreenSketch*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.Todos* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.Todos*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.WindowsCamera* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.WindowsCamera*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.WindowsFeedbackHub* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.WindowsFeedbackHub*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.ZuneMusic* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.ZuneMusic*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.ZuneVideo* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.ZuneVideo*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.Office.OneNote* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.Office.OneNote*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.XboxSpeechToTextOverlay* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.XboxSpeechToTextOverlay*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.GetHelp* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.GetHelp*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.MicrosoftSolitaireCollection* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.MicrosoftSolitaireCollection*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.WindowsCalculator* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.WindowsCalculator*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.MicrosoftOfficeHub* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.MicrosoftOfficeHub*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.People* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.People*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.WindowsNotepad* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.WindowsNotepad*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.WindowsStore* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.WindowsStore*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Microsoft.StorePurchaseApp* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Microsoft.StorePurchaseApp*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *MicrosoftWindows.CrossDevice* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*MicrosoftWindows.CrossDevice*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

PowerShell -Command "Get-appxpackage -allusers *Clipchamp.Clipchamp* | Remove-AppxPackage"
TIMEOUT 5
PowerShell -Command "Get-appxprovisionedpackage -online | where-object {$_.packagename -like '*Clipchamp.Clipchamp*'} | remove-appxprovisionedpackage -online"
TIMEOUT 5

Pause

This has to be created in a .bat file. It removes everything. I am going to reinstall Windows 11 a little later and verify everything here along with other tweaks.

I am going to create a list of apps that are still present in the Start Menu after this is ran that I would like removed in another thread to get assistance to make this a little more complete.
 

My Computer My Computer

At a glance

WindowsIntel 8086kEVGA 3080 Ti FTW3 Ultra
OS
Windows
CPU
Intel 8086k
Motherboard
Asus z370-F
Graphics Card(s)
EVGA 3080 Ti FTW3 Ultra
Sound Card
ADI-2 DAC fs
I have a question regarding removal of apps as it relates to creating a sysprep image. I know that normally, when syspreping a reference system, one cannot simply uninstall Microsoft Store apps. Doing so causes sysprep to fail. But is it possible to remove Store apps prior to sysprep using ANY of these methods?
 

My Computers My Computers

  • At a glance

    Win11 Pro 25H2 (RTM+)Intel i7-14650HX32 GBNo GPU - Built-in Intel Graphics
    OS
    Win11 Pro 25H2 (RTM+)
    Computer type
    PC/Desktop
    Manufacturer/Model
    Acemagic
    CPU
    Intel i7-14650HX
    Memory
    32 GB
    Graphics Card(s)
    No GPU - Built-in Intel Graphics
    Sound Card
    Integrated
    Monitor(s) Displays
    Varies as machine will often be moved to locations with different monitors
    Screen Resolution
    Varies
    Hard Drives
    1 x 1TB Gen 4 NVMe SSD
    PSU
    120W Power Brick
    Keyboard
    Corsair K70 Max RGB Magnetic Keyboard
    Mouse
    Logitech MX Master 3
    Internet Speed
    1Gb Up / 1 Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
  • At a glance

    Win11 Pro 25H2 (RTM+)Intel i7-1255U16 GBIntel Iris Xe Graphics
    Operating System
    Win11 Pro 25H2 (RTM+)
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo ThinkBook 13x Gen 2
    CPU
    Intel i7-1255U
    Memory
    16 GB
    Graphics card(s)
    Intel Iris Xe Graphics
    Sound Card
    Realtek® ALC3306-CG codec
    Monitor(s) Displays
    13.3-inch IPS Display
    Screen Resolution
    WQXGA (2560 x 1600)
    Hard Drives
    2 TB 4 x 4 NVMe SSD
    PSU
    USB-C / Thunderbolt 4 Power / Charging
    Keyboard
    Backlit, spill resistant keyboard
    Mouse
    Buttonless Glass Precision Touchpad
    Internet Speed
    1Gb Up / 1Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    WiFi 6e / Bluetooth 5.1 / Facial Recognition / Fingerprint Sensor / ToF (Time of Flight) Human Presence Sensor
I have a question regarding removal of apps as it relates to creating a sysprep image. I know that normally, when syspreping a reference system, one cannot simply uninstall Microsoft Store apps. Doing so causes sysprep to fail. But is it possible to remove Store apps prior to sysprep using ANY of these methods?
Sure you can.

Remove-AppxPackage, then Remove-AppxProvisionedPackage like MS instructs you:
Sysprep fails after you remove or update Microsoft Store apps that include built-in Windows images

Or just avoid sysprep altogether and de-provision apps on a DISM-mounted image. UUP dump script's allows you to avoid (or restrict) Store apps by selectively not provisioning them into the just assembled image, so they don't even show up.
 

My Computer My Computer

At a glance

Windows 7
OS
Windows 7
Back
Top Bottom