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

Home/Fix/Fix Error 0x80073D0E — Store App Package Dependency Missing

How to Fix Fix Error 0x80073D0E — Store App Package Dependency Missing on Windows

Getting error 0x80073D0E when installing Store apps? App package dependency not found? Required framework package missing? Store app dependency chain broken? UWP app prerequisite not installed? Fix this Store app dependency error.

Symptoms

You might be experiencing this problem if you notice:

  • Microsoft Store app installation fails with 0x80073D0E
  • Sideloaded app reports missing dependency package
  • App update fails because required framework is missing
  • Store shows "dependency package not found" error
  • PowerShell Add-AppxPackage fails with dependency error
  • Multiple Store apps fail to install simultaneously

Common Causes

  • Required .NET Native or VCLibs framework not installed
  • Framework package was removed or corrupted
  • App targets framework version not available for this Windows build
  • Sideloading without including dependency packages
  • Microsoft Store cache preventing dependency resolution
  • Windows component store missing framework components

Solutions

Solution 1: Install Missing Framework Packages

  1. 1Common missing frameworks for Store apps:
  2. 2Microsoft.NET.Native.Framework
  3. 3Microsoft.NET.Native.Runtime
  4. 4Microsoft.VCLibs (Visual C++ Libraries)
  5. 5Microsoft.UI.Xaml
  6. 6Install them from Microsoft Store:
  7. 7Search for "VCLibs" or ".NET Native" in Store
  8. 8Or install via PowerShell:
  9. 9For VCLibs: download from Microsoft:
  10. 10aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx
  11. 11Add-AppxPackage -Path "path\to\VCLibs.appx"
  12. 12Then retry installing the original app

Solution 2: Re-register and Reset Store

  1. 1Re-register all framework packages:
  2. 2PowerShell as Admin:
  3. 3Get-AppxPackage -AllUsers Microsoft.NET.Native.Framework.* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
  4. 4Get-AppxPackage -AllUsers Microsoft.VCLibs.* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
  5. 5Reset Microsoft Store:
  6. 6CMD as Admin: wsreset.exe
  7. 7Settings → Apps → Microsoft Store → Advanced → Reset
  8. 8Clear Store cache:
  9. 9Delete contents of:
  10. 10%LOCALAPPDATA%\Packages\Microsoft.WindowsStore_8wekyb3d8bbwe\LocalCache
  11. 11Retry app installation

Solution 3: Fix for Sideloaded Apps

  1. 1When sideloading, dependencies must be installed first:
  2. 2Check the app package for a Dependencies folder
  3. 3Install all .appx files in Dependencies before the main app:
  4. 4For each dependency:
  5. 5Add-AppxPackage -Path "Dependencies\x64\package.appx"
  6. 6Then install the main app:
  7. 7Add-AppxPackage -Path "MainApp.msix"
  8. 8If dependencies are not included:
  9. 9Check the app documentation for required frameworks
  10. 10Download them from Microsoft or NuGet
  11. 11For persistent issues:
  12. 12DISM /Online /Cleanup-Image /RestoreHealth
  13. 13sfc /scannow
  14. 14Update Windows to latest version
  15. 15This ensures all built-in frameworks are current
FIXES THIS IN 5 MINUTES

Fix Fix Error 0x80073D0E — Store App Package Dependency Missing 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