Hdd m.2 ม physical serial number ไหม

S/N aren't guaranteed to be unique. But as different manufacturers use different schemes for generation of S/Ns, they are mostly unique. Also there aren't any reasons for manufacturers to make two or more HDDs with one S/N. I can say that if they do so it will make warranty returns very difficult. How they will distiungish different devices? It is purpose of S/N.

collisions are really unlikely in practice

There are some cases when software is bounded to HDD model and S/N. When HDD becomes broken, it gives a lot of pain to reconfigure all system. In such case there is option to make full duplicate of old HDD. It needs special software and/or hardware to rewrite serial number and model in HDD, but it is possible. And it can save a lot of time and/or money.

Also when people want to install bigger HDD in their game consoles XBOX, they buy cheaper common HDDs in market and then tune these HDDs to fit XBOX by special software. This program rewrites model, S/N and some hidden information of HDD, so XBOX "thinks" that HDD is original from console vendor. Look for instruction here.

If you really want to get unique ID of HDD, try to dig into SAS protocol specification and specifications of HDDs with such interface. You will find interesting thing

In SAS, device and port names are worldwide unique names within a transport protocol. Port identifiers are the values by which ports are identified within a domain, and are used as SAS addresses. Phy identifiers are unique within a device.

Also from

Each SAS port in a SAS domain has a SCSI port identifier that identifies the port uniquely within the SAS domain. It is assigned by the device manufacturer, like an Ethernet device's MAC address, and is typically world-wide unique as well. SAS devices use these port identifiers to address communications to each other. I'm trying to get the serial number of the hard disks in my PC, i.e. the number printed on a label on the hard disk itself. I found that I can do that using wmic diskdrive get serialnumber, but I see that the serial number returned has the string "202020202020202020202020" before another 16 characters. I've never seen this long "202020..." string before a hard disk's serial number before. Is this correct?

ETA: The full string is "2020202020202020202020205139334d47585052".

asked Sep 16, 2014 at 4:17

RayneRayne

5932 gold badges13 silver badges24 bronze badges

6

Skip that Windows utility and load smartctl

Then open an admin command line in the "c:\program files\smartmontools\bin" folder and type:

smartctl -i /dev/sda

*Or sdb sdc etc depending on the drive location

This will show the serial number in a clean easy to read format... and the drive health.

You will find the utility here:

http://sourceforge.net/projects/smartmontools/files/smartmontools/6.3/

answered Sep 16, 2014 at 5:38

Hdd m.2 ม physical serial number ไหม

jharrelljharrell

3501 silver badge10 bronze badges

0

Windows Powershell will give you clean human readable output:

get-wmiobject win32_physicalmedia | select-object Tag, SerialNumber

It outputs something like this:

Tag SerialNumber
------
\.\PHYSICALDRIVE0 5VK04NR1
\.\PHYSICALDRIVE1 5VK07RG1
\.\PHYSICALDRIVE2 5VK07QEM

Hdd m.2 ม physical serial number ไหม

Arjan

31.1k14 gold badges75 silver badges113 bronze badges

answered Oct 28, 2016 at 6:41

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged

.