Apps Uninstall Apps in Windows 11


  • Staff
Apps_banner.png

This tutorial will show you how to uninstall apps 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 23585 (Dev), the Camera app, Cortana, Photos app, and People app, and Remote Desktop (MSTSC) client can be uninstalled.

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 and Android Apps for Current User in PowerShell
  • Option Five: Uninstall Apps for Current User using winget Command
  • Option Six: Uninstall Provisioned Apps for Current User in PowerShell
  • Option Seven: Uninstall Provisioned Apps for All Users in PowerShell




Option One

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


1 Open the Start menu :win:, and click/tap on the All apps button. (see screenshot below)

Uninstall_apps_Start_menu-1.jpg

2 Right click or press and hold on the app (ex: "Speedtest") you want to uninstall, and click/tap on Uninstall. (see screenshot below)

Uninstall_apps_Start_menu-2.jpg

3 If this is a desktop app, then go to step 2 in Option Three to uninstall the app in the Control Panel.

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 the Settings to uninstall the app.


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

Uninstall_apps_Start_menu-3.png




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 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 and Android Apps for Current User in PowerShell


1 Open Windows Terminal, and select Windows PowerShell.

2 Copy and paste the 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)​
Get-AppxPackage | Where-Object {$_.NonRemovable -eq $False} | Select Name, PackageFullName >"$env:userprofile\Desktop\Apps_List.txt"

OR​

(outputs inside PowerShell)​
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 command below into Windows Terminal, and press Enter. (see screenshot below)

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 Five

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 Six

Uninstall Provisioned Apps for Current User in PowerShell


1 Open Windows Terminal, and select Windows PowerShell.

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

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

OR​

(outputs inside PowerShell)​
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 command below into Windows Terminal (Admin), and press Enter. (see screenshot below)

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

Substitute PackageFullName in the command above with the app's (ex: "Tips") actual Name (ex: "Microsoft.GetHelp") 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 Seven

Uninstall Provisioned Apps for All Users in PowerShell


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


1 Open Windows Terminal (Admin), and select Windows PowerShell.

2 Copy and paste the 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)​
Get-AppxPackage -AllUsers -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName >"$env:userprofile\Desktop\Provisioned_Apps_List.txt"

OR​

(outputs inside PowerShell)​
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: "Tips") you want to uninstall. (see screenshot above)

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

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

Substitute PackageFullName in the command above with the app's (ex: "Tips") 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.


That's it,
Shawn Brink


 

Attachments

  • Apps.png
    Apps.png
    10.8 KB · Views: 166
Last edited:
Hi,
Nice one :cool:
 

My Computer

System One

  • 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

System One

  • 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

System One System Two

  • OS
    Windows 11 Pro x64 23H2 v22631.2861
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built Myself in 2013
    CPU
    AMD Ryzen 1800X 8-Core @ 3.60GHz
    Motherboard
    Asus Crosshair VI Hero
    Memory
    16GB G.Skill Trident Z RGB Series
    Graphics Card(s)
    AMD Radeon RX 580 8GB GDDR5
    Sound Card
    On Board
    Monitor(s) Displays
    Samsung 27" , PLANAR 22", eMachine 22"
    Screen Resolution
    1920 X 1080
    Hard Drives
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~ P34A60 512GB NVMe PCIe Gen3x4 M.2
    ~ 3TB WD Red HDD (extra storage)
    ~ SanDisk 250GB SSD
    ~ 2 X 1TB HDD
    ~~~~~~~~~~
    PSU
    Corsair RM850 Fully Modular (850watts)
    Case
    NZXT Phantom 630 CA-PH630-W1
    Cooling
    CORSAIR iCUE H100i RGB PRO XT
    Keyboard
    Logitech K860
    Mouse
    Logitech MX Master
    Internet Speed
    752Mbps (Download) / 537Mbps (Upload)
    Browser
    Firefox
    Antivirus
    Malwarebytes
    Other Info
    *This is my Main Computer That I use*
  • Operating System
    Windows 10 Pro x64
    Computer type
    PC/Desktop
    Manufacturer/Model
    Asus
    CPU
    AMD A10-5700 APU @ 3.40Ghz
    Motherboard
    Asus CM1745
    Memory
    8GB
    Graphics card(s)
    AMD Radeon R7 350x GDDR5 4 GB
    Sound Card
    On Board
    Monitor(s) Displays
    Dual Monitor Setup ONN 22" Monitors
    Screen Resolution
    1920 X 1080
    Hard Drives
    ~~~~~~~~
    250GB SSD

    500GB HDD
    ~~~~~~~~
    PSU
    350Watt PSU
    Cooling
    Air Cooling
    Mouse
    MX Master
    Keyboard
    Microsoft Ergonomic 4000
    Internet Speed
    752Mbps (Download) / 537Mbps (Upload)
    Browser
    Firefox
    Antivirus
    Malwarebytes
    Other Info
    *Computer for Weather Software*

My Computer

System One

  • 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

System One

  • 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
    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

System One System Two

  • OS
    Windows 11 Pro x64 23H2 v22631.2861
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built Myself in 2013
    CPU
    AMD Ryzen 1800X 8-Core @ 3.60GHz
    Motherboard
    Asus Crosshair VI Hero
    Memory
    16GB G.Skill Trident Z RGB Series
    Graphics Card(s)
    AMD Radeon RX 580 8GB GDDR5
    Sound Card
    On Board
    Monitor(s) Displays
    Samsung 27" , PLANAR 22", eMachine 22"
    Screen Resolution
    1920 X 1080
    Hard Drives
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~ P34A60 512GB NVMe PCIe Gen3x4 M.2
    ~ 3TB WD Red HDD (extra storage)
    ~ SanDisk 250GB SSD
    ~ 2 X 1TB HDD
    ~~~~~~~~~~
    PSU
    Corsair RM850 Fully Modular (850watts)
    Case
    NZXT Phantom 630 CA-PH630-W1
    Cooling
    CORSAIR iCUE H100i RGB PRO XT
    Keyboard
    Logitech K860
    Mouse
    Logitech MX Master
    Internet Speed
    752Mbps (Download) / 537Mbps (Upload)
    Browser
    Firefox
    Antivirus
    Malwarebytes
    Other Info
    *This is my Main Computer That I use*
  • Operating System
    Windows 10 Pro x64
    Computer type
    PC/Desktop
    Manufacturer/Model
    Asus
    CPU
    AMD A10-5700 APU @ 3.40Ghz
    Motherboard
    Asus CM1745
    Memory
    8GB
    Graphics card(s)
    AMD Radeon R7 350x GDDR5 4 GB
    Sound Card
    On Board
    Monitor(s) Displays
    Dual Monitor Setup ONN 22" Monitors
    Screen Resolution
    1920 X 1080
    Hard Drives
    ~~~~~~~~
    250GB SSD

    500GB HDD
    ~~~~~~~~
    PSU
    350Watt PSU
    Cooling
    Air Cooling
    Mouse
    MX Master
    Keyboard
    Microsoft Ergonomic 4000
    Internet Speed
    752Mbps (Download) / 537Mbps (Upload)
    Browser
    Firefox
    Antivirus
    Malwarebytes
    Other Info
    *Computer for Weather Software*
@Brink

Awesome tutorial. ^^
 

My Computers

System One System Two

  • OS
    Win 11 Home ♦♦♦22631.3374 ♦♦♦♦♦♦♦23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built by Ghot® [May 2020]
    CPU
    AMD Ryzen 7 3700X
    Motherboard
    Asus Pro WS X570-ACE (BIOS 4702)
    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 Internet 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
    Mouse
    Logitech Optical M-BT96a
    Keyboard
    Logitech Classic Keybooard 200
    Internet Speed
    300/300
    Browser
    Firefox 3.x ??
    Antivirus
    Symantec (Norton)
    Other Info
    Still assembled, still runs. Haven't turned it on for 13 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

System One

  • 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

System One System Two

  • OS
    Windows 11 Pro x64 23H2 v22631.2861
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built Myself in 2013
    CPU
    AMD Ryzen 1800X 8-Core @ 3.60GHz
    Motherboard
    Asus Crosshair VI Hero
    Memory
    16GB G.Skill Trident Z RGB Series
    Graphics Card(s)
    AMD Radeon RX 580 8GB GDDR5
    Sound Card
    On Board
    Monitor(s) Displays
    Samsung 27" , PLANAR 22", eMachine 22"
    Screen Resolution
    1920 X 1080
    Hard Drives
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~ P34A60 512GB NVMe PCIe Gen3x4 M.2
    ~ 3TB WD Red HDD (extra storage)
    ~ SanDisk 250GB SSD
    ~ 2 X 1TB HDD
    ~~~~~~~~~~
    PSU
    Corsair RM850 Fully Modular (850watts)
    Case
    NZXT Phantom 630 CA-PH630-W1
    Cooling
    CORSAIR iCUE H100i RGB PRO XT
    Keyboard
    Logitech K860
    Mouse
    Logitech MX Master
    Internet Speed
    752Mbps (Download) / 537Mbps (Upload)
    Browser
    Firefox
    Antivirus
    Malwarebytes
    Other Info
    *This is my Main Computer That I use*
  • Operating System
    Windows 10 Pro x64
    Computer type
    PC/Desktop
    Manufacturer/Model
    Asus
    CPU
    AMD A10-5700 APU @ 3.40Ghz
    Motherboard
    Asus CM1745
    Memory
    8GB
    Graphics card(s)
    AMD Radeon R7 350x GDDR5 4 GB
    Sound Card
    On Board
    Monitor(s) Displays
    Dual Monitor Setup ONN 22" Monitors
    Screen Resolution
    1920 X 1080
    Hard Drives
    ~~~~~~~~
    250GB SSD

    500GB HDD
    ~~~~~~~~
    PSU
    350Watt PSU
    Cooling
    Air Cooling
    Mouse
    MX Master
    Keyboard
    Microsoft Ergonomic 4000
    Internet Speed
    752Mbps (Download) / 537Mbps (Upload)
    Browser
    Firefox
    Antivirus
    Malwarebytes
    Other Info
    *Computer for Weather Software*
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

System One System Two

  • OS
    Windows 11 Pro 23H2 Build-22631.3374
    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
  • Operating System
    Windows 11 Pro 23H2 Build-22631.3374
    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
    Mouse
    Logitech Wireless mouse
    Keyboard
    Logitech Wireless keyboard
    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

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
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

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,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    HP Spectre x360 2in1 14-eu0098nr (2024)
    CPU
    Intel Core Ultra 7 155H 4.8 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Graphics card(s)
    Integrated Intel Arc
    Sound Card
    Poly Studio
    Monitor(s) Displays
    14" 2.8K OLED multitouch
    Screen Resolution
    2880 x 1800
    Hard Drives
    2 TB PCIe NVMe M.2 SSD
    Internet Speed
    Intel Wi-Fi 7 BE200 (2x2) and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender and Malwarebytes Premium
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

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
@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

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,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    HP Spectre x360 2in1 14-eu0098nr (2024)
    CPU
    Intel Core Ultra 7 155H 4.8 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Graphics card(s)
    Integrated Intel Arc
    Sound Card
    Poly Studio
    Monitor(s) Displays
    14" 2.8K OLED multitouch
    Screen Resolution
    2880 x 1800
    Hard Drives
    2 TB PCIe NVMe M.2 SSD
    Internet Speed
    Intel Wi-Fi 7 BE200 (2x2) and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender and Malwarebytes Premium
Thank you very much

Screenshot-006.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
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

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
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

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
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

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
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

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

Latest Support Threads

Back
Top Bottom