3

Where is it written that my hard disk is SSD or HDD?

I have tried searching:

  • msinfo32
  • Device Manager
  • Disk Management

I need to to see the words solid state drive or hard disk drive in Windows 7.

It may be either through CLI or GUI.

I found the same information for Windows 8 here.

Right-click on C drive-> Properties-> Tools-> Optimize/Defragment now -> Here you should disk listed with its media type.

karel
  • 13,706

3 Answers3

3
  1. Find the drive in Device Manager (devmgmt.msc).
  2. Look up the model number in Google.

Example:

enter image description here

KINGSTON SH103S3120G - Kingston 120 GB SSD

ST1000LM014-1EJ164-SSHD - Seagate 1 TB SSHD


So far, every search I've done to find a proper solution for this seems to indicate that one doesn't exist. Every Windows 7 solution I've found has been either a hack based on finding some string like "SSD" in the model number (which is horribly unreliable, as demonstrated by my Kingston above) or testing read/write performance and comparing it against some threshold.

The fact of the matter is, the OS really has little reason to actually care what type of physical media resides within the hard drive. All the physical reading and writing is done by the hard drive controller, which translates the (generally media-agnostic) commands given to it from the OS via its drivers. Effectively, the OS only needs to worry about declaring what data it needs read/written and the controller handles the how and where of reading/writing it. (Yes, the OS knows a "where" too - but that's a logical location defined in software, not a physical one that's hardware-dependent.)

Windows 8, and the newer devices it supports, has a bit more intelligence built-in. However, these features appear to not have been back-ported to Windows 7.

Iszi
  • 14,163
0

I'm not completely clear on your question; however, in My Computer, right click on drive, select properties, select Hardware tab. In my case it shows Patriot Pyro SSd SATA Disk Device.

0

Goto the control panel -> system -> and find the "device manager", click on it to give a listing of all devices present.

It should list the storage media, as in model WD 500000000-XYZ.abc You then check to see what that model# refers to by googling the exact model# provided. Once done it explains the specs of that storage device.

Niks
  • 53