top of page
pp.jpeg

Tips and Tricks

How to delete the Provisioned App's installation package files in Windows 10 and 8.

​

This small tutorial will guide you through step by step procedure to remove unwanted windows built in apps and reclaim hard disk space, which by the way is currently a big issue especially in case of Windows 10 latest builds. 

​

  • Run PowerShell as admin

  • Type the following command:

    • Get-AppXProvisionedPackage -Online | Select PackageName 

  • Then proceed to delete the desired provisioned package by giving this command *:

    • Remove-AppXProvisionedPackage -Online -PackageName <PackageName>

      • * Note: Replace the <PackageName> value, with the name of the provisioned package name, you want to uninstall, from the list you get, after executing the above command.

​

​

Sarib Khan

07-09-2020

​

bottom of page