remove W10 App Microsoft.PPIProjection

Copper Contributor

Can someone help me to remove the app >>Microsoft.PPIProjection<< form Windows 20H2, i want to generalize my image for deployments. 

 

The app is marked as "NonRemovable" - i tried several scripts, without success.

taichroth_84_0-1625133873952.png

 

THANK YOU

 

 

3 Replies

Hi @taichroth_84, I had the same problem,

this works for me Get-AppxPackage -Name Microsoft.PPI* -AllUsers |Remove-AppxPackage -AllUsers

 

Petr

 

 

Get-AppxPackage -Name Microsoft.PPI* -AllUsers |Remove-AppxPackage -AllUsers
Remove-AppxPackage : Removal failed. Please contact your software vendor.
Deployment Remove operation with target volume C: on Package
Microsoft.PPIProjection_10.0.14393.0_neutral_neutral_cw5n1h2txyewy from: failed with error 0x80070032. See
http://go.microsoft.com/fwlink/?LinkId=235160 for help diagnosing app deployment issues.
At line:1 char:49
+ ... xPackage -Name Microsoft.PPI* -AllUsers |Remove-AppxPackage -AllUsers
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Remove-AppxPackage], COMException
+ FullyQualifiedErrorId : System.Runtime.InteropServices.COMException,Microsoft.Windows.Appx.PackageManager.Comman
ds.RemoveAppxPackageCommand

@taichroth_84@Sonofsmog

The only solution I've found is to use the below command to find out which user the app is installed on (in my case it was the built-in local administrator account), then delete that user profile from sysdm.cpl:

 

 

 

Get-AppxPackage -AllUsers -Name Microsoft.PPI* | Select-Object -Property Name,PackageFullName,PackageUserInformation | Format-List

 

 

 

image.png