Are you encountering error code 0x80073CFA when trying to uninstall or reset Microsoft Store apps in Windows 10? This issue prevents apps from being removed or reinstalled, often displaying errors about missing dependencies or remediation requirements. Here’s how to fix it:
1. Run Windows Store Apps Troubleshooter
Windows has a built-in troubleshooter that can fix common Microsoft Store issues:
– Open Settings > Update & Security > Troubleshoot.
– Click on Additional troubleshooters.
– Select Windows Store Apps and run the troubleshooter.
2. Reset Microsoft Store Cache
Corrupted cache files can cause app installation and uninstallation errors. To reset the cache:
– Press Windows + R and type WSReset.exe
, then press Enter.
– Wait for the process to complete, then restart your computer.
3. Repair Windows App Dependency Issues
Error code 0x80073CFA is sometimes related to missing dependencies. Try reinstalling the Windows App SDK:
– Visit the official Microsoft GitHub discussion to check for updates on this issue.
– If available, download and install the latest Windows App SDK version.
4. Use PowerShell to Force Uninstall the App
If the app cannot be removed through Settings, use PowerShell:
– Right-click the Start button and select Windows Terminal (Admin).
– Run the following command:
Get-AppxPackage *app_name* | Remove-AppxPackage
(Replace app_name
with the exact package name of the app.)
5. Reset Windows Update Components
If the issue persists, resetting Windows Update and app services may help:
– Open Command Prompt as Administrator and run these commands:
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:WindowsSoftwareDistribution SoftwareDistribution.old
ren C:WindowsSystem32catroot2 catroot2.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
After running these steps, restart your PC and try uninstalling or reinstalling the app again.
For more “Windows 10” solutions, please check our Windows 10.
Leave a Reply