How to Fix Microsoft Store Error Code 0x80073D05 on Windows 11 (6 Easy Methods)

Opening the Microsoft Store to install or update an app and running straight into error code 0x80073D05 is genuinely confusing — the message gives you almost nothing to work with. No clear explanation, no suggested action, just a code and a dead end. If this is happening to you, the error almost always means Windows cannot properly deploy or register the app package because something in the Store’s local infrastructure is broken or out of sync.

Three root causes cover the overwhelming majority of 0x80073D05 cases: a corrupted Microsoft Store cache that contains conflicting package metadata, a partially installed or stuck app registration that Windows cannot overwrite without a reset, and Windows Update components that share infrastructure with the Store and have fallen out of sync after a cumulative update. None of these point to a hardware problem or a Microsoft account issue — the fix lives entirely within your Windows installation. This guide gives you six methods ordered from the fastest single-click solution to the more thorough PowerShell and reset approaches. Most users resolve this at Method 2 or Method 3, so work through them in sequence and you will have the Store functioning again within 15 minutes.

Technical Specifications

Technical DetailSpecification / Requirement
Target PlatformWindows 11 (Home, Pro, Enterprise)
Error Code0x80073D05
Error CategoryPackage deployment / app registration failure
Affected ComponentMicrosoft Store, Windows App Package Manager
Difficulty LevelBeginner to Intermediate
Estimated Fix Time5 – 20 minutes
Tools RequiredWSReset, PowerShell, Settings, Windows Update
Risk LevelLow (installed apps and personal data unaffected)
Applies ToAll Windows 11 builds with Microsoft Store

Method 1: Run WSReset to Clear the Store Cache

WSReset is Microsoft’s built-in Store cache clearing tool. It wipes the entire local cache that the Store uses to track package states, downloaded chunks, and installation metadata — all of which can become corrupted and trigger 0x80073D05 without any visible warning. This takes about 60 seconds and is always the right first step.

  1. Press Windows + R to open the Run dialog.
  2. Type wsreset.exe exactly and press Enter.
  3. A blank black Command Prompt window will appear — do not close it. This is normal behavior; WSReset runs silently in the background.
  4. Wait for the window to close on its own, which typically takes 30–60 seconds.
  5. The Microsoft Store will launch automatically once the reset is complete.
  6. Try installing or updating the app that was showing error 0x80073D05 and check if it proceeds.

If the Store opens but the error returns when you attempt the same download, the cache was not the only issue. Move to Method 2 — the underlying package registration needs attention.

Method 2: Use the Windows Store Apps Troubleshooter

Windows 11 includes a dedicated troubleshooter for Store app issues that goes beyond cache clearing — it inspects app registration entries, verifies package integrity hashes, and resets services the Store depends on. It catches a surprisingly wide range of 0x80073D05 triggers automatically.

  1. Press Windows + I to open Settings.
  2. Navigate to SystemTroubleshootOther troubleshooters.
  3. Scroll down to find Windows Store Apps in the list and click the Run button next to it.
  4. Wait while the troubleshooter scans — this typically takes 45–90 seconds.
  5. Read the result carefully. If it detects and fixes something, click Apply this fix when prompted.
  6. Restart your PC after the troubleshooter completes, even if it says no issues were found.
  7. Reopen the Microsoft Store and attempt the installation again.

The troubleshooter is particularly effective when 0x80073D05 appears after a Windows Update, since updates sometimes reset the app service configuration and the troubleshooter restores it automatically.

Method 3: Re-register All Microsoft Store Apps via PowerShell

When a specific app package gets stuck in a broken registration state, Windows cannot install over it or remove it cleanly — and that blockage causes 0x80073D05 for that app and sometimes others. Re-registering all Store app packages via PowerShell forces Windows to rebuild every package’s registration entry from scratch, clearing the stuck state in the process.

  1. Press Windows + S, type PowerShell, and right-click Windows PowerShell in the results.
  2. Select Run as administrator — this step will not work without elevated privileges.
  3. Click Yes on the UAC prompt.
  4. Carefully type or paste the following command and press Enter: Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
  5. Wait while PowerShell processes every installed Store app — you will see a stream of output lines. Some yellow warning messages are normal and can be ignored.
  6. Do not close the window until the command prompt (PS C:\>) reappears, confirming it has finished.
  7. Restart your PC and test the Microsoft Store again.

This command is the most targeted fix for 0x80073D05 because it directly addresses the deployment and registration layer where this error code originates. If this does not resolve it, the issue sits deeper in Windows Update components.

Method 4: Reset and Repair Microsoft Store Through App Settings

Windows 11 allows you to repair and reset individual apps directly from Settings without touching the rest of the system. Repairing the Store attempts to fix corrupted files while keeping your login and preferences intact. If repair alone does not work, resetting it wipes the Store back to a factory state — including its local data, login session, and all cached package information.

  1. Open Settings with Windows + I and go to AppsInstalled apps.
  2. Search for Microsoft Store in the search bar at the top of the app list.
  3. Click the three-dot menu (⋯) to the right of Microsoft Store and select Advanced options.
  4. Scroll down to the Reset section.
  5. Click Repair first and wait for it to complete — a checkmark will appear when done.
  6. Open the Store and test the failing installation. If error 0x80073D05 persists, return here.
  7. Click Reset (below the Repair button) and confirm by clicking Reset again in the popup.
  8. Reopen the Store, sign in to your Microsoft account again, and retry the installation.

Always try Repair before Reset. Repair is non-destructive and fixes file-level issues without clearing your account session, whereas Reset is a full wipe that requires signing back in and reconfiguring preferences.

Method 5: Reset Windows Update Components via Command Prompt

The Microsoft Store and Windows Update share significant infrastructure — the same service endpoints, the same local cache folders, and overlapping background services. When Windows Update components become corrupted, they can break Store package deployment and produce error 0x80073D05. Resetting these components manually stops and restarts all related services and renames the corrupted cache folders so Windows rebuilds them cleanly.

  1. Press Windows + S, type cmd, right-click Command Prompt, and select Run as administrator.
  2. Run each of the following commands one at a time, pressing Enter after each: net stop wuauserv net stop cryptSvc net stop bits net stop msiserver
  3. Now rename the corrupted cache folders by running: ren C:\Windows\SoftwareDistribution SoftwareDistribution.old ren C:\Windows\System32\catroot2 catroot2.old
  4. Restart all services by running: net start wuauserv net start cryptSvc net start bits net start msiserver
  5. Close Command Prompt and restart your PC.
  6. Open the Microsoft Store and attempt the installation again.

The renamed .old folders are safe to leave in place — Windows creates fresh replacements automatically. After confirming the Store works correctly for a week, you can delete the .old folders to reclaim disk space.

Method 6: Re-register the Microsoft Store Package Directly via PowerShell

If all previous methods have been applied and 0x80073D05 still appears for a specific app or for the Store itself, re-registering the Store as a standalone package is the most direct remaining fix. This is different from Method 3 — it targets the Store’s own package specifically rather than all apps.

  1. Open PowerShell as administrator using the same steps as Method 3.
  2. Paste the following command and press Enter: Get-AppxPackage -allusers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
  3. Wait for the command to complete — it processes only the Store package, so it runs much faster than Method 3.
  4. Close PowerShell and restart your PC.
  5. After restarting, open the Microsoft Store and sign in if prompted.
  6. Navigate to the app that was showing 0x80073D05 and attempt the installation.

If the Store itself opens successfully but a specific third-party app still fails with 0x80073D05, the problem may be with that app’s own package on Microsoft’s servers. Wait 24 hours and retry — publisher-side deployment issues are temporary and resolve without any action on your end.

Frequently Asked Questions

Does error 0x80073D05 mean the app is permanently broken or unavailable?

Not at all. Error 0x80073D05 is a local deployment failure, meaning Windows cannot properly register or install the package on your specific machine at that moment. The app itself and Microsoft’s servers are almost always fine. The error lives entirely within your Windows installation’s package management layer, which is exactly why the WSReset, re-registration, and Windows Update component reset methods above resolve it — they fix the local infrastructure without any involvement from the app’s publisher or Microsoft’s distribution servers.

Why does 0x80073D05 appear after a Windows Update on my PC?

Windows cumulative updates occasionally modify the App Package Manager services, the Store’s local cache structure, or the service accounts that manage app installation. When these components are modified mid-session or the update installs incompletely, the Store loses its reference points for package deployment and throws 0x80073D05 on the next attempt. Method 5, which resets all Windows Update components and renames the SoftwareDistribution cache folder, directly addresses this scenario because it forces Windows to rebuild those modified components from scratch using fresh data from Microsoft’s servers.

The Microsoft Store shows 0x80073D05 only for one specific app — why would a single app trigger this?

A single-app failure usually means that specific app’s local package registration entry is corrupted or stuck in a pending state from a previous failed installation attempt. Windows cannot overwrite a stuck registration without clearing it first. The most targeted fix for this is the PowerShell re-registration in Method 3, which rebuilds the registration entry for all apps including the stuck one. If that does not clear it, open PowerShell as administrator and run Get-AppxPackage *AppName* | Remove-AppxPackage (replacing AppName with the app’s actual name) to fully remove the broken package entry, then reinstall it fresh from the Store.

Leave a Comment