0X00000A67

Fix printer error 0X00000A67 – DFS name conflict

Hardware – Printers Intermediate 👁 1 views 📅 May 27, 2026

This error means Windows already knows a network path by that DFS name. The fix is to delete the stale DFS link or rename the printer share.

You clicked install and got error 0X00000A67

I know that feeling. You're setting up a network printer, everything looks right, and then Windows throws you a cryptic code. The exact error is 0X00000A67 with the message "NERR_DfsVolumeAlreadyExists". It basically says: "Hey, I already know a network location by that name."

The fix is simpler than the error sounds. Let me walk you through it.

First thing – delete the stale DFS link

Open a command prompt as Administrator. Right-click Start, choose "Command Prompt (Admin)" or "Windows Terminal (Admin)".

Type this command and press Enter:

dfsutil root remove \\YourServerName\YourShareName

Replace YourServerName with the actual server name and YourShareName with the exact path you're trying to use for the printer. For example:

dfsutil root remove \\printserver1\HPLaserJet

After you run it, you should see something like "Removed DFS root successfully." If you get an access denied error, you don't have permissions on that server. You'll need domain admin rights to remove a DFS root.

Now try adding the printer again through Windows. Go to Settings > Bluetooth & devices > Printers & scanners > Add device. Pick the same network path. It should work this time.

Why this error happens

Windows keeps a local cache of DFS (Distributed File System) links. These are network shortcuts that point to shared folders. When you install a printer via a UNC path like \\server\share, Windows checks if that path is already registered as a DFS link.

If someone previously set up a DFS link with the exact same name (maybe for a different folder or a printer that was removed incorrectly), Windows says "Nope, that name's taken." The error code 0X00000A67 is just the official ID for that conflict.

The real cause is almost always a leftover DFS entry. It could be from a previous printer install that didn't clean up, or an admin who created a DFS namespace pointing to a folder that no longer exists.

What if dfsutil doesn't work?

Sometimes you don't have the dfsutil tool installed. It's part of the DFS Management Tools feature. Here's how to add it:

  1. Open Control Panel > Programs > Turn Windows features on or off.
  2. Expand Remote Server Administration Tools > Role Administration Tools > File Services Tools.
  3. Check DFS Management Tools.
  4. Click OK and wait for the install to finish.
  5. Restart your command prompt and try dfsutil again.

If you can't install tools, there's another way. Rename the printer share on the server side. On the print server (the computer the printer is connected to):

  1. Open Print Management (type printmanagement.msc in Run).
  2. Find the printer in the list.
  3. Right-click it and choose Printer Properties.
  4. Go to the Sharing tab.
  5. Change the share name to something new, like adding "-v2" at the end.
  6. Click Apply. Then try installing from the client machine using the new share name.

Less common variations of this issue

I've seen this error show up in a few other scenarios:

  • DFS namespace with a folder: If a DFS link was created for a folder that had the same name as your printer share, the error triggers. Check your DFS management console and delete any stale links.
  • Domain rename or migration: After migrating a print server to a new domain, leftover DFS links from the old domain can cause this. Use dfsutil /purgemupcache on the client to clear the local DFS cache.
  • Reinstall of the same printer: If someone removed the printer but the DFS link stayed, you'll see this. The dfsutil remove command above still works.
  • Windows 11 vs Server 2022: The error behaves the same across both. But on Server 2022, you might also need to check the DFS Namespaces role under Server Manager.

How to prevent this from happening again

Three things I recommend to every team:

  1. Always remove printers properly. Don't just delete the printer object from the server. Uninstall it from the client too, and if it was set up as a DFS link, remove that link cleanly through DFS Management.
  2. Use unique share names. Avoid generic names like "printer" or "HP". Include a version or date: HPLaserJet-2024. Makes conflicts way less likely.
  3. Monitor your DFS namespace. Run dfsutil root list once a month to see what's there. Delete anything that doesn't match a current shared folder or printer.

That's the whole fix. It's a 30-second command once you know what to look for. You won't see error 0X00000A67 again after you clean up that stale DFS link.

Was this solution helpful?