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:
Hi,
Nice one :cool:
 

My Computer My Computer

At a glance

Win-7-10-11Pro's10900k & 9940x & 5930kTrident-Z Royal 4000c16 2x16gb & Trident-Z 36...Titan Xp & 1080ti FTW3 & evga 980ti gaming
OS
Win-7-10-11Pro's
Computer type
PC/Desktop
Manufacturer/Model
Acer 17" Nitro 7840sn/ 2x16gb 5600c40/ 4060/ stock 1tb-os/ 4tb sn850x
CPU
10900k & 9940x & 5930k
Motherboard
z490-Apex & x299-Apex & x99-Sabertooth
Memory
Trident-Z Royal 4000c16 2x16gb & Trident-Z 3600c16 4x8gb & 3200c14 4x8gb
Graphics Card(s)
Titan Xp & 1080ti FTW3 & evga 980ti gaming
Sound Card
Onboard Realtek x3
Monitor(s) Displays
1-AOC G2460PG 24"G-Sync 144Hz/ 2nd 1-ASUS VG248QE 24"/ 3rd LG 43" series
Screen Resolution
1920-1080 not sure what the t.v is besides 43" class scales from 1920-1080 perfectly
Hard Drives
2-WD-sn850x 4tb/ 970evo+500gb/ 980 pro 2tb.
PSU
1000p2 & 1200p2 & 850p2
Case
D450 x2 & 1 Test bench in cherry Entertainment center
Cooling
Custom water loops x3 with 2x mora 360mm rads only 980ti gaming air cooled
Keyboard
G710+x3
Mouse
Redragon x3
Internet Speed
xfinity gigabyte
Browser
Firefox
Antivirus
mbam pro
Hi,
Get started is being difficult lol
 

My Computer My Computer

At a glance

Win-7-10-11Pro's10900k & 9940x & 5930kTrident-Z Royal 4000c16 2x16gb & Trident-Z 36...Titan Xp & 1080ti FTW3 & evga 980ti gaming
OS
Win-7-10-11Pro's
Computer type
PC/Desktop
Manufacturer/Model
Acer 17" Nitro 7840sn/ 2x16gb 5600c40/ 4060/ stock 1tb-os/ 4tb sn850x
CPU
10900k & 9940x & 5930k
Motherboard
z490-Apex & x299-Apex & x99-Sabertooth
Memory
Trident-Z Royal 4000c16 2x16gb & Trident-Z 3600c16 4x8gb & 3200c14 4x8gb
Graphics Card(s)
Titan Xp & 1080ti FTW3 & evga 980ti gaming
Sound Card
Onboard Realtek x3
Monitor(s) Displays
1-AOC G2460PG 24"G-Sync 144Hz/ 2nd 1-ASUS VG248QE 24"/ 3rd LG 43" series
Screen Resolution
1920-1080 not sure what the t.v is besides 43" class scales from 1920-1080 perfectly
Hard Drives
2-WD-sn850x 4tb/ 970evo+500gb/ 980 pro 2tb.
PSU
1000p2 & 1200p2 & 850p2
Case
D450 x2 & 1 Test bench in cherry Entertainment center
Cooling
Custom water loops x3 with 2x mora 360mm rads only 980ti gaming air cooled
Keyboard
G710+x3
Mouse
Redragon x3
Internet Speed
xfinity gigabyte
Browser
Firefox
Antivirus
mbam pro
Here's an entire list I created a while back. Just copy and paste into PowerShell and hit enter, and it'll do the rest for you


Get-AppxPackage *3dbuilder* | Remove-AppxPackage
Get-AppxPackage *windowsalarms* | Remove-AppxPackage
Get-AppxPackage *windowscalculator* | Remove-AppxPackage
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
Get-AppxPackage *windowscamera* | Remove-AppxPackage
Get-AppxPackage *officehub* | Remove-AppxPackage
Get-AppxPackage *skypeapp* | Remove-AppxPackage
Get-AppxPackage *getstarted* | Remove-AppxPackage
Get-AppxPackage *zunemusic* | Remove-AppxPackage
get-appxpackage *help* | remove-appxpackage
Get-AppxPackage *windowsmaps* | Remove-AppxPackage
Get-AppxPackage *solitairecollection* | Remove-AppxPackage
Get-AppxPackage *bingfinance* | Remove-AppxPackage
Get-AppxPackage *zunevideo* | Remove-AppxPackage
Get-AppxPackage *bingnews* | Remove-AppxPackage
Get-AppxPackage *onenote* | Remove-AppxPackage
Get-AppxPackage *people* | Remove-AppxPackage
Get-AppxPackage *windowsphone* | Remove-AppxPackage
Get-AppxPackage *photos* | Remove-AppxPackage
Get-AppxPackage *bingsports* | Remove-AppxPackage
Get-AppxPackage *soundrecorder* | Remove-AppxPackage
Get-AppxPackage *bingweather* | Remove-AppxPackage
Get-AppxPackage *xboxapp* | Remove-AppxPackage
get-appxpackage *Microsoft.WindowsAlarms* | remove-appxpackage
get-appxpackage *Microsoft.WindowsCamera* | remove-appxpackage
get-appxpackage *camera* | remove-appxpackage
get-appxpackage *feedback* | remove-appxpackage
get-appxpackage *getstarted* | remove-appxpackage
get-appxpackage *zunemusic* | remove-appxpackage
get-appxpackage *maps* | remove-appxpackage
get-appxpackage *messaging* | remove-appxpackage
get-appxpackage *people* | remove-appxpackage
get-appxpackage *commsphone* | remove-appxpackage
get-appxpackage *windowsphone* | remove-appxpackage
Get-AppxPackage Microsoft.YourPhone -AllUsers | Remove-AppxPackage
Get-AppxPackage *Xbox* | Remove-AppxPackage
Get-AppxPackage *Microsoft.GetHelp* -AllUsers | Remove-AppxPackage
Get-AppxPackage *Microsoft.WebpImageExtension_1.0.12821.0_x64__8wekyb3d8bbwe
Get-AppxPackage *Microsoft.HEIFImageExtension_1.0.13472.0_x64__8wekyb3d8bbwe | Remove-AppxPackage
Get-AppxPackage *Microsoft.WebpImageExtension* -AllUsers | Remove-AppxPackage
 

My Computers My Computers

  • At a glance

    Windows 11 Pro x64 24H2 v26200.5074AMD Ryzen 9 3600X 12-Core @ 3.80GHzCorsair 32GB DDR4EVGA GeForce gtx 1660 Super
    OS
    Windows 11 Pro x64 24H2 v26200.5074
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built Myself in 2025
    CPU
    AMD Ryzen 9 3600X 12-Core @ 3.80GHz
    Motherboard
    MSI X570 Gaming Plus
    Memory
    Corsair 32GB DDR4
    Graphics Card(s)
    EVGA GeForce gtx 1660 Super
    Sound Card
    On Board
    Monitor(s) Displays
    2 X AOC 27" , Dell 27"
    Screen Resolution
    1920 X 1080
    Hard Drives
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~ P34A60 512GB NVMe PCIe Gen3x4 M.2
    ~ 6TB Toshiba HDD
    ~ 6TB HDD (Backup)
    ~ SanDisk 250GB SSD
    ~ 2 X 1TB HDD
    ~~~~~~~~~~
    PSU
    eVGA 750w G+
    Case
    GAMDIAS White ATX Mid Tower Gaming Computer PC Case w/Tempered Glass
    Cooling
    AMD Wraith Prism
    Keyboard
    Nulea RT05 Wireless Ergonomic
    Mouse
    Nulea MD280 Wireless Vertical Mouse
    Internet Speed
    761Mbps (Download) / 692Mbps (Upload)
    Browser
    Firefox
    Antivirus
    Malwarebytes
    Other Info
    *This is my Main Computer That I use*
  • At a glance

    Windows 11 Pro x64 24H2 v26100.2894AMD Ryzen 7 1800X @ 3.60Ghz16GBAMD RX580
    Operating System
    Windows 11 Pro x64 24H2 v26100.2894
    Computer type
    PC/Desktop
    CPU
    AMD Ryzen 7 1800X @ 3.60Ghz
    Motherboard
    Asus Crosshair VI Hero
    Memory
    16GB
    Graphics card(s)
    AMD RX580
    Sound Card
    onBoard
    Monitor(s) Displays
    LG 27UK650-W 27", eMachine 22"
    Screen Resolution
    1920 X 1080
    Hard Drives
    250GB SSD
    PSU
    CORSAIR RM850
    Case
    GAMDIAS Black ATX Mid Tower Gaming Computer PC Case w/Tempered Glass
    Cooling
    Liquid
    Keyboard
    Nulea RT05 Wireless Ergonomic
    Mouse
    Nulea MD280 Wireless Vertical Mouse
    Internet Speed
    752Mbps (Download) / 537Mbps (Upload)
    Browser
    Firefox
    Antivirus
    Malwarebytes
    Other Info
    I use this computer for photo/video editing and to track severe weather

My Computer My Computer

At a glance

Windows 102,40 gigahertz Intel 11th Gen Core i5-1135G78 GbIntel(R) Iris(R) Xe Graphics
OS
Windows 10
Computer type
Laptop
Manufacturer/Model
LENOVO 20TD0028MB ThinkPad E15 Gen 2
CPU
2,40 gigahertz Intel 11th Gen Core i5-1135G7
Memory
8 Gb
Graphics Card(s)
Intel(R) Iris(R) Xe Graphics
Monitor(s) Displays
Samsung LF24T450F
Screen Resolution
1920x1080
Internet Speed
76 Mbps
Browser
Edge
Antivirus
Adaware
Maybe it makes sense to discard packages that 'NonRemovable'?

Get-AppxPackage -AllUsers | Where-Object {$_.NonRemovable -eq $False} | Sort Name | Format-Table PackageFullName, Status >"$env:TEMP\Apps_List.txt"
 

My Computer My Computer

At a glance

Microsoft Windows 11 HomeIntel Core i5-13490F2 x 16 Patriot Memory (PDP Systems) PSD516G56...GIGABYTE GeForce RTX 4070 WINDFORCE OC 12G (G...
OS
Microsoft Windows 11 Home
Computer type
PC/Desktop
Manufacturer/Model
MSI MS-7D98
CPU
Intel Core i5-13490F
Motherboard
MSI B760 GAMING PLUS WIFI
Memory
2 x 16 Patriot Memory (PDP Systems) PSD516G560081 6400MT (32-37-37-74); 1.35V)
Graphics Card(s)
GIGABYTE GeForce RTX 4070 WINDFORCE OC 12G (GV-N4070WF3OC-12GD)
Sound Card
Bluetooth Аудио
Monitor(s) Displays
INNOCN 15K1F
Screen Resolution
1920 x 1080
Hard Drives
WD_BLACK SN770 250GB
KINGSTON SNV2S1000G (ELFK0S.6)
PSU
Thermaltake Toughpower GF3 1000W
Case
CG560 - DeepCool
Cooling
ID-COOLING SE-224-XTS / 2 x 140Mm Fan - rear and top; 3 x 120Mm - front
Keyboard
Corsair K70 RGB TKL
Mouse
Corsair KATAR PRO XT
Internet Speed
100 Mbps
Browser
Firefox
Antivirus
Microsoft Defender Antivirus
Other Info
https://www.userbenchmark.com/UserRun/66553205

My Computers My Computers

  • At a glance

    Windows 11 Pro x64 24H2 v26200.5074AMD Ryzen 9 3600X 12-Core @ 3.80GHzCorsair 32GB DDR4EVGA GeForce gtx 1660 Super
    OS
    Windows 11 Pro x64 24H2 v26200.5074
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built Myself in 2025
    CPU
    AMD Ryzen 9 3600X 12-Core @ 3.80GHz
    Motherboard
    MSI X570 Gaming Plus
    Memory
    Corsair 32GB DDR4
    Graphics Card(s)
    EVGA GeForce gtx 1660 Super
    Sound Card
    On Board
    Monitor(s) Displays
    2 X AOC 27" , Dell 27"
    Screen Resolution
    1920 X 1080
    Hard Drives
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~ P34A60 512GB NVMe PCIe Gen3x4 M.2
    ~ 6TB Toshiba HDD
    ~ 6TB HDD (Backup)
    ~ SanDisk 250GB SSD
    ~ 2 X 1TB HDD
    ~~~~~~~~~~
    PSU
    eVGA 750w G+
    Case
    GAMDIAS White ATX Mid Tower Gaming Computer PC Case w/Tempered Glass
    Cooling
    AMD Wraith Prism
    Keyboard
    Nulea RT05 Wireless Ergonomic
    Mouse
    Nulea MD280 Wireless Vertical Mouse
    Internet Speed
    761Mbps (Download) / 692Mbps (Upload)
    Browser
    Firefox
    Antivirus
    Malwarebytes
    Other Info
    *This is my Main Computer That I use*
  • At a glance

    Windows 11 Pro x64 24H2 v26100.2894AMD Ryzen 7 1800X @ 3.60Ghz16GBAMD RX580
    Operating System
    Windows 11 Pro x64 24H2 v26100.2894
    Computer type
    PC/Desktop
    CPU
    AMD Ryzen 7 1800X @ 3.60Ghz
    Motherboard
    Asus Crosshair VI Hero
    Memory
    16GB
    Graphics card(s)
    AMD RX580
    Sound Card
    onBoard
    Monitor(s) Displays
    LG 27UK650-W 27", eMachine 22"
    Screen Resolution
    1920 X 1080
    Hard Drives
    250GB SSD
    PSU
    CORSAIR RM850
    Case
    GAMDIAS Black ATX Mid Tower Gaming Computer PC Case w/Tempered Glass
    Cooling
    Liquid
    Keyboard
    Nulea RT05 Wireless Ergonomic
    Mouse
    Nulea MD280 Wireless Vertical Mouse
    Internet Speed
    752Mbps (Download) / 537Mbps (Upload)
    Browser
    Firefox
    Antivirus
    Malwarebytes
    Other Info
    I use this computer for photo/video editing and to track severe weather
@Brink

Awesome tutorial. ^^
 

My Computers My Computers

  • At a glance

    Win 11 Home ♦♦♦26200.8737 ♦♦♦♦♦♦♦25H2AMD Ryzen 7 3700XG.Skill (F4-3200C14D-16GTZKW)EVGA RTX 2070 (08G-P4-2171-KR)
    OS
    Win 11 Home ♦♦♦26200.8737 ♦♦♦♦♦♦♦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
  • At a glance

    Windows XP Pro 32bit w/SP3AMD Athlon 64 X2 5000+ (OC'd @ 3.2Ghz)TWIN2X2048-6400C4DHX (2 x 1GB, DDR2 800)EVGA 256-P2-N758-TR GeForce 8600GT SSC
    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?
using PowerShell is quicker
I agree, but does it clean everything from the system? Usually standard installers leave (a lot of) crap...
 

My Computer My Computer

At a glance

Windows 102,40 gigahertz Intel 11th Gen Core i5-1135G78 GbIntel(R) Iris(R) Xe Graphics
OS
Windows 10
Computer type
Laptop
Manufacturer/Model
LENOVO 20TD0028MB ThinkPad E15 Gen 2
CPU
2,40 gigahertz Intel 11th Gen Core i5-1135G7
Memory
8 Gb
Graphics Card(s)
Intel(R) Iris(R) Xe Graphics
Monitor(s) Displays
Samsung LF24T450F
Screen Resolution
1920x1080
Internet Speed
76 Mbps
Browser
Edge
Antivirus
Adaware
I agree, but does it clean everything from the system? Usually standard installers leave (a lot of) crap...
That's true. . Also, does Revo uninstall the registry entries as well?
 

My Computers My Computers

  • At a glance

    Windows 11 Pro x64 24H2 v26200.5074AMD Ryzen 9 3600X 12-Core @ 3.80GHzCorsair 32GB DDR4EVGA GeForce gtx 1660 Super
    OS
    Windows 11 Pro x64 24H2 v26200.5074
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built Myself in 2025
    CPU
    AMD Ryzen 9 3600X 12-Core @ 3.80GHz
    Motherboard
    MSI X570 Gaming Plus
    Memory
    Corsair 32GB DDR4
    Graphics Card(s)
    EVGA GeForce gtx 1660 Super
    Sound Card
    On Board
    Monitor(s) Displays
    2 X AOC 27" , Dell 27"
    Screen Resolution
    1920 X 1080
    Hard Drives
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~ P34A60 512GB NVMe PCIe Gen3x4 M.2
    ~ 6TB Toshiba HDD
    ~ 6TB HDD (Backup)
    ~ SanDisk 250GB SSD
    ~ 2 X 1TB HDD
    ~~~~~~~~~~
    PSU
    eVGA 750w G+
    Case
    GAMDIAS White ATX Mid Tower Gaming Computer PC Case w/Tempered Glass
    Cooling
    AMD Wraith Prism
    Keyboard
    Nulea RT05 Wireless Ergonomic
    Mouse
    Nulea MD280 Wireless Vertical Mouse
    Internet Speed
    761Mbps (Download) / 692Mbps (Upload)
    Browser
    Firefox
    Antivirus
    Malwarebytes
    Other Info
    *This is my Main Computer That I use*
  • At a glance

    Windows 11 Pro x64 24H2 v26100.2894AMD Ryzen 7 1800X @ 3.60Ghz16GBAMD RX580
    Operating System
    Windows 11 Pro x64 24H2 v26100.2894
    Computer type
    PC/Desktop
    CPU
    AMD Ryzen 7 1800X @ 3.60Ghz
    Motherboard
    Asus Crosshair VI Hero
    Memory
    16GB
    Graphics card(s)
    AMD RX580
    Sound Card
    onBoard
    Monitor(s) Displays
    LG 27UK650-W 27", eMachine 22"
    Screen Resolution
    1920 X 1080
    Hard Drives
    250GB SSD
    PSU
    CORSAIR RM850
    Case
    GAMDIAS Black ATX Mid Tower Gaming Computer PC Case w/Tempered Glass
    Cooling
    Liquid
    Keyboard
    Nulea RT05 Wireless Ergonomic
    Mouse
    Nulea MD280 Wireless Vertical Mouse
    Internet Speed
    752Mbps (Download) / 537Mbps (Upload)
    Browser
    Firefox
    Antivirus
    Malwarebytes
    Other Info
    I use this computer for photo/video editing and to track severe weather
That's true. . Also, does Revo uninstall the registry entries as well?
Yes, Rev does uninstall registry entries as part of its uninstaller process
Capture.JPG
 

My Computers My Computers

  • At a glance

    Windows 11 Pro 25H2Intel S1200 Core i3 1010532.0 GBMSI GT710 2GB PCIe Video Card
    OS
    Windows 11 Pro 25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Home built
    CPU
    Intel S1200 Core i3 10105
    Motherboard
    Gigabyte S1200 MicroATX B560M DS3H DDR4
    Memory
    32.0 GB
    Graphics Card(s)
    MSI GT710 2GB PCIe Video Card
    Sound Card
    Realtek® Audio CODEC
    Monitor(s) Displays
    Dual Acer 24in
    Screen Resolution
    1920 x 1080
    Hard Drives
    500GB Crucial P1 M.2 PCIe SSD
    PSU
    500W
    Case
    Thermaltake ATX Versa H21 Case
    Cooling
    Internal fans by (3)
    Keyboard
    Microsoft Wireless Keyboard 850
    Mouse
    Microsoft Wireless mouse
    Internet Speed
    50Mbps / 20Mbps
    Browser
    Chrome
    Antivirus
    Defender, Malwarebyte
  • At a glance

    Windows 11 Pro 25H2Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz12.0 GBIntegrated Video Card
    Operating System
    Windows 11 Pro 25H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Home built Test-PC
    CPU
    Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz
    Motherboard
    ASUS S1150 MicroATX B85M-E
    Memory
    12.0 GB
    Graphics card(s)
    Integrated Video Card
    Sound Card
    Integrated Sound Card
    Monitor(s) Displays
    Chimei 22"
    Screen Resolution
    1680 x 1050
    Hard Drives
    120GB WD 2.5" Green SATA 6Gb/s SSD
    1TB WD 3.5" 7200rpm SATA 6Gb/s Caviar Blue
    PSU
    400W
    Case
    Cougar MicroATX MG100 Case Black
    Cooling
    Deepcool 120mm Case Fan
    Keyboard
    Logitech Wireless keyboard
    Mouse
    Logitech Wireless mouse
    Internet Speed
    50Mbps / 20Mbps
    Browser
    Chrome
    Antivirus
    Defender
    Other Info
    Only running Win 11 on this PC for test purposes
Good morning.
Can I ask how to correctly enter the powershell command to see the list of all apps in Bat file?
I have tried this synopsis in administrative mode, but it doesn't work.
Thank you

Code:
@echo off
cls
powershell "Get-AppxPackage | Where-Object {$_.NonRemovable -eq $False} | Select Name, PackageFullName" > NUL 2>&1
pause
exit
 

My Computer My Computer

At a glance

W11CPU AMD Ryzen 9 7950XG.Skill Flare X5 32GB Kit DDR5-6000 CL32 (F5-...
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
Good morning.
Can I ask how to correctly enter the powershell command to see the list of all apps in Bat file?
I have tried this synopsis in administrative mode, but it doesn't work.
Thank you

Code:
@echo off
cls
powershell "Get-AppxPackage | Where-Object {$_.NonRemovable -eq $False} | Select Name, PackageFullName" > NUL 2>&1
pause
exit

Hello DMD, :-)

You can use the command below in a BAT file for this.

(List all apps for current user)
cmd /s /k PowerShell.exe "Get-AppxPackage | Select Name, PackageFullName"

(Only list all apps that can be uninstalled for current user)
cmd /s /k PowerShell.exe "Get-AppxPackage | Where-Object {$_.NonRemovable -eq $False} | Select Name, PackageFullName"
 
Last edited:

My Computers My Computers

  • At a glance

    Windows 11 Pro for WorkstationsIntel i7-8700K 5 GHz64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600...ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GD...
    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
  • At a glance

    Windows 11 ProSnapdragon X Elite (12 core) 3.42 GHz16 GB LPDDR5x-7467 MHz
    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 it works :)

Screenshot-004.png



Why does it return this list to me with the powershell command?
Thank you

Screenshot-005.png
 

My Computer My Computer

At a glance

W11CPU AMD Ryzen 9 7950XG.Skill Flare X5 32GB Kit DDR5-6000 CL32 (F5-...
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
@DMD,

I've updated my post above to help.

The first command will list all apps.

The second command (one in the tutorial) only lists all apps that can be uninstalled.
 

My Computers My Computers

  • At a glance

    Windows 11 Pro for WorkstationsIntel i7-8700K 5 GHz64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600...ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GD...
    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
  • At a glance

    Windows 11 ProSnapdragon X Elite (12 core) 3.42 GHz16 GB LPDDR5x-7467 MHz
    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
Thank you very much

Screenshot-006.png
 

My Computer My Computer

At a glance

W11CPU AMD Ryzen 9 7950XG.Skill Flare X5 32GB Kit DDR5-6000 CL32 (F5-...
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
How good/bad would it be to remove the following... does removing any of these cause any known issues.

Code:
Microsoft.BingNews                          Microsoft.BingNews_4.7.28001.0_neutral_~_8wekyb3d8bbwe
Microsoft.BingWeather                       Microsoft.BingWeather_4.53.33420.0_neutral_~_8wekyb3d8bbwe
Microsoft.BingWeather                       Microsoft.BingWeather_4.9.2002.0_neutral_~_8wekyb3d8bbwe
Microsoft.GamingApp                         Microsoft.GamingApp_2021.427.138.0_neutral_~_8wekyb3d8bbwe
Microsoft.Microsoft3DViewer                 Microsoft.Microsoft3DViewer_7.2006.12082.0_neutral_~_8wekyb3d8bbwe
Microsoft.Microsoft3DViewer                 Microsoft.Microsoft3DViewer_2021.2107.7012.0_neutral_~_8wekyb3d8bbwe
Microsoft.MicrosoftSolitaireCollection      Microsoft.MicrosoftSolitaireCollection_4.12.3171.0_neutral_~_8wekyb3d8bbwe
Microsoft.MicrosoftStickyNotes              Microsoft.MicrosoftStickyNotes_4.5.0.0_neutral_~_8wekyb3d8bbwe
Microsoft.MixedReality.Portal               Microsoft.MixedReality.Portal_2000.19081.1301.0_neutral_~_8wekyb3d8bbwe
Microsoft.MixedReality.Portal               Microsoft.MixedReality.Portal_2000.21051.1282.0_neutral_~_8wekyb3d8bbwe
Microsoft.SkypeApp                          Microsoft.SkypeApp_14.53.77.0_neutral_~_kzf8qxf38zg5c
Microsoft.SkypeApp                          Microsoft.SkypeApp_15.82.404.0_neutral_~_kzf8qxf38zg5c
Microsoft.Todos                             Microsoft.Todos_2.67.5901.0_neutral_~_8wekyb3d8bbwe
Microsoft.Wallet                            Microsoft.Wallet_2.4.18324.0_neutral_~_8wekyb3d8bbwe
Microsoft.Xbox.TCUI                         Microsoft.Xbox.TCUI_2022.319.941.0_neutral_~_8wekyb3d8bbwe
Microsoft.Xbox.TCUI                         Microsoft.Xbox.TCUI_1.23.28002.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxApp                           Microsoft.XboxApp_48.86.28002.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxApp                           Microsoft.XboxApp_48.49.31001.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxGameOverlay                   Microsoft.XboxGameOverlay_1.46.11001.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxGameOverlay                   Microsoft.XboxGameOverlay_1.54.4001.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxGamingOverlay                 Microsoft.XboxGamingOverlay_2.50.24002.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxGamingOverlay                 Microsoft.XboxGamingOverlay_5.721.12013.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxIdentityProvider              Microsoft.XboxIdentityProvider_12.85.31001.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxIdentityProvider              Microsoft.XboxIdentityProvider_12.50.6001.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxSpeechToTextOverlay           Microsoft.XboxSpeechToTextOverlay_1.21.13002.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxSpeechToTextOverlay           Microsoft.XboxSpeechToTextOverlay_1.17.29001.0_neutral_~_8wekyb3d8bbwe
Microsoft.YourPhone                         Microsoft.YourPhone_1.22022.147.0_neutral_~_8wekyb3d8bbwe
Microsoft.YourPhone                         Microsoft.YourPhone_1.22022.180.0_neutral_~_8wekyb3d8bbwe
Microsoft.ZuneMusic                         Microsoft.ZuneMusic_11.2202.45.0_neutral_~_8wekyb3d8bbwe
Microsoft.ZuneMusic                         Microsoft.ZuneMusic_2019.21012.10511.0_neutral_~_8wekyb3d8bbwe
Microsoft.ZuneVideo                         Microsoft.ZuneVideo_2019.22021.10291.0_neutral_~_8wekyb3d8bbwe
 

My Computers My Computers

  • At a glance

    Windows 11 Pro βIntel® Core™ i7-1165G732 GB DDR4-3200 SDRAMIntel® Iris® Xᵉ Graphics
    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
  • At a glance

    macOS Ventura3.4 GHz Quad-Core Intel Core i540 GB 2400 MHz DDR4Radeon Pro 570 4 GB
    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
How good/bad would it be to remove the following... does removing any of these cause any known issues.

Code:
Microsoft.BingNews                          Microsoft.BingNews_4.7.28001.0_neutral_~_8wekyb3d8bbwe
Microsoft.BingWeather                       Microsoft.BingWeather_4.53.33420.0_neutral_~_8wekyb3d8bbwe
Microsoft.BingWeather                       Microsoft.BingWeather_4.9.2002.0_neutral_~_8wekyb3d8bbwe
Microsoft.GamingApp                         Microsoft.GamingApp_2021.427.138.0_neutral_~_8wekyb3d8bbwe
Microsoft.Microsoft3DViewer                 Microsoft.Microsoft3DViewer_7.2006.12082.0_neutral_~_8wekyb3d8bbwe
Microsoft.Microsoft3DViewer                 Microsoft.Microsoft3DViewer_2021.2107.7012.0_neutral_~_8wekyb3d8bbwe
Microsoft.MicrosoftSolitaireCollection      Microsoft.MicrosoftSolitaireCollection_4.12.3171.0_neutral_~_8wekyb3d8bbwe
Microsoft.MicrosoftStickyNotes              Microsoft.MicrosoftStickyNotes_4.5.0.0_neutral_~_8wekyb3d8bbwe
Microsoft.MixedReality.Portal               Microsoft.MixedReality.Portal_2000.19081.1301.0_neutral_~_8wekyb3d8bbwe
Microsoft.MixedReality.Portal               Microsoft.MixedReality.Portal_2000.21051.1282.0_neutral_~_8wekyb3d8bbwe
Microsoft.SkypeApp                          Microsoft.SkypeApp_14.53.77.0_neutral_~_kzf8qxf38zg5c
Microsoft.SkypeApp                          Microsoft.SkypeApp_15.82.404.0_neutral_~_kzf8qxf38zg5c
Microsoft.Todos                             Microsoft.Todos_2.67.5901.0_neutral_~_8wekyb3d8bbwe
Microsoft.Wallet                            Microsoft.Wallet_2.4.18324.0_neutral_~_8wekyb3d8bbwe
Microsoft.Xbox.TCUI                         Microsoft.Xbox.TCUI_2022.319.941.0_neutral_~_8wekyb3d8bbwe
Microsoft.Xbox.TCUI                         Microsoft.Xbox.TCUI_1.23.28002.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxApp                           Microsoft.XboxApp_48.86.28002.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxApp                           Microsoft.XboxApp_48.49.31001.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxGameOverlay                   Microsoft.XboxGameOverlay_1.46.11001.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxGameOverlay                   Microsoft.XboxGameOverlay_1.54.4001.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxGamingOverlay                 Microsoft.XboxGamingOverlay_2.50.24002.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxGamingOverlay                 Microsoft.XboxGamingOverlay_5.721.12013.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxIdentityProvider              Microsoft.XboxIdentityProvider_12.85.31001.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxIdentityProvider              Microsoft.XboxIdentityProvider_12.50.6001.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxSpeechToTextOverlay           Microsoft.XboxSpeechToTextOverlay_1.21.13002.0_neutral_~_8wekyb3d8bbwe
Microsoft.XboxSpeechToTextOverlay           Microsoft.XboxSpeechToTextOverlay_1.17.29001.0_neutral_~_8wekyb3d8bbwe
Microsoft.YourPhone                         Microsoft.YourPhone_1.22022.147.0_neutral_~_8wekyb3d8bbwe
Microsoft.YourPhone                         Microsoft.YourPhone_1.22022.180.0_neutral_~_8wekyb3d8bbwe
Microsoft.ZuneMusic                         Microsoft.ZuneMusic_11.2202.45.0_neutral_~_8wekyb3d8bbwe
Microsoft.ZuneMusic                         Microsoft.ZuneMusic_2019.21012.10511.0_neutral_~_8wekyb3d8bbwe
Microsoft.ZuneVideo                         Microsoft.ZuneVideo_2019.22021.10291.0_neutral_~_8wekyb3d8bbwe
I have not encountered any problems with those listed apps.
Some time ago I had eliminated "GameExplorer", which is not good as it did not allow the launch of "Legacy Games"
 

My Computer My Computer

At a glance

W11CPU AMD Ryzen 9 7950XG.Skill Flare X5 32GB Kit DDR5-6000 CL32 (F5-...
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
Sweet, time to script this so I don't have to type them all manual :)

--Edit--
I ran all the commands and the only 'issue' so far, is the Microsoft.ZuneMusic Microsoft.ZuneMusic_11.2202.45.0_neutral_~_8wekyb3d8bbwe refused to be removed and still shows in the list, but the other ZuneMusic was removed, so I guess it worked?

Anyway, thanks, everyone.
 

My Computers My Computers

  • At a glance

    Windows 11 Pro βIntel® Core™ i7-1165G732 GB DDR4-3200 SDRAMIntel® Iris® Xᵉ Graphics
    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
  • At a glance

    macOS Ventura3.4 GHz Quad-Core Intel Core i540 GB 2400 MHz DDR4Radeon Pro 570 4 GB
    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
Have you tried with bat command?
Code:
powershell "Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "*Microsoft.ZuneMusic*" | Remove-AppxPackage -AllUsers" > NUL 2>&1
or
Code:
powershell Remove-AppxPackage Microsoft.ZuneMusic_11.2202.45.0_neutral_~_8wekyb3d8bbwe
 

My Computer My Computer

At a glance

W11CPU AMD Ryzen 9 7950XG.Skill Flare X5 32GB Kit DDR5-6000 CL32 (F5-...
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
Back
Top Bottom