June 26th, 2019

Why does Windows list my SSD system drive as removable?

This has probably happened to you. You right-click the Safely remove hardware and eject media icon, and among the removable devices is your primary hard drive! Surely you can’t eject your primary hard drive. Why is this on the list?

Because the device driver reported that the device was removable.

Explorer doesn’t try to second-guess the device driver. If the device driver says that the drive is removable, then it’s removable.

One of my colleagues reports that whenever he runs into this problem, he installs Intel Rapid Storage Technology, which includes the drivers that fix the problem.

Author

Raymond has been involved in the evolution of Windows for more than 30 years. In 2003, he began a Web site known as The Old New Thing which has grown in popularity far beyond his wildest imagination, a development which still gives him the heebie-jeebies. The Web site spawned a book, coincidentally also titled The Old New Thing (Addison Wesley 2007). He occasionally appears on the Windows Dev Docs Twitter account to tell stories which convey no useful information.

8 comments

Discussion is closed. Login to edit/delete existing comments.

  • Mystery Man

    How funny that I must experience this problem a few days after your write about it, on a system that has never had such a problem in the past. Of course, the disk in question is an ordinary HDD, not a SSD.
    And what I did? I replaced a faulty graphic card.

  • David Walker

    “You can unplug a hard-drive’s SATA connector, or plug in a new drive, and it will be recognized and immediately start working.”  Well, I doubt anything will be recognized if the drive you unplug is the system (or maybe the boot) drive.  I don’t think Windows would like that.  

  • Gunnar Dalsnes

    could it not have been a selection in windows itself? because the user know better than the driver ( how is the driver supposed to know about my workflow, what drives are external or not etc)

  • Jan RingoÅ¡

    I have two identical SATA adapters in my poor man’s NAS. One reports drives as removable, the other does not. I did not manage to figure out why. I stopped to bother but still I’m kinda nervous that I’ll click it unintentionally as the drives are in RAID5 (the software one in Windows Server) and take three weeks to resync.

  • Thomas McCorkell

    I did once manage to remove the boot drive, way back in the Windows 2000 days. I think I managed this by upgrading the chipset drivers (this would have been on a VIA KT133A/686B motherboard - I was probably trying to fix the delete-my-registry-on-shutdown bug that chipset had) and that happened to remove the IDE controller driver from Windows, as well as all the drives attached to it.
    I was quite surprised at how much...

    Read more
    • Brant Gurganus

      This sounds very similar to when I ran a virtual machine pointed at the host machine’s hard drive. It worked surprisingly well until I tried to reboot the host machine. Massive filesystem corruption. I don’t think I’ve seen a more recent virtualization or emulation tool let you even try that.

  • Ian Boyd

    If your system has AHCI enabled (in the BIOS and the storahci driver runs at system startup), one of the features it provides in hot-swapping of drives. You can unplug a hard-drive's SATA connector, or plug in a new drive, and it will be recognized and immediately start working. Because the system supports removing and inserting hard drives, the drives are (by definition) removable.
    You can make the drives no longer "removable" by disabling AHCI...

    Read more
    • Ian Kemp

      Wrong. AHCI is a prerequisite for allowing SATA's hotswap functionality to be exposed; once AHCI is enabled, it is then possible to toggle hotswap for specific port(s) on the storage controller. This may seem like a pedantic distinction, but it's an important one, because it means that having AHCI enabled does not automatically mean hotwap is enabled.
      The early implementations of AHCI - UEFI and drivers - didn't make this distinction, thus leading to the...

      Read more