Getting Serial Number of the Hard Drive Provided by the manufacturer through PHP - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T22:25:48Zhttp://stackoverflow.com/feeds/question/709108http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/709108/getting-serial-number-of-the-hard-drive-provided-by-the-manufacturer-through-php1Getting Serial Number of the Hard Drive Provided by the manufacturer through PHPdta2009-04-02T10:05:13Z2009-04-02T11:39:22Z
<p>Getting Serial Number of the Hard Drive
Provided by the manufacturer through PHP :
How can it be done?
I want to store it in a file.</p>
<p>OS : windows 2000,XP,ME,Vista...</p>
<p>Yes, I want the serial number of the hard drive <strong><em>of the Server.</em></strong></p>
<p>Or can it be done through Adobe AIR?
Or can it be done through a C program on Windows?</p>
<pre><code>C:\Documents and Settings\Administrator>dir
Volume in drive C has no label.
Volume Serial Number is BC16-5D5F
</code></pre>
<p>Is this number : BC16-5d5f unique for a hard drive?
How is it different from the manufacturer given serial number?</p>
<pre><code>This command
**wmic DISKDRIVE GET SerialNumber**
Displays only the following text
on my Vista Machine :
SerialNumber
On my XP machine,
the command is unrecognized
</code></pre>
http://stackoverflow.com/questions/709108/getting-serial-number-of-the-hard-drive-provided-by-the-manufacturer-through-php/709113#7091130Answer by MrHus for Getting Serial Number of the Hard Drive Provided by the manufacturer through PHPMrHus2009-04-02T10:07:14Z2009-04-02T10:14:18Z<p>Do you want the hard drive from the server or a client?
PHP runs on the server so getting it straight from the client doens't seem possible to me. </p>
<p>The manual suggest you can execute commands on you server:
<a href="http://nl2.php.net/manual/en/ref.exec.php" rel="nofollow">http://nl2.php.net/manual/en/ref.exec.php</a></p>
<p>Unfortunately I don't enough Unix to get you hdd serials. </p>
http://stackoverflow.com/questions/709108/getting-serial-number-of-the-hard-drive-provided-by-the-manufacturer-through-php/709118#7091181Answer by Apikot for Getting Serial Number of the Hard Drive Provided by the manufacturer through PHPApikot2009-04-02T10:08:31Z2009-04-02T10:15:30Z<pre><code>hdparm -i /dev/sdX
</code></pre>
<p>that's on linux, not sure on windows though. You could execute that via "system()"</p>
<p>Have a look at <a href="http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.hk.msdn.connection&tid=e41f0af2-2e76-4be6-9b7b-636e79ac0491&cat=zh_HK_3b03d742-993a-4f96-accd-1063c6bfd559&lang=zh&cr=HK&sloc=&p=1" rel="nofollow">http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.hk.msdn.connection&tid=e41f0af2-2e76-4be6-9b7b-636e79ac0491&cat=zh_HK_3b03d742-993a-4f96-accd-1063c6bfd559&lang=zh&cr=HK&sloc=&p=1</a></p>
<p>Might be a way forward.</p>
<p>Also, when I ran a "dir" on the command prompt, it shows:</p>
<pre><code>C:\Documents and Settings\Administrator>dir
Volume in drive C has no label.
Volume Serial Number is BC16-5D5F
</code></pre>
<p>Is that what you're looking for?</p>
http://stackoverflow.com/questions/709108/getting-serial-number-of-the-hard-drive-provided-by-the-manufacturer-through-php/709121#7091210Answer by Bart van Heukelom for Getting Serial Number of the Hard Drive Provided by the manufacturer through PHPBart van Heukelom2009-04-02T10:09:28Z2009-04-02T10:09:28Z<p>I can't tell you the answer, but I guess you'll have to look in the direction of extensions (maybe even writing one yourself). I doubt this is something PHP's core has.</p>
<p>Edit: I forgot about the raw power of "exec" :-/</p>
http://stackoverflow.com/questions/709108/getting-serial-number-of-the-hard-drive-provided-by-the-manufacturer-through-php/709128#7091284Answer by Patrick Glandien for Getting Serial Number of the Hard Drive Provided by the manufacturer through PHPPatrick Glandien2009-04-02T10:10:37Z2009-04-02T10:10:37Z<p>PHP itself has no way of accessing the hardware like that.</p>
<p>You will have to either</p>
<ul>
<li>use a command of your operating system and call it with <code>system()</code> or <code>exec()</code></li>
<li>write an extension for PHP that will return you the information</li>
</ul>
<p>If you are on Linux and have the necessary privileges and configuration you can use <code>$r = system("hdparm -I /dev/hda");</code> (replace hda with your hd) to get the serial number of a given hard drive.</p>
http://stackoverflow.com/questions/709108/getting-serial-number-of-the-hard-drive-provided-by-the-manufacturer-through-php/709154#7091540Answer by vartec for Getting Serial Number of the Hard Drive Provided by the manufacturer through PHPvartec2009-04-02T10:18:59Z2009-04-02T10:18:59Z<p><a href="http://www.codeproject.com/KB/mcpp/DriveInfoEx.aspx?fid=371167&df=90&mpp=25&noise=3&sort=Position&view=Quick&select=2787288" rel="nofollow">In C</a></p>
http://stackoverflow.com/questions/709108/getting-serial-number-of-the-hard-drive-provided-by-the-manufacturer-through-php/709299#7092991Answer by OIS for Getting Serial Number of the Hard Drive Provided by the manufacturer through PHPOIS2009-04-02T11:14:09Z2009-04-02T11:39:22Z<p>The following returns the disk serial number. Should work with multiple drives, you'll just get multiple results. Just run it with <a href="http://php.net/manual/en/function.shell-exec.php" rel="nofollow">shell_exec</a>. </p>
<pre><code>wmic DISKDRIVE GET SerialNumber
</code></pre>
<p>wmic.exe is located in your windows system32 folder. And wmic does exist on WinXP, Ive used it there myself.</p>
<p>My result on Vista:</p>
<pre><code>C:\Windows\System32>wmic DISKDRIVE GET SerialNumber
SerialNumber
20202020202054534241354c4*snip*
</code></pre>
<p>I do not know if all harddrives provides the serial number to the OS.</p>