July 2018
Beginner
552 pages
13h 18m
English
One of the most frequently asked questions for Windows 10 is how to uninstall specific applications. The following cmdlets allow you to work with Universal Windows Platform (UWP) apps, for example finding and removing them. Have a dedicated look at the difference between Get-AppxPackage and Get-AppxProvisionedPackage. Each time a new user logs in and creates a new user profile, all the provisioned AppxPackages will be installed in the user context. Each user can therefore have a different number of AppxPackages:
#Retrieve Apps examplesGet-AppxPackage | Select-Object Name, PackageFullName#Retrieving and removingGet-AppxPackage *3dbuilder* | Remove-AppxPackage -WhatIfGet-AppxPackage -AllUsers | Remove-AppxPackage -WhatIf ...
Read now
Unlock full access