🚀 NEW in v2.4.29: 35+ Speed Optimizations added today!Download Now →

Home/Fix/Fix Error 0x80073D0C — Store App Package Already Exists

How to Fix Fix Error 0x80073D0C — Store App Package Already Exists on Windows

Getting error 0x80073D0C when installing Store apps? App package already exists? Can't reinstall an app that was removed? Store app installation blocked by existing package? Duplicate package registration error? Fix this Store app package exists error.

Symptoms

You might be experiencing this problem if you notice:

  • Microsoft Store reports package already exists during install
  • App reinstallation fails with 0x80073D0C
  • Sideloading an app returns duplicate package error
  • PowerShell Add-AppxPackage fails with this code
  • App was uninstalled but Store thinks it's still installed
  • Update fails because older version is still registered

Common Causes

  • Previous app installation not fully removed from registry
  • App package registered for another user on the same PC
  • Corrupted app package database
  • Partial uninstall left package registration behind
  • App provisioned for all users but removed only for current user
  • Windows component store has stale package entries

Solutions

Solution 1: Remove Existing Package Registration

  1. 1Find the existing package:
  2. 2PowerShell as Admin:
  3. 3Get-AppxPackage -AllUsers *appname*
  4. 4Note the full PackageFullName
  5. 5Remove for all users:
  6. 6Remove-AppxPackage -Package "PackageFullName" -AllUsers
  7. 7If that fails with access denied:
  8. 8Remove-AppxPackage -Package "PackageFullName" -AllUsers -ForceApplicationShutdown
  9. 9Also remove provisioned package:
  10. 10Get-AppxProvisionedPackage -Online | Where-Object {$_.DisplayName -match "appname"}
  11. 11Remove-AppxProvisionedPackage -Online -PackageName "name"
  12. 12After removal: retry installation from Store

Solution 2: Reset App Package Database

  1. 1If individual removal fails:
  2. 2Reset the Windows Store cache:
  3. 3CMD as Admin: wsreset.exe
  4. 4Wait for Store to open (may take 30+ seconds)
  5. 5Reset Microsoft Store app itself:
  6. 6Settings → Apps → Installed apps → Microsoft Store
  7. 7⋯ → Advanced options → Reset
  8. 8Re-register all Store apps:
  9. 9PowerShell as Admin:
  10. 10Get-AppxPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" -ErrorAction SilentlyContinue}
  11. 11This re-registers all packages without removing data
  12. 12Retry the specific app installation

Solution 3: Clean Package Registration via DISM

  1. 1For deep package registration issues:
  2. 2Check provisioned packages:
  3. 3DISM /Online /Get-ProvisionedAppxPackages | findstr /i "appname"
  4. 4Remove if found:
  5. 5DISM /Online /Remove-ProvisionedAppxPackage /PackageName:"full.package.name"
  6. 6Clean component store:
  7. 7DISM /Online /Cleanup-Image /StartComponentCleanup
  8. 8sfc /scannow
  9. 9Restart PC and retry installation
  10. 10Nuclear option — reset Store completely:
  11. 11PowerShell as Admin:
  12. 12Get-AppxPackage Microsoft.WindowsStore | Remove-AppxPackage
  13. 13Then reinstall Store:
  14. 14Get-AppxPackage -AllUsers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
  15. 15Open Store and install the app fresh
FIXES THIS IN 5 MINUTES

Fix Fix Error 0x80073D0C — Store App Package Already Exists Automatically

RescuePC Toolkit includes 109+ automated repairs that fix this problem with one click. No command line knowledge required.

Download Now - Free Trial

No credit card required • Works on Windows 10 & 11

Automated Repairs for This Issue

Browse More Update & Installation Guides

Share this:XRedditLinkedInEmail