Solve Windows 10 does not automount USB Drives anymore

My Windows 10 machine started behaving weirdly and did not mount any USB Drives / Harddrives and such anymore. I had to open the Disk Management Tool and mount them manually, which is quite inconvenient. So I was looking up the error and came across the nearly perfect solution at http://woshub.com/windows-doesnt-assign-letters-to-external-and-usb-flash-drives/ . However, I did change it a bit so that the VDS is changed to automatically start on boot via the CLI :).

Oh, and yes, you need to do this from an admin cmd 😉

First thing to check if something is wrong, is if your VDS (Virtual Disk Service) works. If not, set it to start on boot and start the service:

sc query vds
sc config vds start= auto
sc start vds
sc query vds

If automounting still not works, it could be deactivated. Start diskpart, watch the status of automount and if it is disabled, activate it.

diskpart
DISKPART> automount
DISKPART> automount enable
DISKPART> exit

Now everything should be working fine again 🙂

3 thoughts on “Solve Windows 10 does not automount USB Drives anymore

  1. What interests me is why the hell does this change on it's own. Must be another bug in windows update I suppose. Get a bit sick of it.

  2. Yeah, I am pretty sure that an faulty update should be reason 1 that some setting like this changes "on its own". For a malware, this would be counterproductive, most malware would be more inclined to enable autoplay and such. But nevertheless its quite odd that Microsofts Updates in the past year, or the Windows 10 periode hvave been a tiny bit on the edgy side :/

  3. Actually, for me it's still not working. Did this and much more and the disc is still not automatically assigning a letter to my external drives.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.