How to Fix ERROR_OBJECT_NAME_EXISTS in Windows
Check if you already created an object with that name
3 min. read
Updated on
Read our disclosure page to find out how can you help Windows Report sustain the editorial team. Read more
The ERROR_OBJECT_NAME_EXISTS (698 / 0x2BA) occurs when a process attempts to create an object (like a file, folder, or system resource) that already exists. This error is common in file management, system services, and application installations.
How do I fix ERROR_OBJECT_NAME_EXISTS?
1. Check if the object already exists
For files & folders:
- Open File Explorer (Win + E).
- Navigate to the directory where you’re trying to create the object.
- Look for a file or folder with the same name.
- If it exists, rename or delete it and retry the operation.
For Registry entries:
- Press Win + R, type regedit, and press Enter.
- Navigate to the relevant registry path.
- If an entry with the same name exists, delete or modify it carefully.
If you are trying to create a file, folder, or registry entry, check if it’s already present.
2. Run the application or command as administrator
- Right-click the application or command you’re using.
- Select Run as administrator.
- Check if the issue persists.
Lack of permissions may cause Windows to incorrectly report the object as existing.
3. Check for stuck or ghost processes
Using Task Manager:
- Press Ctrl + Shift + Esc to open Task Manager.
- Look for processes related to the program you are running.
- Select them and click End Task.
- Retry the operation.
Using Command Prompt:
- Open Command Prompt (Admin) (Win + X > Command Prompt (Admin)).
- Type:
tasklist | findstr "YourProgramName"
- If the process is listed, type:
taskkill /F /IM YourProgram.exe
- Retry your operation.
If a process is using the object name in memory, you may need to close it.
4. Clear the temporary files and cache
- Press Win + R, type %temp%, and press Enter.
- Select all files and delete them.
- Empty the Recycle Bin and restart your PC.
5. Perform SFC & DISM scans
- Open Command Prompt (Admin).
- Run:
sfc /scannow
- Wait for the scan to complete. If issues are found, restart your PC.
- If the error persists, run:
DISM /Online /Cleanup-Image /RestoreHealth
- Restart your PC and try again.
6. Create the object with a different name
If a file, folder, or registry key already exists, try using a slightly different name.
For example:
- Instead of NewFile.txt, use NewFile_01.txt.
- Instead of MyKey, use MyKey_New.
If renaming works, it confirms the name conflict was the issue.
The ERROR_OBJECT_NAME_EXISTS (698 / 0x2BA) is usually caused by duplicate object names, permission issues, or software conflicts. By following these steps, you should be able to resolve it efficiently.
Before leaving, don’t miss our latest guide on ERROR_ORPHAN_NAME_EXHAUSTED for more information.
User forum
0 messages