0x80073CF1 error when Remove-AppxPackage in powershell

Xie Steven 791 Reputation points
2020-12-30T07:14:43.897+00:00

Hi,

I got the the error code 0x80073CF1 when I use Remove_AppxPackage -Package "xxxxx" to uninstall the app in powershell.

52108-screen-2.jpg

I check the docuemnt: troubleshooting. It shows:

The package couldn't be found.
You may get this error while removing a package that isn't installed for the current user.

Does it mean that I need to use Remove_AppxPackage -Package "xxxxx" -AllUsers command to uninstall the app?

Thanks,
Steven

Windows Server PowerShell
Windows Server PowerShell
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.PowerShell: A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
5,085 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Ian Xue (Shanghai Wicresoft Co., Ltd.) 22,191 Reputation points Microsoft Vendor
    2020-12-30T09:06:17.727+00:00

    Hi,

    The parameter -AllUsers removes the package for all user accounts on the computer and you need administrator permission to use it. You can run Get-AppxPackage -Name "xxxxx" -AllUsers to list the information about the package if it's installed.

    Best Regards,
    Ian Xue

    ============================================

    If the Answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments