The Error: You Can't Connect, and Windows Won't Let Go
You try to map a network drive, or access a shared folder, and boom — error 0x000004C3 pops up. The message says something about a session credential conflict. It's frustrating because you know you typed the right password. Maybe you changed your domain password recently, or you're trying to connect to a server that you already accessed with different credentials.
Here's the quick fix. It takes about two minutes.
Step-by-Step Fix: Clear Stale Credentials
- Open Command Prompt as Administrator. Click Start, type
cmd, right-click Command Prompt, choose "Run as administrator". Click Yes if UAC asks. - List all current network connections. Type this command and hit Enter:
You'll see a list of mapped drives and connections. Look for any that show status "Unavailable" or "Disconnected". The conflict happens when a stale connection is still hanging around.net use - Delete all stale connections. Type this and press Enter:
The asterisk means delete all mapped drives. Thenet use * /delete /y/ytells Windows to stop asking for confirmation. After it runs, you should see a message like "You have these remote connections: ... Continuing will cancel your connections." Then each drive listed gets deleted. - Open Credential Manager. Hit Windows key, type
credential manager, click the result that says "Credential Manager" (it's in Control Panel). - Click Windows Credentials. You'll see a list of saved login info — server addresses, IPs, user names.
- Find and remove any entries for the server or IP you're trying to reach. Look for anything like
\server_name,\IP_address, orMicrosoftAccount:user@server. Click the arrow to expand the entry, then click "Remove". Confirm the prompt. - Restart your computer. This forces Windows to release any lingering sessions. I know — you don't want to reboot. But it's the only way to guarantee you kill the existing session.
- Map the drive fresh. Open File Explorer, right-click "This PC", choose "Map network drive". Pick a drive letter, type the full path (like
\server\share), check "Connect using different credentials", click Finish. Enter your current username and password. Check "Remember my credentials" if you want.
Why This Works
Error 0x000004C3 means Windows tried to connect to a network share using cached credentials that don't match what the server expects. The most common trigger: you changed your Windows password (or your network password expired), but the old credentials are still stored in Credential Manager. When you try to reconnect, Windows sends the old password, the server says "nope, conflict", and you get the error.
The net use command clears the active session mapping. Credential Manager removes the saved passwords. The reboot kills any open TCP sessions that might hold the old authentication token. When you map fresh with the right credentials, it works.
Variations of the Same Issue
You're Connecting to a Different Domain
If you move between domains (say your laptop is domain-joined to DomainA but you need to access a share on DomainB), you might get this error. Windows wants to use your current domain credentials, but the target server expects a different account. The fix is the same: clear everything, then use net use \server\share /user:DomainB\username in Command Prompt. You'll be prompted for the password. This forces Windows to use exactly the credentials you specify.
VPN Disconnects and Reconnects
Some users hit this after a VPN drops and reconnects. Your network path changes, but Windows keeps the old session open. The error shows up when you try to access a share over the VPN. Solution: disconnect the VPN, run net use * /delete /y, reconnect VPN, remap drive.
Windows 11 Specific Quirks
Windows 11 seems to cache credentials more aggressively. I've seen this happen even when you haven't changed anything — just a random network hiccup. If the reboot doesn't fix it, try this: open Services (services.msc), find "Workstation" service, right-click, Restart. Then restart "Server" service. This flushes the SMB cache without a full reboot. Then remap as above.
How to Prevent It from Coming Back
- Don't use the "Remember my credentials" checkbox unless you're 100% sure the password won't change. It saves the password in Credential Manager, which is exactly where stale credentials hide. Use it only for shares that use the same password as your current Windows login.
- Change your domain password from a domain-joined machine, not a workgroup machine. If you change your password from a machine that's not on the domain, the cache on the domain controller may not sync properly. Then you get credential conflicts on shares.
- Log off and back on after changing your password. This forces Windows to refresh the cached credentials everywhere. I've seen people skip this and wonder why their mapped drives break.
- If you use VPN, disconnect and reconnect before mapping drives. Mapping drives while the VPN is still connecting is a recipe for stale sessions.
That's it. You should be back in business. If the error still shows up after all these steps, you might have a permissions issue on the server side — check with your network admin that your account has access to the share. But nine times out of ten, it's a stale credential problem, and this kills it.