Question Powershell app removal error

Aug 21, 2019
1
0
10
Hey guys, im not sure if its the right place to talk about my problems, but i dont know other reddit pages. So basically i was trying to remove this app using PowerShell and i am getting some sort of error. I tried bunch of methods and nothing works. Any suggestions on how i can remove it? Error code 0x80073CFA
Screenshot of error : View: https://imgur.com/a/DJbfSX0
 

JeckeL

Distinguished
Jul 19, 2009
743
26
19,165
First get the correct package name using this command and locating it in the list, then copy it without any extra spaces:

Get-AppxPackage -AllUsers | Select Name, PackageFullName

then plug it in here (where (package name) is the name from the list we got above):

Remove-AppxPackage -Package (package name) -AllUsers