0xC000003AApplicationMedium
Error 0xC000003A — STATUS_OBJECT_PATH_NOT_FOUND | Application Error Fix
Windows 10Windows 11Windows Server 2016Windows Server 2019Windows Server 2022
What Does 0xC000003A Mean?
The path to the object does not exist. One or more intermediate directories in the specified path could not be found.
Real-World Causes
- 1Parent directory was deleted, moved, or renamed
- 2Application references a drive letter that no longer exists
- 3Network path is unavailable due to disconnection
- 4Incorrect path in application configuration or registry
Symptoms
- ⚠Application fails to find required files or directories
- ⚠Error messages referencing a path that does not exist
- ⚠Shortcuts or file associations stop working
- ⚠Application installation fails during file creation
Ad Space – header
DIY Fix
Beginner-friendly steps you can try at home
- 1Verify the path exists in File Explorer and create missing directories if needed
- 2Check if a drive letter has changed (e.g., USB drive assigned a different letter)
- 3Update application settings to reflect the correct path
- 4Reconnect network drives if the path is on a network share
Advanced Fix
For experienced users and IT professionals
- 1Use Process Monitor to identify the exact path the application is trying to access
- 2Check registry keys for stale paths: search the registry for the old path
- 3Create a symbolic link from the old path to the new location: mklink /d <old-path> <new-path>
- 4For network paths, verify the share exists and is accessible: net use
Ad Space – after-fix
Frequently Asked Questions
How is this different from STATUS_OBJECT_NAME_NOT_FOUND?
STATUS_OBJECT_PATH_NOT_FOUND means an intermediate directory in the path does not exist (e.g., C:\Missing\file.txt where 'Missing' does not exist). STATUS_OBJECT_NAME_NOT_FOUND means the final file or object does not exist but the path to it is valid.
Can I create the missing path manually?
Sometimes yes. If the application expects a specific directory structure, creating the missing directories may resolve the error. However, if the application also expects specific files within those directories, a reinstall is more reliable.
Related Error Codes
About the Author
Windows Troubleshooting Team
Verified against official Microsoft documentation and real-world diagnostic data. Error behavior confirmed across Windows 10, Windows 11, and Windows Server.