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:
I used the following, but I'll try your suggestions in a second:

Powershell:
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.ZuneMusic" | Remove-AppxPackage -AllUsers

--Edit--
Running the first command it was still in the list after, but running the second one did remove it.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro β
    Computer type
    Laptop
    Manufacturer/Model
    HP Pavilion Laptop 15-eg0070wm
    CPU
    Intel® Core™ i7-1165G7
    Memory
    32 GB DDR4-3200 SDRAM
    Graphics Card(s)
    Intel® Iris® Xᵉ Graphics
    Screen Resolution
    1920x1080
    Hard Drives
    2TB PCIe® NVMe™ M.2 SSD
  • Operating System
    macOS Ventura
    Computer type
    PC/Desktop
    Manufacturer/Model
    Apple iMac 27" 5K (2017)
    CPU
    3.4 GHz Quad-Core Intel Core i5
    Memory
    40 GB 2400 MHz DDR4
    Graphics card(s)
    Radeon Pro 570 4 GB
    Monitor(s) Displays
    27" 5K, 34" UW
    Screen Resolution
    Mon 1: 5120 × 2880 Mon 2: 2560 x 1080
    Hard Drives
    32GB NVME, 1TB SSD
Good evening.
Can these apps not present in the list, but only in the start menu be removed only manually?
With the Powershel command it is not possible.
Some idea?
Thank you

Screenshot-001.png
 

My Computer

System One

  • OS
    W11
    Computer type
    PC/Desktop
    CPU
    CPU AMD Ryzen 9 7950X
    Motherboard
    ASUS ROG Strix X670E-F Gaming WiFi
    Memory
    G.Skill Flare X5 32GB Kit DDR5-6000 CL32 (F5-6000J3238F16GX2-FX5)
    Monitor(s) Displays
    LG E2381VR
    Screen Resolution
    1920x1080
    Hard Drives
    1x Samsung Memorie MZ-V8P1T0B 980 PRO SSD 1TB
    2x Western Digital WD Red Nas 4TB
    PSU
    SEASONIC FOCUS PX-850 Plus Platinum
    Case
    Corsair 4000D Airflow
    Cooling
    ARCTIC Liquid Freezer II 280 A-RGB
    Keyboard
    Logitech G510
    Mouse
    Logitech G502 HERO
    Browser
    Firefox
    Antivirus
    Avg free
    Other Info
    Download: 90 Mbps
    Upload: 20Mbps
I have about 20 apps I would like to remove AppxPackage and AppxProvisionedPackage using an array to help avoid any typos.

I found the following script that will be a big help to me. I am just wanting to make sure this script will work on Windows 11 Home.

THANKS!

(Proposed as answer by Kate Li Microsoft employee Saturday, February 27, 2016 9:26 AM)

$AppList = "Microsoft.SkypeApp",
"Microsoft.ZuneMusic",
"Microsoft.ZuneVideo",
"Microsoft.Office.OneNote",
"Microsoft.BingFinance",
"Microsoft.BingNews",
"Microsoft.BingWeather",
"Microsoft.BingSports",
"Microsoft.XboxApp",
"Microsoft.MicrosoftOfficeHub"
ForEach ($App in $AppList)
{
$PackageFullName = (Get-AppxPackage $App).PackageFullName
$ProPackageFullName = (Get-AppxProvisionedPackage -online | where {$_.Displayname -eq $App}).PackageName
write-host $PackageFullName
Write-Host $ProPackageFullName
if ($PackageFullName)
{
Write-Host "Removing Package: $App"
remove-AppxPackage -package $PackageFullName
}
else
{
Write-Host "Unable to find package: $App"
}
if ($ProPackageFullName)
{
Write-Host "Removing Provisioned Package: $ProPackageFullName"
Remove-AppxProvisionedPackage -online -packagename $ProPackageFullName
}
else
{
Write-Host "Unable to find provisioned package: $App"
}
}
 

My Computer

System One

  • OS
    Windows 11
@sweetpotato based on what's posted, that will work the way you want for the apps listed in $AppList and you'll just have to make sure you get the names correct if you want to add more.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro β
    Computer type
    Laptop
    Manufacturer/Model
    HP Pavilion Laptop 15-eg0070wm
    CPU
    Intel® Core™ i7-1165G7
    Memory
    32 GB DDR4-3200 SDRAM
    Graphics Card(s)
    Intel® Iris® Xᵉ Graphics
    Screen Resolution
    1920x1080
    Hard Drives
    2TB PCIe® NVMe™ M.2 SSD
  • Operating System
    macOS Ventura
    Computer type
    PC/Desktop
    Manufacturer/Model
    Apple iMac 27" 5K (2017)
    CPU
    3.4 GHz Quad-Core Intel Core i5
    Memory
    40 GB 2400 MHz DDR4
    Graphics card(s)
    Radeon Pro 570 4 GB
    Monitor(s) Displays
    27" 5K, 34" UW
    Screen Resolution
    Mon 1: 5120 × 2880 Mon 2: 2560 x 1080
    Hard Drives
    32GB NVME, 1TB SSD
I have a question about this...

When I do a clean install of Windows, in Start there are a lot of "placeholders" for lack of a better term. These are all the icons for third party apps like Spotify, TikTok, etc. I'm calling them placeholders because I don't know the correct term, but the gist is that there are icons for these apps but the app doesn't actually install until I click the icon for the app.

Is there a command line method that will allow me to uninstall those placeholders before they are even installed?
 

My Computers

System One System Two

  • 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
  • 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 about this...

When I do a clean install of Windows, in Start there are a lot of "placeholders" for lack of a better term. These are all the icons for third party apps like Spotify, TikTok, etc. I'm calling them placeholders because I don't know the correct term, but the gist is that there are icons for these apps but the app doesn't actually install until I click the icon for the app.

Is there a command line method that will allow me to uninstall those placeholders before they are even installed?

Hello,

These are suggested apps.

Unlike Windows 10 below, there's not a setting in Windows 11 to not show them on start. :(

 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    TerraMaster F8 SSD Plus NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Amazon Basics Wired Full Keyboard MD005
    Mouse
    Logitech MX Master 4
    Internet Speed
    2 Gbps Download and 100 Mbps Upload
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
Thanks so much. I didn't even know what they were called which makes searching for info difficult :-)
 

My Computers

System One System Two

  • 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
  • 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
Good morning.
This morning "Oulook For Windows" installed itself without my consent.
Since I plan to delete this app from the windows iso as well, I wanted to figure out what the exact powershell command was.
To uninstall I ran the command:
Code:
 Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name *Microsoft.OutlookForWindows* | Remove-AppxPackage -AllUsers

But this was unsuccessful.
Any suggestions?
Possibly there is a command to avoid installing unwanted apps?
Thanks
 

My Computer

System One

  • OS
    W11
    Computer type
    PC/Desktop
    CPU
    CPU AMD Ryzen 9 7950X
    Motherboard
    ASUS ROG Strix X670E-F Gaming WiFi
    Memory
    G.Skill Flare X5 32GB Kit DDR5-6000 CL32 (F5-6000J3238F16GX2-FX5)
    Monitor(s) Displays
    LG E2381VR
    Screen Resolution
    1920x1080
    Hard Drives
    1x Samsung Memorie MZ-V8P1T0B 980 PRO SSD 1TB
    2x Western Digital WD Red Nas 4TB
    PSU
    SEASONIC FOCUS PX-850 Plus Platinum
    Case
    Corsair 4000D Airflow
    Cooling
    ARCTIC Liquid Freezer II 280 A-RGB
    Keyboard
    Logitech G510
    Mouse
    Logitech G502 HERO
    Browser
    Firefox
    Antivirus
    Avg free
    Other Info
    Download: 90 Mbps
    Upload: 20Mbps
Shawn, thank you very much for the tutorial, but even after uninstalling provisioned apps for all users with option 7, I noticed there are still several folders containing files in C:\Program Files\WindowsApps, like Microsoft.BingWeather_... for Weather app. IIRC, the only way to completely remove provisioned apps, which means deleting these folders and preventing Windows for reinstalling them for new user accounts and, is by entering this command:

Get-AppxProvisionedPackage –online | where-object {$_.packagename –like "PackageName"} | Remove-AppxProvisionedPackage –online –Verbose

But if I am also not mistaken, this removes the app from the current image, which means I can't install them via Microsoft Store and the only way to reinstall them is by reinstalling Windows, right? I mean, I guess it's not recommended to this use this command at all? Can I delete these PackageName folders, or shall I leave them alone in case I want to reinstall the apps in the future?
 

My Computer

System One

  • OS
    Windows 11 Pro
    Computer type
    PC/Desktop
    CPU
    Ryzen 5 5600
    Motherboard
    Gigabyte B450 Aorus M
    Memory
    XPG Z1 2x8GB DDR4 3200MHz
    Graphics Card(s)
    MSI Ventus OC RTX 2060 12GB
    Sound Card
    Realtek ALC892
    Monitor(s) Displays
    Acer RG241Y
    Screen Resolution
    1920x1080
    Hard Drives
    XPG Gammix S41 512GB
    Seagate Barracuda ST2000DM008 2TB
    PSU
    XPG Pylon 650W 80 Plus Bronze
    Case
    Gamemax Fortress TG
    Cooling
    Deepcool Gammaxx 400 V2 Red // 5x Cooler Master Sicklefan red
    Keyboard
    Dell KB522
    Mouse
    Redragon Cobra
    Internet Speed
    300/150 Mbps
    Browser
    Microsoft Edge
    Antivirus
    Windows Defender
Shawn, thank you very much for the tutorial, but even after uninstalling provisioned apps for all users with option 7, I noticed there are still several folders containing files in C:\Program Files\WindowsApps, like Microsoft.BingWeather_... for Weather app. IIRC, the only way to completely remove provisioned apps, which means deleting these folders and preventing Windows for reinstalling them for new user accounts and, is by entering this command:

Get-AppxProvisionedPackage –online | where-object {$_.packagename –like "PackageName"} | Remove-AppxProvisionedPackage –online –Verbose

But if I am also not mistaken, this removes the app from the current image, which means I can't install them via Microsoft Store and the only way to reinstall them is by reinstalling Windows, right? I mean, I guess it's not recommended to this use this command at all? Can I delete these PackageName folders, or shall I leave them alone in case I want to reinstall the apps in the future?
That command would indeed uninstall the app to no longer be installed for "new users".

New users will still be able to install the app again from the Microsoft Store if wanted though.

 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    TerraMaster F8 SSD Plus NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Amazon Basics Wired Full Keyboard MD005
    Mouse
    Logitech MX Master 4
    Internet Speed
    2 Gbps Download and 100 Mbps Upload
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
Where can I find a complete list of the installed apps and do a copy/paste to remove? This would take me forever to type all these out or am i missing something?
 

My Computer

System One

  • OS
    Windows 11 Pro 25H2
    Computer type
    Laptop
    Manufacturer/Model
    Panasonic Toughbook FZ-55 MK-3
    CPU
    Intel Core i7-1370P vPro
    Motherboard
    Panasonic
    Memory
    32GB DDR4-3200Mhz
    Graphics Card(s)
    Intel Iris Xe Graphics
    Monitor(s) Displays
    ASUS
    Hard Drives
    1st Samsung SSD 990 PRO 2TB
    2nd Panasonic Opal 1Tb Quick Release
    Keyboard
    Logitech MX Keys
    Mouse
    LogiTech MX-3
    Browser
    Chrome
    Antivirus
    Malwarebytes
    Other Info
    Logitech BRIO Webcam
Where can I find a complete list of the installed apps and do a copy/paste to remove? This would take me forever to type all these out or am i missing something?
Do the first part of Step 2 under Option Four. It will create a complete list in text form on your Desktop...

6712.jpg
 

My Computers

System One System Two

  • OS
    Windows 11 Pro
    Computer type
    PC/Desktop
    Manufacturer/Model
    ASUS ROG Strix
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    ASUS VivoBook
These apps are like ghosts like trying to compress water:

i ran :

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

Checked apps output in powershell and it doesn't show anymore, yet photo app is still installed...

WHo knows if these commands even work!

I also don't understand - not all AppxPackages that appear in power shell are seen in InstalledApps in windows settings, even Zunemusic for example even common apps, i know like codecs or something doesn't show there...

This all is mega confusing!

For example sticky notes doesn't show in AppxPackages list in powershell, but it is installed nevertheless. IT is like where is what even!

You can see i don't have many left, before there were like 2 times more AppxPackages, but i have all this garbage still in InstalledApps, i will delete rest manually just hope there is not some garbage that doesn't even show in start menu or powershell - there probably is...

THere is this app that allows you to make custom Windows 11 iso like it was before with that wim Tweak, but it costs a lot like 60$ at least and it doesn't have description - only generic vague that are indecipherable and nothing even googles online! So it is useless because most things you cannot change anyways or you would mess something up and it is not explained what it does there so it kinda defeats point of paid program why would you buy that if it is not explained to user 90% of what it will do...
 

Attachments

  • installed apps.webp
    installed apps.webp
    29.9 KB · Views: 44
  • appxpackages.webp
    appxpackages.webp
    88.8 KB · Views: 59

My Computer

System One

  • OS
    Windows 11 Pro 22H2 22621.963
    Computer type
    PC/Desktop
    CPU
    I5 9600 Kf
    Motherboard
    ASUS Z390-i Gaming
    Memory
    G.Skill Trident Z 3200mhz 2x8GB
    Graphics Card(s)
    RTX 3070
    Monitor(s) Displays
    AOC G2590fx
    Screen Resolution
    1920x1080
    Hard Drives
    NVME:
    Adata XPG8200 Pro (1024GB)
    HDD:
    WDC WD40EZRZ-00GXCB0
    PSU
    Corsair RX650RM .2018
    Keyboard
    Cooler master Nova Touch PRO
    Mouse
    MX VERTICAL ADVANCED ERGONOMIC MOUSE
    Browser
    Chrome, Firefox
For example sticky notes doesn't show in AppxPackages list in powershell, but it is installed nevertheless.
It's actually just a shortcut that points to OneNote.

000018.webp
 

My Computers

System One System Two

  • OS
    Windows 11 Pro
    Computer type
    PC/Desktop
    Manufacturer/Model
    ASUS ROG Strix
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    ASUS VivoBook
Tutorial updated to add option eight to remove provisioned apps for new users. :alien:
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    TerraMaster F8 SSD Plus NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Amazon Basics Wired Full Keyboard MD005
    Mouse
    Logitech MX Master 4
    Internet Speed
    2 Gbps Download and 100 Mbps Upload
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
Tutorial updated to add option 4 to uninstall apps from the Microsoft Store library. :alien:
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    TerraMaster F8 SSD Plus NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Amazon Basics Wired Full Keyboard MD005
    Mouse
    Logitech MX Master 4
    Internet Speed
    2 Gbps Download and 100 Mbps Upload
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    CyberPower CP1500PFCLCD
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Surface Laptop 7 Copilot+ PC
    CPU
    Snapdragon X Elite (12 core) 3.42 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Monitor(s) Displays
    15" HDR
    Screen Resolution
    2496 x 1664
    Hard Drives
    1 TB SSD
    Internet Speed
    Wi-Fi 7 and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Microsoft Defender
Adding this one to Leader Board as well.
 

My Computers

System One System Two

  • OS
    Win 11 Home ♦♦♦26200.8457 ♦♦♦♦♦♦♦25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built by Ghot® [May 2020]
    CPU
    AMD Ryzen 7 3700X
    Motherboard
    Asus Pro WS X570-ACE (BIOS 5302)
    Memory
    G.Skill (F4-3200C14D-16GTZKW)
    Graphics Card(s)
    EVGA RTX 2070 (08G-P4-2171-KR)
    Sound Card
    Realtek ALC1220P / ALC S1220A
    Monitor(s) Displays
    Dell U3011 30"
    Screen Resolution
    2560 x 1600
    Hard Drives
    2x Samsung 860 EVO 500GB,
    WD 4TB Black FZBX - SATA III,
    WD 8TB Black FZBX - SATA III,
    DRW-24B1ST CD/DVD Burner
    PSU
    PC Power & Cooling 750W Quad EPS12V
    Case
    Cooler Master ATCS 840 Tower
    Cooling
    CM Hyper 212 EVO (push/pull)
    Keyboard
    Ducky DK9008 Shine II Blue LED
    Mouse
    Logitech Optical M-100
    Internet Speed
    300/300
    Browser
    Firefox (latest)
    Antivirus
    Bitdefender Total Security
    Other Info
    Speakers: Klipsch Pro Media 2.1
  • Operating System
    Windows XP Pro 32bit w/SP3
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built by Ghot® (not in use)
    CPU
    AMD Athlon 64 X2 5000+ (OC'd @ 3.2Ghz)
    Motherboard
    ASUS M2N32-SLI Deluxe Wireless Edition
    Memory
    TWIN2X2048-6400C4DHX (2 x 1GB, DDR2 800)
    Graphics card(s)
    EVGA 256-P2-N758-TR GeForce 8600GT SSC
    Sound Card
    Onboard
    Monitor(s) Displays
    ViewSonic G90FB Black 19" Professional (CRT)
    Screen Resolution
    up to 2048 x 1536
    Hard Drives
    WD 36GB 10,000rpm Raptor SATA
    Seagate 80GB 7200rpm SATA
    Lite-On LTR-52246S CD/RW
    Lite-On LH-18A1P CD/DVD Burner
    PSU
    PC Power & Cooling Silencer 750 Quad EPS12V
    Case
    Generic Beige case, 80mm fans
    Cooling
    ZALMAN 9500A 92mm CPU Cooler
    Keyboard
    Logitech Classic Keybooard 200
    Mouse
    Logitech Optical M-BT96a
    Internet Speed
    300/300
    Browser
    Firefox 3.x ??
    Antivirus
    Symantec (Norton)
    Other Info
    Still assembled, still runs. Haven't turned it on for 15 years?
Here is my commands:
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.BingSearch" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.WidgetsPlatformRuntime" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.ZuneMusic" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.XboxIdentityProvider" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.WebpImageExtension" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.WindowsAlarms" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.StorePurchaseApp" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.Todos" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.RawImageExtension" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.VP9VideoExtensions" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.PowerAutomateDesktop" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "MicrosoftWindows.CrossDevice" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "MicrosoftCorporationII.QuickAssist" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.YourPhone" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.XboxSpeechToTextOverlay" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.Xbox.TCUI" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.WindowsSoundRecorder" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.WindowsFeedbackHub" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.WindowsCamera" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.WindowsCalculator" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.Windows.DevHome" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.WebMediaExtensions" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.MPEG2VideoExtension" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.MicrosoftStickyNotes" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.MicrosoftSolitaireCollection" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.MicrosoftOfficeHub" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.HEVCVideoExtension" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.HEIFImageExtension" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.GetHelp" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.GamingApp" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.BingNews" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.AVCEncoderVideoExtension" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.AV1VideoExtension" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.ApplicationCompatibilityEnhancements" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Clipchamp.Clipchamp" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.ScreenSketch" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.WindowsStore" | Remove-AppxPackage
Get-AppxPackage -PackageTypeFilter Bundle -Name "MicrosoftWindows.Client.WebExperience" | Remove-AppxPackage

Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.BingSearch" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.WidgetsPlatformRuntime" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.ZuneMusic" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.XboxIdentityProvider" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.WebpImageExtension" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.WindowsAlarms" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.StorePurchaseApp" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.Todos" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.RawImageExtension" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.VP9VideoExtensions" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.PowerAutomateDesktop" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "MicrosoftWindows.CrossDevice" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "MicrosoftCorporationII.QuickAssist" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.YourPhone" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.XboxSpeechToTextOverlay" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.Xbox.TCUI" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.WindowsSoundRecorder" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.WindowsFeedbackHub" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.WindowsCamera" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.WindowsCalculator" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.Windows.DevHome" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.WebMediaExtensions" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.MPEG2VideoExtension" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.MicrosoftStickyNotes" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.MicrosoftSolitaireCollection" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.MicrosoftOfficeHub" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.HEVCVideoExtension" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.HEIFImageExtension" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.GetHelp" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.GamingApp" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.BingNews" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.AVCEncoderVideoExtension" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.AV1VideoExtension" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.ApplicationCompatibilityEnhancements" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Clipchamp.Clipchamp" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.ScreenSketch" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.WindowsStore" | Remove-AppxPackage -AllUsers
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "MicrosoftWindows.Client.WebExperience" | Remove-AppxPackage -AllUsers

Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.BingSearch*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WidgetsPlatformRuntime*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.ZuneMusic*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.XboxIdentityProvider*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WebpImageExtension*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WindowsAlarms*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.StorePurchaseApp*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.Todos*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.RawImageExtension*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.VP9VideoExtensions*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.PowerAutomateDesktop*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*MicrosoftWindows.CrossDevice*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*MicrosoftCorporationII.QuickAssist*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.YourPhone*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.XboxSpeechToTextOverlay*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.Xbox.TCUI*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WindowsSoundRecorder*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WindowsFeedbackHub*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WindowsCamera*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WindowsCalculator*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.Windows.DevHome*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WebMediaExtensions*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.MPEG2VideoExtension*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.MicrosoftStickyNotes*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.MicrosoftSolitaireCollection*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.MicrosoftOfficeHub*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.HEVCVideoExtension*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.HEIFImageExtension*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.GetHelp*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.GamingApp*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.BingNews*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.AVCEncoderVideoExtension*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.AV1VideoExtension*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.ApplicationCompatibilityEnhancements*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Clipchamp.Clipchamp*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.ScreenSketch*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WindowsStore*'} | remove-appxprovisionedpackage –online
Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*MicrosoftWindows.Client.WebExperience*'} | remove-appxprovisionedpackage –online

Read-Host -Prompt "Press Enter to exit"

I want to make this into a .bat file. How do I do this?
I recently lost everything and am starting all over. I cannot get this to work. A window opens quickly and then immediately disappears.
 

My Computer

System One

  • OS
    Windows
    CPU
    Intel 8086k
    Motherboard
    Asus z370-F
    Graphics Card(s)
    EVGA 3080 Ti FTW3 Ultra
    Sound Card
    ADI-2 DAC fs
I want to make this into a .bat file. How do I do this?
I've sketched you a small skeleton here in the form of a bat file. There are two files in the archive: one executable, the second with a list of deleted applications, which can be easily edited in a text editor. In this case, only for AllUsers. I hope it won't be difficult for you to change for yourself.

1.webp

2.webp
 

Attachments

My Computer

System One

  • 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
Thank you so much for this helpful tutorial :-) I may now try uninstalling some of the provisioned apps. However I have never really understood or felt comfortable using powershell and am more familiar with cmd. Is there a way of doing it in the command terminal please?

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

I still consider these to be "programs" :-) Anything that's not a desktop program is an app in my book. And desktop programs aren't apps - but maybe I'm just being pedantic 😂
 

My Computers

System One System Two

  • OS
    Windows 11 Home 25H2
    Computer type
    Laptop
    Manufacturer/Model
    HP Pavilion 14-ce3606sa
    CPU
    Core i5-1035G1
    Memory
    32gb
    Hard Drives
    Samsung 870 evo sata ssd
    Cooling
    Could be better
    Internet Speed
    50 mbps Starlink
    Browser
    Firefox
    Other Info
    Originally came installed with a 500gb H10 Optane ssd
  • Operating System
    Windows 11 Home
    Computer type
    Laptop
    Manufacturer/Model
    HP Pavilion ce3606sa
    CPU
    Intel Core i5-1035G1
    Memory
    16gb
    Hard Drives
    Hynix Gold P31 2TB
    Internet Speed
    200mbps Starlink
    Browser
    Firefox
    Antivirus
    Defender

Latest Support Threads

Back
Top Bottom