Application Was Unable to Start Correctly 0xc0000005 Error
So I was trying to open an app and got hit with this:
“The application was unable to start correctly (0xc0000005). Click OK to close the application.”
Happened out of nowhere. No recent installs, no Windows updates that I noticed. The app had been working fine for months.
Spent a few hours tracking down what actually fixed it. Posting everything I tried in case someone else is dealing with this.
What 0xc0000005 actually means
It’s an access violation error. Basically, the application tried to access a memory address it didn’t have permission to access. Could be caused by corrupt system files, a bad DLL, RAM issues, antivirus interference, or a damaged app installation.
What fixed it for me: Run as Administrator
Right-click the app > “Run as administrator.” Worked immediately. Sometimes the app needs elevated permissions to access certain memory regions and Windows 10/11 blocks it by default.
If this works, you can make it permanent: right-click the .exe > Properties > Compatibility tab > check “Run this program as an administrator.”
Other fixes worth trying
Reinstall the app
Uninstall completely, download fresh, reinstall. Fixes corrupted installation files that can trigger this.
Run SFC scan
Open Command Prompt as Administrator and run:
sfc /scannow
This scans and repairs corrupted Windows system files. Takes about 10-15 minutes. Restart after.
Run DISM
If SFC doesn’t fix it:
DISM /Online /Cleanup-Image /RestoreHealth
Repairs the Windows image itself. Run SFC again after DISM completes.
Disable antivirus temporarily
Some antivirus software blocks memory access for certain apps. Temporarily disable it and try launching. If it works, add the app to your antivirus exclusions.
Check RAM
If this error hits multiple apps, RAM could be the issue. Run Windows Memory Diagnostic: press Win+R, type mdsched.exe, restart. It’ll test your RAM on the next boot.
Run as admin was the fix for me. What app are you seeing this on?