Volume Mount Point Unavailable: The Real Fix for Missing Drives

Hardware – Hard Drives Intermediate 👁 14 views 📅 Jun 15, 2026

When you plug in a drive but the mount point folder shows empty, here's the exact fix — no rebooting or driver hunts needed.

You plug in an external drive or connect a second internal disk. You go to D:\Data or E:\Projects or whatever folder you assigned as the mount point. The folder is there — but it's empty. No error message, no drive letter. Just a folder that acts like a regular directory. This happens most often after a Windows update, a disk check (chkdsk), or when you reconnect a drive that was in a Storage Spaces pool. The volume is still alive in Disk Management, but Windows forgot the mount point path.

Why It Happens

The mount point is stored in the registry under HKLM\SYSTEM\MountedDevices. When Windows assigns a drive letter, it writes a binary value there. For a mount point (folder), it writes a different binary structure pointing to the NTFS volume GUID. If that entry gets corrupted, deleted during a disk check, or overwritten by a Storage Spaces reconfiguration, the folder becomes just a folder. The volume still has data. It's not dead. Windows just lost the directions.

I've seen this on Windows 10 22H2 and Windows 11 23H2 after a forced chkdsk on a USB drive. Also after moving a drive from one Storage Spaces pool to another. The mount point path in the registry gets orphaned. The fix is to delete the orphaned entry and re-assign the mount point through Disk Management.

Step-by-Step Fix

You'll need a spare drive letter for a few minutes. Pick one that isn't used — say X: or Z:.

  1. Open Disk Management. Press Win + X, select Disk Management. Wait for the list to populate. Look for your missing drive. It shows as Healthy but with no drive letter or mount point. You'll see it listed as a volume with no path under the Volume column.
  2. Assign a temporary drive letter. Right-click the volume that's missing the mount point. Choose "Change Drive Letter and Paths...". Click "Add". Select "Assign the following drive letter:" from the dropdown. Pick something temporary like Z: (I use Z: because it's far from other letters). Click OK. After a few seconds, that drive should show up with the Z: letter in File Explorer. Check it — your data should be there. This proves the volume is fine.
  3. Remove the orphaned mount point entry. Now right-click the same volume again. Choose "Change Drive Letter and Paths...". You'll see the Z: entry. Also you might see a second entry that's grayed out or shows a folder path with no icon. That's the orphan. Select it and click "Remove". Confirm yes. (If you only see the Z: entry, that means the previous mount point was already deleted from the registry — skip this step.)
  4. Add back the mount point folder. Still in the same dialog, click "Add". This time select "Mount in the following empty NTFS folder:". Click "Browse". Navigate to the folder you originally used — for example D:\Data. Select it and click OK. Windows will tell you the folder is empty and ask if you want to proceed — click Yes. You should see the folder path appear in the list next to the Z: entry.
  5. Remove the temporary drive letter. Select the Z: entry (or whatever you used). Click "Remove". Confirm yes. Now only the mount point folder entry remains. Click OK to close.
  6. Verify. Open File Explorer. Go to that folder. The drive contents should appear instantly. No reboot required. The mount point is back.

What to Check If It Still Fails

If the folder doesn't populate after step 5, here's the shortlist:

  • Folder is not empty. The mount point requires an empty NTFS folder. If that folder has any files or subfolders in it, Windows will refuse to mount there. Open the folder in File Explorer and delete everything. Then try step 4 again. (I keep a backup of the folder contents before doing this.)
  • Drive isn't NTFS. Mount points only work on NTFS volumes. If the drive is FAT32 or exFAT, you're stuck using drive letters. Convert it to NTFS or just use a letter.
  • Corrupted registry entry won't delete. Rare, but sometimes the orphaned mount point won't remove via Disk Management. You'll get an error like "The parameter is incorrect." In that case, open Regedit as admin. Go to HKLM\SYSTEM\MountedDevices. Look for a binary value named like \??\Volume{GUID} with data starting with 00 00 00 00. Back up that key first (right-click, Export). Then delete that specific value. Close Regedit, go back to Disk Management, and try step 3 again.
  • Drive is offline. In Disk Management, if the disk shows "Offline" or "Not Initialized", right-click the disk label (the left side) and click Online. Then try again. This is more common on external USB drives that got disconnected dirty.

That's it. Most of the time, step 1 through 5 takes five minutes and the mount point's back. The trick is not wasting time on driver updates or hardware checks — the drive was always fine. Windows just needed a reminder of where to point it.

Was this solution helpful?