How do I determine whether a drive is an HDD or SSD in Windows 8?

59

8

I've recently received an assembled PC. I don't know if the disk is an SSD or old HDD (whether SATA or other technologies).

I can't find a way to tell if the disk is SSD or not, apart from the size of the disk. However, now that the sizes of SSDs are getting close to that of HDDs, checking the size is not a good and robust way to distinguish drive type. Is there some other way to determine if the disk is an SSD?

Saeed Neamati

Posted 2014-11-15T08:14:48.277

Reputation: 1 403

3@Louis that was true of older Windows versions but never ones are enhanced to correctly identify and distinguish SSDs from regular hard disks. This is important because the underlying technology of SSD is different. An SSD-agnostic OS can wear and damage it more quickly if the disk is treated as a regular hard disk, by running tools on it which are meant to improve the performance of a regular hard disk. Like defragmentation, for example. – ADTC – 2014-11-15T20:38:45.660

3

@ADTC I see you are correct. The ATA command set can report the Nominal Media Rotation Rate in RPMs or as 1 for non-rotating. http://i.stack.imgur.com/Gh6a2.png

– Louis – 2014-11-15T21:23:03.557

Note that most of these solutions will only work if the drives are directly connected. If they're part of a RAID volume, the OS likely won't be able to tell what the underlying storage is. – Bob – 2014-11-16T08:08:36.350

2Another option: Run a disk benchmark. If the non-sequential read speed is terrible, it's an HDD, otherwise it's an SSD or a hybrid. :) – reirab – 2014-11-16T08:42:18.330

@reirab - Or you've got some kind of miraculous hard disk that has random speeds as good as an SSD, at which point why would you care what the difference was? :) – Jules – 2014-11-16T18:21:45.443

so… what was it? – bolov – 2014-11-17T12:32:33.793

Technically speaking there is no disk in an SSD drive. – NoBugs – 2014-11-17T15:48:21.047

@NoBugs Technically speaking there is no drive in an SSD either :P – JamesRyan – 2014-11-17T16:03:28.347

@ADTC, defragmentation being really bad for an SSD used to be common knowledge among IT guys (and we software engineers), but with Windows 8+ there has been significant pushback on it. I'm not sure I understand the argument, but it has to do with severe fragmentation causing the drive table to be written too many times (in keeping track of it). I'm not going to back up something I don't understand, and don't shoot the messenger. :) – tgm1024--Monica was mistreated – 2019-01-25T14:29:15.500

In nearly all the solutions on SU that I've found, they direct me to look for "Media Type". On Win10, all I see is "Fixed Hard Drive". They seem to expect me to understand what "Fixed Hard Drive" means. AIUI, "Fixed" is as opposed to "removable", and says nothing about SSD. No? – tgm1024--Monica was mistreated – 2019-01-25T14:31:27.113

Answers

82

Actually, there's a much simpler solution.

Windows Drive Optimizer (formerly Disk Defragmenter) reports whether a drive is an HDD or SSD. You can access this utility by pressing Windows+S, searching for "optimize", and selecting Defragment and optimize your drives.

Windows Drive Optimizer showing the media type

This will generally work in any system where the disks are not plugged into a RAID card. However, if the OS cannot determine the media type (e.g. the drives are in a hardware RAID), the above solution won't work, although a program such as CrystalDiskInfo may still be able to help. If you still can't tell whether the drive(s) is an HDD or SSD, you may need to open the computer case and examine the actual drive(s).


Alternatively, you can use the PowerShell Get-PhysicalDisk cmdlet. Here's what it looks like on my custom desktop:

PS C:\Windows\system32> Get-PhysicalDisk | select FriendlyName,BusType,MediaType

FriendlyName         BusType MediaType
------------         ------- ---------
NVMe Samsung SSD 960 NVMe    SSD
SanDisk SDSSDH31024G SATA    SSD

bwDraco

Posted 2014-11-15T08:14:48.277

Reputation: 41 701

@JakeGould If the default defragmenter isn't disabled or replaced by other defragmenter. ;-) – Little Helper – 2014-11-16T08:47:13.167

Nice! Many systems combine a small SSD with a large HDD and this really clarifies what drive is being used for what. Much better answer than using the Device Manager and googling. – Jason – 2014-11-17T06:10:36.753

Note: If you have One Note 2013 installed, Win + S starts a new screen capture. – James Mertz – 2014-11-17T22:45:48.030

@KronoS I was going to edit the answer for this, but apparently it only applies to OneNote without the current updates.

– Jason – 2014-11-19T16:41:52.380

Win10 (for me) built in defragger says "Fixed Hard Drive" for the Media Type. What is that, just non-removable? How do I know if there's a rotating disc in it or not? – tgm1024--Monica was mistreated – 2019-01-25T14:33:27.687

42

Run Device Manager (devmgmt.msc), expand "Disk drives" node, see the model number of your drive, and search for it online.

Jonathan

Posted 2014-11-15T08:14:48.277

Reputation: 2 294

Or do the same from the BIOS. :) – Hennes – 2014-11-15T10:08:13.073

20@Hennes Or look inside the computer ;p – Louis – 2014-11-15T10:25:33.033

Yup. Simplest solution if you know the difference between a SSD and a 2.5 inch HDD. Trivial for most of us. – Hennes – 2014-11-15T10:28:59.180

4Best and probably least invasive solution. +1 – Wingblade – 2014-11-15T14:33:40.970

1@Louis Wouldn't work if its a remove computer (ie my work computer). – David says Reinstate Monica – 2014-11-16T02:32:31.017

@DavidGrinberg Pretty sure you meant remote, right? Otherwise for less computer geek persons there's probably tools like Everest to easily find out details about your rig for yourself. – Jeff Noel – 2014-11-17T14:02:19.840

@JeffNoel Herpaderp, yes I mean remote. Typo fail. – David says Reinstate Monica – 2014-11-17T14:04:48.630

3+1 the accepted answer doesn't work on Windows 7, this does – Matt Frear – 2015-04-15T10:22:53.023

@MattFrear, nor does it work on Windows 10. – tgm1024--Monica was mistreated – 2019-01-25T14:35:15.017

16

Just because it hasn't been mentioned yet, Speccy is great for seeing in depth information about every component in your computer, including your hard drive.

Detailed specs

JMK

Posted 2014-11-15T08:14:48.277

Reputation: 2 839