Fixing the Microsoft Windows App Runtime DynamicDependency LifetimeManager Error
This guide will walk you through the steps to resolve the “Microsoft Windows App Runtime DynamicDependency LifetimeManager” error. You’ll learn how to run various system checks, reset Windows update components, and perform necessary command line operations to rectify this issue.
Step 1: Run System File Checker
Start by using the System File Checker to check for corruption in your system files. Open Command Prompt as an administrator and enter the following command:
sfc /scannow
This process will scan for issues and attempt to repair any corrupted files it finds.
Step 2: Use DISM Tool for Further Repairs
If the first step does not resolve the issue, use the Deployment Imaging Service and Management Tool (DISM) with the commands below:
DISM /Online /Cleanup-Image /CheckHealth
DISM /Online /Cleanup-Image /ScanHealth
DISM /Online /Cleanup-Image /RestoreHealth
Each command serves to identify and fix problems with the system image.
Step 3: Reset Windows Update Components
Next, reset the components related to Windows Update. Enter the following commands one by one in Command Prompt:
net stop bits
net stop wuauserv
net stop appidsvc
net stop cryptsvc
Following the stops, delete existing downloader files:
Del "%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\*.*"
Then remove the contents of the SoftwareDistribution folder:
rmdir %systemroot%\SoftwareDistribution /S /Q
And clear the catroot2 directory:
rmdir %systemroot%\system32\catroot2 /S /Q
After these deletions, you will need to reset the service descriptors:
sc.exe sdset bits D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)
sc.exe sdset wuauserv D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)
Finally, restart necessary services:
net start bits
net start wuauserv
net start appidsvc
net start cryptsvc
Step 4: Register DLL Files
Now register a set of DLL files that might be causing issues. Navigate to the System32 directory:
cd /d %windir%\system32
Then execute the following commands to register each DLL:
regsvr32.exe /s atl.dll
regsvr32.exe /s urlmon.dll
regsvr32.exe /s mshtml.dll
regsvr32.exe /s shdocvw.dll
regsvr32.exe /s browseui.dll
regsvr32.exe /s jscript.dll
regsvr32.exe /s vbscript.dll
regsvr32.exe /s scrrun.dll
regsvr32.exe /s msxml.dll
regsvr32.exe /s msxml3.dll
regsvr32.exe /s msxml6.dll
regsvr32.exe /s actxprxy.dll
regsvr32.exe /s softpub.dll
regsvr32.exe /s wintrust.dll
regsvr32.exe /s dssenh.dll
regsvr32.exe /s rsaenh.dll
regsvr32.exe /s gpkcsp.dll
regsvr32.exe /s sccbase.dll
regsvr32.exe /s slbcsp.dll
regsvr32.exe /s cryptdlg.dll
regsvr32.exe /s oleaut32.dll
regsvr32.exe /s ole32.dll
regsvr32.exe /s shell32.dll
regsvr32.exe /s initpki.dll
regsvr32.exe /s wuapi.dll
regsvr32.exe /s wuaueng.dll
regsvr32.exe /s wuaueng1.dll
regsvr32.exe /s wucltui.dll
regsvr32.exe /s wups.dll
regsvr32.exe /s wups2.dll
regsvr32.exe /s wuweb.dll
regsvr32.exe /s qmgr.dll
regsvr32.exe /s qmgrprxy.dll
regsvr32.exe /s wucltux.dll
regsvr32.exe /s muweb.dll
regsvr32.exe /s wuwebv.dll
Step 5: Reset Winsock
Finally, reset the Winsock catalog with the following commands:
netsh winsock reset
netsh winsock reset proxy
This action can help restore network functionality which may have been affected by the error.
Additional Tips & Common Issues
If you encounter any errors while executing the commands, ensure you are running the Command Prompt as an administrator. Also, consider rebooting your system after completing the steps for all changes to take effect.
Conclusion
By following this guide, you should be able to resolve the “Microsoft Windows App Runtime DynamicDependency LifetimeManager” error effectively. Regular maintenance of your Windows system can help prevent similar issues in the future. For further assistance, consider exploring additional troubleshooting guides related to Windows errors.
Frequently Asked Questions
What should I do if running sfc /scannow
doesn’t fix the issue?
You can use the DISM tool commands described in step 2 to further repair your system image. If the problem persists, consider reinstalling the problematic application.
Can I skip any of the steps?
It’s best to follow the steps in order, as each one addresses specific potential issues. Skipping steps might overlook critical fixes.
Is this guide applicable to Windows 11?
Yes, these steps are applicable to both Windows 10 and Windows 11. Just ensure your system is up-to-date for compatibility.