0X000008E4

Fix 0X000008E4 NERR_AlreadyExists: Alias Conflict

This Windows error means a message alias already exists on your system. We'll show you how to find and remove the duplicate, plus fix underlying causes.

I know this error is infuriating. You're trying to map a network drive or run a command, and Windows throws 0X000008E4 at you: This message alias already exists NERR_AlreadyExists locally. It feels like the computer is speaking a different language. But I've seen this plenty, and the fix is usually straightforward. Let me walk you through the most common causes first, then the deeper ones.

Cause 1: A Duplicate Alias Is Already in Use

The most common trigger is when you (or another app) have already created a network name, share, or alias that matches what you're trying to add. This happens a lot after a disconnected session or a script that runs twice. Windows remembers the old alias even if the connection seems gone.

The fix: Find and remove the existing alias before retrying.

  1. Open Command Prompt as Administrator (type cmd in Start, right-click, Run as administrator).
  2. Run this to list all current network names:
net name

Look for the alias you're trying to create. If it's there, delete it:

net name <alias> /delete

For example, if you were trying to add PRINTSERVER as a name, you'd run net name PRINTSERVER /delete. Then try your original command again. This clears the collision about 80% of the time.

If net name shows nothing, the alias might be hidden in the registry—especially if you've had a service create it. Skip to the registry check in Cause 2 if needed, but try the easy way first.

Cause 2: Stale Registry Entries from Old Sessions

Sometimes the alias lingers in the Windows registry even after you've deleted it via net name. This is more common on servers or after a crash. The registry keeps a list of aliases under the Server service.

The fix: Clean out the relevant registry key.

Before you touch the registry, back it up. Open regedit, go to File > Export, and save a copy. Then locate this key:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters

Look for a value named Aliases or NullSessionPipes that might contain your alias. Right-click the value, select Modify, and remove the offending entry from the list. If you see a multi-string value, delete just the line with the alias, not the whole value. Then reboot and try again.

I've also seen this error when multiple services try to register the same NetBIOS name. Check the System event log for entries mentioning "duplicate name" or "NetBT" around the time of the error. That'll point you to the service responsible. In one case, a third-party backup agent was registering the same alias as our file server—removing the agent fixed it.

Cause 3: NetBIOS Name Conflict on the Network

Less common but real: another machine on your network is using the same NetBIOS name. Windows is trying to register the alias, but the network says it's taken. This happens when two computers have the same computer name or when a workgroup name clashes with a share name.

The fix: Check your computer's name and the network for duplicates.

  1. Run ipconfig /all and note your hostname.
  2. Run nbtstat -n to see what names your machine is trying to register.
  3. If you see a duplicate, run nbtstat -a <IP> on that IP to see who owns the name.

If another machine has the same name, rename yours: System Properties (right-click This PC > Properties) > Rename this PC. Also check your workgroup name—it shouldn't match any share or alias. I once saw a client who had named a share WORKGROUP, and it broke every connection on the network. So avoid using generic names like that.

If you're in a domain environment, check DNS for stale records. A dead machine can still hold a name registration. Use nslookup to verify and remove old records via your DNS console.

Quick Reference Summary

SymptomCauseFix
Alias already exists locallyDuplicate alias from old sessionRun net name and delete the alias
Error persists after deletionStale registry entryEdit LanmanServer\Parameters and remove alias
Network-wide conflictsNetBIOS name collisionRename PC or fix DNS records

That's the whole deal. Run through these in order, and you'll be back online in minutes. The first fix handles most cases, but if you're still stuck, the registry cleanup is your best bet. And if nothing works, check for third-party network tools that might grab aliases—they're sneaky.

Related Errors in Windows Errors
0XC0140020 Fix ACPI event registration error 0XC0140020 in Windows 0XC00D0BD6 Fix NS_E_ATTRIBUTE_READ_ONLY (0xC00D0BD6) in Windows Media Player 0X8032000A FWP_E_IN_USE (0X8032000A): Fix "Object Referenced" Error Now 0X00002032 Fix ERROR_DS_INVALID_DN_SYNTAX (0x00002032) Fast

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.