Getting Serial Number of the Hard Drive Provided by the manufacturer through PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T22:25:48Z http://stackoverflow.com/feeds/question/709108 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/709108/getting-serial-number-of-the-hard-drive-provided-by-the-manufacturer-through-php 1 Getting Serial Number of the Hard Drive Provided by the manufacturer through PHP dta 2009-04-02T10:05:13Z 2009-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&gt;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#709113 0 Answer by MrHus for Getting Serial Number of the Hard Drive Provided by the manufacturer through PHP MrHus 2009-04-02T10:07:14Z 2009-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#709118 1 Answer by Apikot for Getting Serial Number of the Hard Drive Provided by the manufacturer through PHP Apikot 2009-04-02T10:08:31Z 2009-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&amp;tid=e41f0af2-2e76-4be6-9b7b-636e79ac0491&amp;cat=zh_HK_3b03d742-993a-4f96-accd-1063c6bfd559&amp;lang=zh&amp;cr=HK&amp;sloc=&amp;p=1" rel="nofollow">http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.hk.msdn.connection&amp;tid=e41f0af2-2e76-4be6-9b7b-636e79ac0491&amp;cat=zh_HK_3b03d742-993a-4f96-accd-1063c6bfd559&amp;lang=zh&amp;cr=HK&amp;sloc=&amp;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&gt;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#709121 0 Answer by Bart van Heukelom for Getting Serial Number of the Hard Drive Provided by the manufacturer through PHP Bart van Heukelom 2009-04-02T10:09:28Z 2009-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#709128 4 Answer by Patrick Glandien for Getting Serial Number of the Hard Drive Provided by the manufacturer through PHP Patrick Glandien 2009-04-02T10:10:37Z 2009-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#709154 0 Answer by vartec for Getting Serial Number of the Hard Drive Provided by the manufacturer through PHP vartec 2009-04-02T10:18:59Z 2009-04-02T10:18:59Z <p><a href="http://www.codeproject.com/KB/mcpp/DriveInfoEx.aspx?fid=371167&amp;df=90&amp;mpp=25&amp;noise=3&amp;sort=Position&amp;view=Quick&amp;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#709299 1 Answer by OIS for Getting Serial Number of the Hard Drive Provided by the manufacturer through PHP OIS 2009-04-02T11:14:09Z 2009-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&gt;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>