Token
August 31, 2018, 9:55pm
1
I’m looking for software that can grab HDD serial number data from Windows and Linux systems over small networks- something free because I will used it, then un-install and move on, otherwise I would probably just use Eracent.
Or am I nuking it and should just use PS and Bash scripts?
wmic diskdrive get serialnumber
will give it for windows
1 Like
I think In Linux they’re listed in “/dev/disk/by-id” (or something like that).
^ Those are the UUIDs, not the serial numbers.
orgake
September 9, 2018, 1:40pm
5
I would use smartmontools on Linux; the command would be:
smartctl -i /dev/[drive in question]
You do need to use sudo
though, and the output will be:
smartctl 6.…
Copyright (C) 2002-…
=== START OF INFORMATION SECTION ===
Device Model: …
Serial Number: …
…
Edit:
A quick glance through the FAQ suggests that their might be some issues on Windows, depending on the driver, and OSX also has driver limitations and needs a third party driver to interface with USB/Firewire drives.
1 Like
nx2l
September 9, 2018, 5:01pm
6
Serial number are still in that dir…
should start as
ata
or
scsi
then it’ll be
“model number”
_
“serial no.”
1 Like
Ah, thanks. Today I Learned.