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:
Is there a way of doing it in the command terminal please?
Almost everything is in the cmd style. Only one line PowerShell - powershell -Command "$pkg =Get-AppxPackage -AllUsers -Name '%%P'; if ($pkg) {Write-Host ' [FOUND] Found: ' $pkg.Name '(' $pkg.Version ') ' -ForegroundColor Green; Write-Host ' [ACTION] Deleting...' -ForegroundColor Red; Remove-AppxPackage -Package $pkg -ErrorAction Stop; Write-Host ' [OK] Deleted: ' $pkg.Name -ForegroundColor Green} else { Write-Host ' [MISSING] NotFound: %%P' -ForegroundColor Red }"
 

My Computer My Computer

At a glance

Windows 11 Stable, Beta, Dev, CanaryAMD Ryzen 9 PRO 5950X128 GbIntel(R) Arc(TM) A380 Graphics (2 ГБ)
OS
Windows 11 Stable, Beta, Dev, Canary
Computer type
PC/Desktop
Manufacturer/Model
Micro-Star International Co., Ltd. MS-7D54
CPU
AMD Ryzen 9 PRO 5950X
Motherboard
MSI MAG X570S Tomahawk Max WiFi (MS-7D54) (2 PCI-E x1, 2 PCI-E x16, 2 M.2, 4 DDR4 DIMM, Audio, Video, 2.5GbE LAN, WiFi)
Memory
128 Gb
Graphics Card(s)
Intel(R) Arc(TM) A380 Graphics (2 ГБ)
Sound Card
Устройство с поддержкой High Definition Audio
Monitor(s) Displays
HP X34 [34" LCD] (6CM1300J5J) {2021}
Screen Resolution
3440x1440
Hard Drives
KINGSTON SFYRD2000G (2000 ГБ, PCI-E 4.0 x4)
PSU
Be Quiet! Dark Rock Pro 4
Case
Cooler Master HAF XB EVO
Internet Speed
1000 Mb/s
Browser
Chrome
Antivirus
Windows Defender
Thank you so much for this helpful tutorial :-) I may now try uninstalling some of the provisioned apps. However I have never really understood or felt comfortable using powershell and am more familiar with cmd. Is there a way of doing it in the command terminal please?

No worries. I've updated options 5, 7, 8, and 9 to have both a PowerShell and command prompt option in them to help. :shawn:
 

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
No worries. I've updated options 5, 7, 8, and 9 to have both a PowerShell and command prompt option in them to help. :shawn:
Thank you!
 

My Computers My Computers

  • At a glance

    Windows 11 Home 25H2Core i5-1035G132gb
    OS
    Windows 11 Home 25H2
    Computer type
    Laptop
    Manufacturer/Model
    HP Pavilion 14-ce3606sa
    CPU
    Core i5-1035G1
    Memory
    32gb
    Hard Drives
    Samsung 870 evo sata ssd
    Cooling
    Could be better
    Internet Speed
    50 mbps Starlink
    Browser
    Firefox
    Other Info
    Originally came installed with a 500gb H10 Optane ssd
  • At a glance

    Windows 11 HomeIntel Core i5-1035G116gb
    Operating System
    Windows 11 Home
    Computer type
    Laptop
    Manufacturer/Model
    HP Pavilion ce3606sa
    CPU
    Intel Core i5-1035G1
    Memory
    16gb
    Hard Drives
    Hynix Gold P31 2TB
    Internet Speed
    200mbps Starlink
    Browser
    Firefox
    Antivirus
    Defender
Another option is to extract the zip file, then place both files (bat and ps1) in the same folder, and then run the bat file as administrator.
 

Attachments

My Computer My Computer

At a glance

windows 11 25H224GBiris xe
OS
windows 11 25H2
Computer type
Laptop
Manufacturer/Model
ASUS Vivobook 15 (X1504)
Motherboard
Intel Alder Lake-P PCH
Memory
24GB
Graphics Card(s)
iris xe
Sound Card
realtek
Screen Resolution
1920X1080
Hard Drives
Samsung SSD 990 PRO 1TB
Browser
edge
Antivirus
eset anti virus
I've sketched you a small skeleton here in the form of a bat file. There are two files in the archive: one executable, the second with a list of deleted applications, which can be easily edited in a text editor. In this case, only for AllUsers. I hope it won't be difficult for you to change for yourself.

View attachment 155932
View attachment 155934
I am getting the following error:

1765129800655.webp


Where in the .bat file do I edit its location to tell it where the Packages_List.txt is located?
Just to confirm, this deletes it for the active user, any new potential users, and makes it so it cannot be readded?
 

My Computer My Computer

At a glance

WindowsIntel 8086kEVGA 3080 Ti FTW3 Ultra
OS
Windows
CPU
Intel 8086k
Motherboard
Asus z370-F
Graphics Card(s)
EVGA 3080 Ti FTW3 Ultra
Sound Card
ADI-2 DAC fs
Open the text file, select all, copy and paste into PowerShell admin
 

Attachments

My Computer My Computer

At a glance

windows 11 25H224GBiris xe
OS
windows 11 25H2
Computer type
Laptop
Manufacturer/Model
ASUS Vivobook 15 (X1504)
Motherboard
Intel Alder Lake-P PCH
Memory
24GB
Graphics Card(s)
iris xe
Sound Card
realtek
Screen Resolution
1920X1080
Hard Drives
Samsung SSD 990 PRO 1TB
Browser
edge
Antivirus
eset anti virus
Code:
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.

Install the latest PowerShell for new features and improvements! [URL="https://aka.ms/PSWindows"]Install PowerShell on Windows - PowerShell[/URL]

PS C:\Users\Boxxy> @echo off
At line:1 char:7
+ @echo off
+       ~~~
Unexpected token 'off' in expression or statement.
At line:1 char:1
+ @echo off
+ ~~~~~
The splatting operator '@' cannot be used to reference variables in an expression. '@echo' can be used only as an
argument to a command. To reference variables in an expression use '$echo'.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : UnexpectedToken

PS C:\Users\Boxxy> :: Created by Dronix7 07.12.2025 Changed 07.12.2025
:: : The term '::' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ :: Created by Dronix7 07.12.2025 Changed 07.12.2025
+ ~~
    + CategoryInfo          : ObjectNotFound: (:::String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> :: ======== CHECKING WHETHER THE SCRIPT IS RUNNING AS AN ADMINISTRATOR, AND IF NOT, THEN RUN AS AN ADMINISTRATOR. ==========
:: : The term '::' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ :: ======== CHECKING WHETHER THE SCRIPT IS RUNNING AS AN ADMINISTRATO ...
+ ~~
    + CategoryInfo          : ObjectNotFound: (:::String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> (Net session >nul 2>&1)||(PowerShell start """%~0""" -verb RunAs & exit /b) & chcp 1251 > nul & title %computername%  %~nx0
At line:1 char:66
+ ... session >nul 2>&1)||(PowerShell start """%~0""" -verb RunAs & exit /b ...
+                                                                 ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
At line:1 char:77
+ ... l 2>&1)||(PowerShell start """%~0""" -verb RunAs & exit /b) & chcp 12 ...
+                                                                 ~
Unexpected token '&' in expression or statement.
At line:1 char:95
+ ... ll start """%~0""" -verb RunAs & exit /b) & chcp 1251 > nul & title % ...
+                                                                 ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
At line:1 char:24
+ (Net session >nul 2>&1)||(PowerShell start """%~0""" -verb RunAs & ex ...
+                        ~~
The token '||' is not a valid statement separator in this version.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : AmpersandNotAllowed

PS C:\Users\Boxxy> :: =========================================================================================================================
:: : The term '::' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ :: ================================================================== ...
+ ~~
    + CategoryInfo          : ObjectNotFound: (:::String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> mode con:cols=65 & color F0 & call :Colors
At line:1 char:18
+ mode con:cols=65 & color F0 & call :Colors
+                  ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
At line:1 char:29
+ mode con:cols=65 & color F0 & call :Colors
+                             ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : AmpersandNotAllowed

PS C:\Users\Boxxy> echo.
echo. : The term 'echo.' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ echo.
+ ~~~~~
    + CategoryInfo          : ObjectNotFound: (echo.:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> echo              %NK%%B%REMOVING AppX PACKAGES (detailed output)%IR%%E%
detailed : The term 'detailed' is not recognized as the name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:50
+ echo              %NK%%B%REMOVING AppX PACKAGES (detailed output)%IR% ...
+                                                  ~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (detailed:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> echo              %B%========================================%E%
%B%========================================%E%
PS C:\Users\Boxxy> echo.
echo. : The term 'echo.' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ echo.
+ ~~~~~
    + CategoryInfo          : ObjectNotFound: (echo.:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> :: The List of Packages to Remove is From the File: Packages_List.txt
:: : The term '::' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ :: The List of Packages to Remove is From the File: Packages_List.txt
+ ~~
    + CategoryInfo          : ObjectNotFound: (:::String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> setlocal enabledelayedexpansion
setlocal : The term 'setlocal' is not recognized as the name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ setlocal enabledelayedexpansion
+ ~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (setlocal:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> set "packages="
PS C:\Users\Boxxy> for /f "delims=" %%a in (Packages_List.txt) do (set "packages=!packages! %%a")
At line:1 char:4
+ for /f "delims=" %%a in (Packages_List.txt) do (set "packages=!packag ...
+    ~
Missing opening '(' after keyword 'for'.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : MissingOpenParenthesisAfterKeyword

PS C:\Users\Boxxy> endlocal & set "packages=%packages:~1%"
At line:1 char:10
+ endlocal & set "packages=%packages:~1%"
+          ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : AmpersandNotAllowed

PS C:\Users\Boxxy> :: =========================================================================================================================
:: : The term '::' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ :: ================================================================== ...
+ ~~
    + CategoryInfo          : ObjectNotFound: (:::String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> :: Sorting Through the Packages
:: : The term '::' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ :: Sorting Through the Packages
+ ~~
    + CategoryInfo          : ObjectNotFound: (:::String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> for %%P in (%packages%) do (
>>     echo    %B%[CHECK]   Search:   %%P %E%
>>     powershell -Command "$pkg = Get-AppxPackage -AllUsers -Name '%%P'; if ($pkg) { Write-Host '   [FOUND]   Found:   '  $pkg.Name '(' $pkg.Version ') ' -ForegroundColor Green; Write-Host '   [ACTION]  Deleting...' -ForegroundColor Red; Remove-AppxPackage -Package $pkg -ErrorAction Stop; Write-Host '   [OK]      Deleted: '  $pkg.Name  -ForegroundColor Green} else { Write-Host '   [MISSING] NotFound: %%P' -ForegroundColor Red }"
At line:1 char:4
+ for %%P in (%packages%) do (
+    ~
Missing opening '(' after keyword 'for'.
At line:2 char:43
+     echo    %B%[CHECK]   Search:   %%P %E%
+                                           ~
Missing closing ')' in expression.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : MissingOpenParenthesisAfterKeyword

PS C:\Users\Boxxy>     echo    ---
---
PS C:\Users\Boxxy> )
At line:1 char:1
+ )
+ ~
Unexpected token ')' in expression or statement.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : UnexpectedToken

PS C:\Users\Boxxy> :: =========================================================================================================================
:: : The term '::' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ :: ================================================================== ...
+ ~~
    + CategoryInfo          : ObjectNotFound: (:::String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> echo.
echo. : The term 'echo.' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ echo.
+ ~~~~~
    + CategoryInfo          : ObjectNotFound: (echo.:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> echo       =========
=========
PS C:\Users\Boxxy> echo       %R%Completed%E%
%R%Completed%E%
PS C:\Users\Boxxy> echo       =========
=========
PS C:\Users\Boxxy> echo.
echo. : The term 'echo.' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ echo.
+ ~~~~~
    + CategoryInfo          : ObjectNotFound: (echo.:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> echo    %B%[INFO] %G%All Operations Are Completed.%E%
%B%[INFO]
%G%All
Operations
Are
Completed.%E%
PS C:\Users\Boxxy> echo.
echo. : The term 'echo.' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ echo.
+ ~~~~~
    + CategoryInfo          : ObjectNotFound: (echo.:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> echo    %R%To Finish, Press Any Key.%E%
%R%To
Finish
Press
Any
Key.%E%
PS C:\Users\Boxxy> pause > nul
out-file : FileStream was asked to open a device that was not a file. For support for devices like 'com1:' or 'lpt1:',
call CreateFile, then use the FileStream constructors that take an OS handle as an IntPtr.
At line:1 char:1
+ pause > nul
+ ~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], NotSupportedException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand

PS C:\Users\Boxxy> goto :eof
goto : The term 'goto' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ goto :eof
+ ~~~~
    + CategoryInfo          : ObjectNotFound: (goto:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> :: ===================================================== Color Parameters ==================================================
:: : The term '::' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ :: ===================================================== Color Parame ...
+ ~~
    + CategoryInfo          : ObjectNotFound: (:::String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> :Colors
:Colors : The term ':Colors' is not recognized as the name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ :Colors
+ ~~~~~~~
    + CategoryInfo          : ObjectNotFound: (:Colors:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> (set  R=[31m)     & (set  B=[34m)     & (set  G=[32m) & (set  W=[97m) & (set  E=[30;107m)
At line:1 char:19
+ (set  R=[31m)     & (set  B=[34m)     & (set  G=[32m) & (set  W=[97m) ...
+                   ~
Unexpected token '&' in expression or statement.
At line:1 char:39
+ (set  R=[31m)     & (set  B=[34m)     & (set  G=[32m) & (set  W=[97m) ...
+                                       ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
At line:1 char:55
+ (set  R=[31m)     & (set  B=[34m)     & (set  G=[32m) & (set  W=[97m) ...
+                                                       ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
At line:1 char:71
+ ... 1m)     & (set  B=[34m)     & (set  G=[32m) & (set  W=[97m) & (set  E ...
+                                                                 ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
At line:1 char:84
+ ... (set  B=[34m)     & (set  G=[32m) & (set  W=[97m) & (set  E=[30;107m)
+                                                                    ~
Missing closing ')' in expression.
At line:1 char:89
+ ... (set  B=[34m)     & (set  G=[32m) & (set  W=[97m) & (set  E=[30;107m)
+                                                                         ~
Unexpected token ')' in expression or statement.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : UnexpectedToken

PS C:\Users\Boxxy> (set BG=[30;103m) & (set BL=[32;103m) & (set RI=[7m)  & (set IR=[0m)  & (set NK=[3m)      & (set YL=[35;107m)
At line:1 char:12
+ (set BG=[30;103m) & (set BL=[32;103m) & (set RI=[7m)  & (set IR=[0m)  ...
+            ~
Missing closing ')' in expression.
At line:1 char:17
+ (set BG=[30;103m) & (set BL=[32;103m) & (set RI=[7m)  & (set IR=[0m)  ...
+                 ~
Unexpected token ')' in expression or statement.
At line:1 char:32
+ (set BG=[30;103m) & (set BL=[32;103m) & (set RI=[7m)  & (set IR=[0m)  ...
+                                ~
Missing closing ')' in expression.
At line:1 char:37
+ (set BG=[30;103m) & (set BL=[32;103m) & (set RI=[7m)  & (set IR=[0m)  ...
+                                     ~
Unexpected token ')' in expression or statement.
At line:1 char:55
+ (set BG=[30;103m) & (set BL=[32;103m) & (set RI=[7m)  & (set IR=[0m)  ...
+                                                       ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
At line:1 char:71
+ ... 0;103m) & (set BL=[32;103m) & (set RI=[7m)  & (set IR=[0m)  & (set NK ...
+                                                                 ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
At line:1 char:91
+ ... 2;103m) & (set RI=[7m)  & (set IR=[0m)  & (set NK=[3m)      & (set YL ...
+                                                                 ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
At line:1 char:104
+ ... (set RI=[7m)  & (set IR=[0m)  & (set NK=[3m)      & (set YL=[35;107m)
+                                                                    ~
Missing closing ')' in expression.
At line:1 char:109
+ ... (set RI=[7m)  & (set IR=[0m)  & (set NK=[3m)      & (set YL=[35;107m)
+                                                                         ~
Unexpected token ')' in expression or statement.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : MissingEndParenthesisInExpression

PS C:\Users\Boxxy> goto :eof
goto : The term 'goto' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ goto :eof
+ ~~~~
    + CategoryInfo          : ObjectNotFound: (goto:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Boxxy> :: =========================================================================================================================

I am not sure why, but I am getting nothing but errors when I try to run it.
 

My Computer My Computer

At a glance

WindowsIntel 8086kEVGA 3080 Ti FTW3 Ultra
OS
Windows
CPU
Intel 8086k
Motherboard
Asus z370-F
Graphics Card(s)
EVGA 3080 Ti FTW3 Ultra
Sound Card
ADI-2 DAC fs
Open the text file, select all, copy and paste into PowerShell admin

Here are the errors I get when I do what you say.

Code:
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.

Install the latest PowerShell for new features and improvements! [URL="https://aka.ms/PSWindows"]Install PowerShell on Windows - PowerShell[/URL]

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.BingSearch » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.BingSearc ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WidgetsPlatformRuntime » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WidgetsPl ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.ZuneMusic » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.ZuneMusic ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.XboxIdentityProvider » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.XboxIdent ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WebpImageExtension » | Remove-AppxPackage

Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WebpImage ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WindowsAlarms » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WindowsAl ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.Todos » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.Todos » | ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.RawImageExtension » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.RawImageE ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.VP9VideoExtensions » | Remove-AppxPackage

Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.VP9VideoE ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.PowerAutomateDesktop » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.PowerAuto ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « MicrosoftWindows.CrossDevice » | Remove-AppxPackage

Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « MicrosoftWindows.Cr ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « MicrosoftCorporationII.QuickAssist » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « MicrosoftCorporatio ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.YourPhone » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.YourPhone ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.XboxSpeechToTextOverlay » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.XboxSpeec ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.Xbox.TCUI » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.Xbox.TCUI ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WindowsSoundRecorder » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WindowsSo ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WindowsFeedbackHub » | Remove-AppxPackage

Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WindowsFe ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WindowsCamera » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WindowsCa ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WindowsCalculator » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WindowsCa ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.Windows.DevHome » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.Windows.D ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WebMediaExtensions » | Remove-AppxPackage

Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.WebMediaE ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.MPEG2VideoExtension » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.MPEG2Vide ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.MicrosoftStickyNotes » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.Microsoft ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.MicrosoftSolitaireCollection » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.Microsoft ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.MicrosoftOfficeHub » | Remove-AppxPackage

Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.Microsoft ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.HEVCVideoExtension » | Remove-AppxPackage

Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.HEVCVideo ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.HEIFImageExtension » | Remove-AppxPackage

Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.HEIFImage ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.GetHelp » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.GetHelp » ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.GamingApp » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.GamingApp ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.BingNews » | Remove-AppxPackage
Get-AppxPackage : A positional parameter cannot be found that accepts argument '»'.
At line:1 char:1
+ Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.BingNews  ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Get-AppxPackage], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackag
   eCommand

PS C:\Users\Boxxy> Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.AVCEncoderVideoExtension » | Remove-AppxPackage
>> Get-AppxPackage -PackageTypeFilter Bundle -Name « Microsoft.AV1VideoExtension » | Remove-AppxPackage
>> Get-AppxPackage -PackageTypeFilter Bundle -Nom « Microsoft.ApplicationCompatibilityEnhancements » | Remove-AppxPackage
>> Get-AppxPackage -PackageTypeFilter Bundle -Nom « Clipchamp.Clipchamp » | Remove-AppxPackage
>> Get-AppxPackage -PackageTypeFilter Bundle -Nom : « Microsoft.ScreenSketch » | Remove-AppxPackage
>> Get-AppxPackage -PackageTypeFilter Bundle -Name « MicrosoftWindows.Client.WebExperience » | Remove-AppxPackage
>>
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom : « Microsoft.BingSearch » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.WidgetsPlatformRuntime » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.ZuneMusic » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name « Microsoft.XboxIdentityProvider » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name « Microsoft.WebpImageExtension » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name « Microsoft.WindowsAlarms » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.StorePurchaseApp » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name « Microsoft.Todos » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.RawImageExtension » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.VP9VideoExtensions » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.PowerAutomateDesktop » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « MicrosoftWindows.CrossDevice » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « MicrosoftCorporationII.QuickAssist » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name « Microsoft.YourPhone » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.XboxSpeechToTextOverlay » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.Xbox.TCUI » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.WindowsSoundRecorder » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name « Microsoft.WindowsFeedbackHub » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.WindowsCamera » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.WindowsCalculator » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name « Microsoft.Windows.DevHome » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name « Microsoft.WebMediaExtensions » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.MPEG2VideoExtension » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.MicrosoftStickyNotes » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name « Microsoft.MicrosoftSolitaireCollection » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.MicrosoftOfficeHub » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name « Microsoft.HEVCVideoExtension » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name « Microsoft.HEIFImageExtension » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name « Microsoft.GetHelp » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.GamingApp » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name « Microsoft.BingNews » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name « Microsoft.AVCEncoderVideoExtension » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.AV1VideoExtension » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.ApplicationCompatibilityEnhancements » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Clipchamp.Clipchamp » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « Microsoft.ScreenSketch » | Remove-AppxPackage -AllUsers
>> Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Nom « MicrosoftWindows.Client.WebExperience » | Remove-AppxPackage -AllUsers
>>
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.BingSearch*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WidgetsPlatformRuntime*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.ZuneMusic*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.XboxIdentityProvider*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WebpImageExtension*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WindowsAlarms*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.StorePurchaseApp*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.Todos*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.RawImageExtension*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.VP9VideoExtensions*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.PowerAutomateDesktop*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*MicrosoftWindows.CrossDevice*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*MicrosoftCorporationII.QuickAssist*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.YourPhone*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.XboxSpeechToTextOverlay*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.Xbox.TCUI*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WindowsSoundRecorder*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WindowsFeedbackHub*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WindowsCamera*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WindowsCalculator*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.Windows.DevHome*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.WebMediaExtensions*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.MPEG2VideoExtension*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.MicrosoftStickyNotes*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.MicrosoftSolitaireCollection*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.MicrosoftOfficeHub*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.HEVCVideoExtension*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.HEIFImageExtension*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.GetHelp*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.GamingApp*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –en ligne | where-object {$_.packagename –like '*Microsoft.BingNews*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.AVCEncoderVideoExtension*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.AV1VideoExtension*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.ApplicationCompatibilityEnhancements*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Clipchamp.Clipchamp*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*Microsoft.ScreenSketch*'} | remove-appxprovisionedpackage –online
>> Get-appxprovisionedpackage –online | where-object {$_.packagename –like '*MicrosoftWindows.Client.WebExperience*'} | remove-appxprovisionedpackage – en
 

My Computer My Computer

At a glance

WindowsIntel 8086kEVGA 3080 Ti FTW3 Ultra
OS
Windows
CPU
Intel 8086k
Motherboard
Asus z370-F
Graphics Card(s)
EVGA 3080 Ti FTW3 Ultra
Sound Card
ADI-2 DAC fs
I am getting the following error:
Have you changed anything here? - endlocal & set "packages=%packages:~1%" Everything should be in one line.
 

My Computer My Computer

At a glance

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

Oh, I did the following in the packages_list.

Microsoft.BingSearch
Microsoft.WidgetsPlatformRuntime
Microsoft.ZuneMusic
Microsoft.XboxIdentityProvider
Microsoft.WebpImageExtension
Microsoft.WindowsAlarms
Microsoft.StorePurchaseApp
Microsoft.Todos
Microsoft.RawImageExtension
Microsoft.VP9VideoExtensions
Microsoft.PowerAutomateDesktop
MicrosoftWindows.CrossDevice
MicrosoftCorporationII.QuickAssist
Microsoft.YourPhone
Microsoft.XboxSpeechToTextOverlay
Microsoft.Xbox.TCUI
Microsoft.WindowsSoundRecorder
Microsoft.WindowsFeedbackHub
Microsoft.WindowsCamera
Microsoft.WindowsCalculator
Microsoft.Windows.DevHome
Microsoft.WebMediaExtensions
Microsoft.MPEG2VideoExtension
Microsoft.MicrosoftStickyNotes
Microsoft.MicrosoftSolitaireCollection
Microsoft.MicrosoftOfficeHub
Microsoft.HEVCVideoExtension
Microsoft.HEIFImageExtension
Microsoft.GetHelp
Microsoft.AVCEncoderVideoExtension
Microsoft.AV1VideoExtension
Microsoft.ApplicationCompatibilityEnhancements
Clipchamp.Clipchamp
Microsoft.ScreenSketch
Microsoft.WindowsStore
MicrosoftWindows.Client.WebExperience
 

My Computer My Computer

At a glance

WindowsIntel 8086kEVGA 3080 Ti FTW3 Ultra
OS
Windows
CPU
Intel 8086k
Motherboard
Asus z370-F
Graphics Card(s)
EVGA 3080 Ti FTW3 Ultra
Sound Card
ADI-2 DAC fs
Guud Lurd!
I'm glad you wrapped those quotes with CODE, post was about 8 miles long on my phone!!! :cool:
 

My Computers My Computers

  • At a glance

    Windows 11 Pro
    OS
    Windows 11 Pro
    Computer type
    PC/Desktop
    Manufacturer/Model
    ASUS ROG Strix
  • At a glance

    Windows 11 Pro
    Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    ASUS VivoBook
  • ASUS VivoBook 'Lite' ~ Windows 11 Home
Where in the .bat file do I edit its location to tell it where the Packages_List.txt is located?
If no path is specified, the command interpreter (cmd.exe ) searches for the file in the current working directory, that is, where it was launched the bat script.
You have not written whether you have checked this line. - endlocal & set "packages=%packages:~1%"
 

My Computer My Computer

At a glance

Windows 11 Stable, Beta, Dev, CanaryAMD Ryzen 9 PRO 5950X128 GbIntel(R) Arc(TM) A380 Graphics (2 ГБ)
OS
Windows 11 Stable, Beta, Dev, Canary
Computer type
PC/Desktop
Manufacturer/Model
Micro-Star International Co., Ltd. MS-7D54
CPU
AMD Ryzen 9 PRO 5950X
Motherboard
MSI MAG X570S Tomahawk Max WiFi (MS-7D54) (2 PCI-E x1, 2 PCI-E x16, 2 M.2, 4 DDR4 DIMM, Audio, Video, 2.5GbE LAN, WiFi)
Memory
128 Gb
Graphics Card(s)
Intel(R) Arc(TM) A380 Graphics (2 ГБ)
Sound Card
Устройство с поддержкой High Definition Audio
Monitor(s) Displays
HP X34 [34" LCD] (6CM1300J5J) {2021}
Screen Resolution
3440x1440
Hard Drives
KINGSTON SFYRD2000G (2000 ГБ, PCI-E 4.0 x4)
PSU
Be Quiet! Dark Rock Pro 4
Case
Cooler Master HAF XB EVO
Internet Speed
1000 Mb/s
Browser
Chrome
Antivirus
Windows Defender
If no path is specified, the command interpreter (cmd.exe ) searches for the file in the current working directory, that is, where it was launched the bat script.
You have not written whether you have checked this line. - endlocal & set "packages=%packages:~1%"
I have not changed anything on that line.
 

My Computer My Computer

At a glance

WindowsIntel 8086kEVGA 3080 Ti FTW3 Ultra
OS
Windows
CPU
Intel 8086k
Motherboard
Asus z370-F
Graphics Card(s)
EVGA 3080 Ti FTW3 Ultra
Sound Card
ADI-2 DAC fs
I have not changed anything on that line.
Try changing for/f "delims=" %%a in (Packages_List.txt ) do (set "packages=!packages! %%a") on for /f "delims=" %%a in ("%~dp0Packages_List.txt ") do (set "packages=!packages! %%a")
 

My Computer My Computer

At a glance

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

My Computer My Computer

At a glance

WindowsIntel 8086kEVGA 3080 Ti FTW3 Ultra
OS
Windows
CPU
Intel 8086k
Motherboard
Asus z370-F
Graphics Card(s)
EVGA 3080 Ti FTW3 Ultra
Sound Card
ADI-2 DAC fs
Or just follow Brink's tutorial maybe? :-)
 

My Computers My Computers

  • At a glance

    Windows 11 Home 25H2Core i5-1035G132gb
    OS
    Windows 11 Home 25H2
    Computer type
    Laptop
    Manufacturer/Model
    HP Pavilion 14-ce3606sa
    CPU
    Core i5-1035G1
    Memory
    32gb
    Hard Drives
    Samsung 870 evo sata ssd
    Cooling
    Could be better
    Internet Speed
    50 mbps Starlink
    Browser
    Firefox
    Other Info
    Originally came installed with a 500gb H10 Optane ssd
  • At a glance

    Windows 11 HomeIntel Core i5-1035G116gb
    Operating System
    Windows 11 Home
    Computer type
    Laptop
    Manufacturer/Model
    HP Pavilion ce3606sa
    CPU
    Intel Core i5-1035G1
    Memory
    16gb
    Hard Drives
    Hynix Gold P31 2TB
    Internet Speed
    200mbps Starlink
    Browser
    Firefox
    Antivirus
    Defender

My Computer My Computer

At a glance

WindowsIntel 8086kEVGA 3080 Ti FTW3 Ultra
OS
Windows
CPU
Intel 8086k
Motherboard
Asus z370-F
Graphics Card(s)
EVGA 3080 Ti FTW3 Ultra
Sound Card
ADI-2 DAC fs
I have no idea what you're trying to get me to change. Can you please repaste the code?
%~dp0 is a variable containing the path to the folder where the batnik itself is located. I am sending a bat file
 

Attachments

My Computer My Computer

At a glance

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


Sadly the same error.
 

My Computer My Computer

At a glance

WindowsIntel 8086kEVGA 3080 Ti FTW3 Ultra
OS
Windows
CPU
Intel 8086k
Motherboard
Asus z370-F
Graphics Card(s)
EVGA 3080 Ti FTW3 Ultra
Sound Card
ADI-2 DAC fs

My Computer My Computer

At a glance

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