Disk Doctor Serial Number

  1. Driver Doctor Serial Key
  2. Disk Doctor Serial Number Search
Active2 years, 1 month ago

From the Windows NT-based (Windows XP and 7 specifically) command prompt, how can I get the serial number of a hard drive as a variable? The one I'm looking at is the serial number of the physical hard disk drive

Canadian Luke

Hi: I am interested in getting a utility that allows me to change the serial number of a hard disk or a floppy disk. I will illustrate my point by showing you what I mean. When we type the VOL command in DOS mode the information presented to us is as follow: C: WIN95>vol Volume in drive C has no label. Disk Doctors Ntfs Data Recovery 2.0 1 Crack DOWNLOAD (Mirror #1). Data Recovery Software from Disk Doctors to recover data from Crashed Hard Drive memory cards ipod music players supports Windows NTFS & FAT Linux Ext2 Ext3, Mac HFS+ HFSX, UNIX (Solaris) UFS File System and Outlook Email Recovery & PST Repair, digital photo recovery and to recover deleted files.

Canadian LukeCanadian Luke
18.5k33 gold badges97 silver badges153 bronze badges

4 Answers

vol C:

this will get the volume serial number given to it by windows.

wmic diskdrive get serialnumber

this gets the manufacturers serial number of the hard drive.

MoabMoab
52.3k14 gold badges97 silver badges161 bronze badges
  • What you are looking at is NOT the hard drive serial number.

  • It is called the Volume Serial Number. It is generated at the time of creating and formatting the volume / partition.

  • You can get it by using a command at command prompt : C:> vol c: if C: is the drive you want to retrieve the Volume Serial Number for.

  • All you can do is redirect the output of that command to a file : C:> vol c: > myvol.txt and it will be stored as a text file in your C:

  • I am attaching a screenshot with the highlights:

  • The file was stored in the root of C:
  • This is what the myvol.txt file looks like in Notepad:
aliasgaraliasgar

In the same vein as Moab's answer, but using PowerShell this time:

This command gets an instance of the Win32_DiskDrive WMI class and outputs the model of each disk drive in the computer and its corresponding serial number from that instance.

This answer assumes PowerShell 3.0 or later. If running an older version, use Get-WmiObject in place of Get-CimInstance.

On Windows 8 and later, you can also use this command:

bwDracobwDraco
37.8k37 gold badges144 silver badges180 bronze badges

In a batch file one approach is:

  1. VOL command to produce the serial number as text along with text we don't want.
  2. FIND to trim it down to only the line with the serial number.
  3. FOR to grab the 5th token (a part between delimiters) on the line with the serial number.
  4. SET to assign to an environment variable
BrianBrian

protected by bwDracoFeb 11 '18 at 19:14

Thank you for your interest in this question. Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?

Disk Doctor Serial Number

Not the answer you're looking for? Browse other questions tagged windowscommand-line or ask your own question.

Active2 years, 1 month ago

I wanted to get the serial number assigned by Hard disk manufacturer.

The serial number is usually printed in the hard disk. Normally to get the serial number, I have to take out the hard disk.

Is it possible to know the hard drive serial number from command prompt or in other way.

Before posting this question I have gone through this question but I am getting the error in the following screenshot:

Community
SpringLearnerSpringLearner
2763 gold badges7 silver badges14 bronze badges

6 Answers

CrystalDiskInfo will display this information as well as all other S.M.A.R.T. data if the computer supports it. It's free, check it out.

If this is unable to pull the serial number then I would double check your BIOS settings and make sure that you have S.M.A.R.T. enabled.

If this is not an option I'd Google the computer model specs to see if there is a BIOS update that supports it, if not then the computer is too old and you have to open the machine.

Kevin Panko
6,12411 gold badges37 silver badges48 bronze badges
BradBrad

The Win32_PhysicalMedia class suggest that

should do the trick.

However, the WMI struct holding the DiskDrive information

specifically mentions that

Driver Doctor Serial Key

SerialNumber: Number allocated by the manufacturer to identify the physical media.

Disk Doctor Serial Number

Windows Server 2003 and Windows XP: This property is not available.

I know of no other way to obtain it, sorry.

Cheers,

Anders R. BystrupAnders R. Bystrup

Press Windows Key + R

type

It will show details of almost everything in the system. Locate to storage and find the details.

UnnikrishnanUnnikrishnan

Use below powershell script to get the serial number of hard disk.

Get-WmiObject Win32_PhysicalMedia Format-Table Tag, SerialNumber

Calculating MachineCalculating Machine

If you can't just pull the drive out then try:

Start > Control Panel > System > Device Manager

Expand the Disk Drive and right click the HDD you want. Select Properties > Details Tab. From the drop down select Hardware IDs. It should be listed in there.

EDIT: Since it was different in device manager you could try cmd command:

wmic diskdrive get serialnumber

See if this matches.

Matthew WilliamsMatthew Williams
4,0798 gold badges21 silver badges36 bronze badges

It availaible in WindowsXP, you need use command

wmic diskdrive get pnpdeviceid

you receive something like this

KINGSTON SV300S37A60G IDEDISKKINGSTON_SV300S37A60G___________________580ABBF03035323042363237423436304335393820202020

where last long number (3035323042363237423436304335393820202020) it's serial number in Hex.
After you getting this number, try to use this program or python-script to view correct SN.
Thanks.

MaxMax

Not the answer you're looking for? Browse other questions tagged windows-xphard-drive or ask your own question.

Comments are closed.