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

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

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

My Computers

System One System Two

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

Screenshot-001.png
 

My Computer

System One

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

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

THANKS!

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

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

My Computer

System One

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

My Computers

System One System Two

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

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

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

My Computers

System One System Two

  • OS
    Win11 Pro 23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Home Built
    CPU
    Intel i7-11700K
    Motherboard
    ASUS Prime Z590-A
    Memory
    128GB Crucial Ballistix 3200MHz DRAM
    Graphics Card(s)
    No GPU - CPU graphics only (for now)
    Sound Card
    Realtek (on motherboard)
    Monitor(s) Displays
    HP Envy 32
    Screen Resolution
    2560 x 1440
    Hard Drives
    1 x 1TB NVMe Gen 4 x 4 SSD
    1 x 2TB NVMe Gen 3 x 4 SSD
    2 x 512GB 2.5" SSDs
    2 x 8TB HD
    PSU
    Corsair HX850i
    Case
    Corsair iCue 5000X RGB
    Cooling
    Noctua NH-D15 chromax.black cooler + 10 case fans
    Keyboard
    CODE backlit mechanical keyboard
    Mouse
    Logitech MX Master 3
    Internet Speed
    1Gb Up / 1 Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    Additional options installed:
    WiFi 6E PCIe adapter
    ASUS ThunderboltEX 4 PCIe adapter
  • Operating System
    Win11 Pro 23H2
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo ThinkBook 13x Gen 2
    CPU
    Intel i7-1255U
    Memory
    16 GB
    Graphics card(s)
    Intel Iris Xe Graphics
    Sound Card
    Realtek® ALC3306-CG codec
    Monitor(s) Displays
    13.3-inch IPS Display
    Screen Resolution
    WQXGA (2560 x 1600)
    Hard Drives
    2 TB 4 x 4 NVMe SSD
    PSU
    USB-C / Thunderbolt 4 Power / Charging
    Mouse
    Buttonless Glass Precision Touchpad
    Keyboard
    Backlit, spill resistant keyboard
    Internet Speed
    1Gb Up / 1Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    WiFi 6e / Bluetooth 5.1 / Facial Recognition / Fingerprint Sensor / ToF (Time of Flight) Human Presence Sensor
I have a question about this...

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

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

Hello,

These are suggested apps.

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

 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    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 so much. I didn't even know what they were called which makes searching for info difficult :-)
 

My Computers

System One System Two

  • OS
    Win11 Pro 23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Home Built
    CPU
    Intel i7-11700K
    Motherboard
    ASUS Prime Z590-A
    Memory
    128GB Crucial Ballistix 3200MHz DRAM
    Graphics Card(s)
    No GPU - CPU graphics only (for now)
    Sound Card
    Realtek (on motherboard)
    Monitor(s) Displays
    HP Envy 32
    Screen Resolution
    2560 x 1440
    Hard Drives
    1 x 1TB NVMe Gen 4 x 4 SSD
    1 x 2TB NVMe Gen 3 x 4 SSD
    2 x 512GB 2.5" SSDs
    2 x 8TB HD
    PSU
    Corsair HX850i
    Case
    Corsair iCue 5000X RGB
    Cooling
    Noctua NH-D15 chromax.black cooler + 10 case fans
    Keyboard
    CODE backlit mechanical keyboard
    Mouse
    Logitech MX Master 3
    Internet Speed
    1Gb Up / 1 Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    Additional options installed:
    WiFi 6E PCIe adapter
    ASUS ThunderboltEX 4 PCIe adapter
  • Operating System
    Win11 Pro 23H2
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo ThinkBook 13x Gen 2
    CPU
    Intel i7-1255U
    Memory
    16 GB
    Graphics card(s)
    Intel Iris Xe Graphics
    Sound Card
    Realtek® ALC3306-CG codec
    Monitor(s) Displays
    13.3-inch IPS Display
    Screen Resolution
    WQXGA (2560 x 1600)
    Hard Drives
    2 TB 4 x 4 NVMe SSD
    PSU
    USB-C / Thunderbolt 4 Power / Charging
    Mouse
    Buttonless Glass Precision Touchpad
    Keyboard
    Backlit, spill resistant keyboard
    Internet Speed
    1Gb Up / 1Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    WiFi 6e / Bluetooth 5.1 / Facial Recognition / Fingerprint Sensor / ToF (Time of Flight) Human Presence Sensor
Good morning.
This morning "Oulook For Windows" installed itself without my consent.
Since I plan to delete this app from the windows iso as well, I wanted to figure out what the exact powershell command was.
To uninstall I ran the command:
Code:
 Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name *Microsoft.OutlookForWindows* | Remove-AppxPackage -AllUsers

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

My Computer

System One

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

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

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

My Computer

System One

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

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

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

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

 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    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
Where can I find a complete list of the installed apps and do a copy/paste to remove? This would take me forever to type all these out or am i missing something?
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    Laptop
    Manufacturer/Model
    Panasonic Toughbook FZ-55-2
    CPU
    11th Gen Intel Core i7-1185G7 @ 3.00GHz
    Motherboard
    Panasonic
    Graphics Card(s)
    Intel Iris Xe Graphics
    Hard Drives
    Samsung SSD 980 PRO 1TB
Where can I find a complete list of the installed apps and do a copy/paste to remove? This would take me forever to type all these out or am i missing something?
Do the first part of Step 2 under Option Four. It will create a complete list in text form on your Desktop...

6712.jpg
 

My Computers

System One System Two

  • OS
    Windows 11
    Computer type
    PC/Desktop
    Manufacturer/Model
    ASUS ROG Strix
  • Operating System
    Windows 11
    Computer type
    Laptop
    Manufacturer/Model
    ASUS VivoBook

Latest Support Threads

Back
Top Bottom