Page 1 of 1

Did the search in the forum works? or some old post are miss

Posted: Wed Apr 30, 2003 9:57 pm
by ricardo
Hi,

Im trying to search a forums wher we talk about getting the HD serial and someone talk about a better serial that dosent change if the user reinstall windows.

Ok, i remember that we talk about softice on that post and i try to use it as a key to the search and cant find that post.

1.- Does anybody knows which is the serial number that im talking about? (Its Firmware? Does it really dosent change?)

2.- Does the 'search' feature works right?

Posted: Wed Apr 30, 2003 10:11 pm
by Berikco
I believe it was this one viewtopic.php?t=2161&highlight=serial+harddisk

Searched for Serial AND Harddisk

Posted: Wed Apr 30, 2003 10:28 pm
by ricardo
Berikco wrote:I believe it was this one viewtopic.php?t=2161&highlight=serial+harddisk

Searched for Serial AND Harddisk
Hi Berikco!!

Nop, it this one (i found it in google but cant find it here!!!)

http://216.239.57.100/search?q=cache:n8 ... s&ie=UTF-8

If i try to search 'firmware' (per example) on the SEARCH i dont get nothing and the word is on the post, if you look the Google cached page.

Posted: Thu May 01, 2003 8:46 am
by Berikco
Yes, i remember that on, i browsed whole beginner section, seems missing...

Re: Did the search in the forum works? or some old post are

Posted: Thu May 01, 2003 10:24 pm
by Max.
ricardo wrote: 1.- Does anybody knows which is the serial number that im talking about? (Its Firmware? Does it really dosent change?)
Hi Ricardo,

I started converting this code

http://support.microsoft.com/default.as ... -us;208048

into Purebasic, but am stuck for two reasons: Time and Knowledge :wink:

The C source compiles well with Bloodshed Dev-C++ (is under the GNU license) from http://www.bloodshed.net.

If you are interested in what I got transferred, then drop me a call.

And yep, that number doesn't change.

Re: Did the search in the forum works? or some old post are

Posted: Thu May 01, 2003 10:40 pm
by PB
> I started converting this code
> http://support.microsoft.com/default.as ... -us;208048

The problem is that not all drives support SMART technology, and some
people (like me) disable it on purpose. In such cases, your app wouldn't
be able to be used by customers... something to consider.

Re: Did the search in the forum works? or some old post are

Posted: Fri May 02, 2003 12:48 am
by Max.
PB wrote:>The problem is that not all drives support SMART technology, and some
people (like me) disable it on purpose. In such cases, your app wouldn't
be able to be used by customers... something to consider.
From how I understood the code the firmware info gets shown anyway, regardless of SMART or not.

Did not try it though as the SMART part is the interesting thing for me. :wink:
Maybe I will grab an old HDD tomorrow...

Re: Did the search in the forum works? or some old post are

Posted: Fri May 02, 2003 1:14 am
by ricardo
PB wrote:The problem is that not all drives support SMART technology, and some
people (like me) disable it on purpose. In such cases, your app wouldn't
be able to be used by customers... something to consider.
Yes, i just learn it last night, because my code works fine in one PC but in my other PC dosent works and trying to find the problem i found exactly what PB mention.

Is there any other number that dosent change if the user reinstall windows?

Re: Did the search in the forum works? or some old post are

Posted: Fri May 02, 2003 10:57 am
by PB
> Is there any other number that dosent change if the user reinstall windows?

Sure -- the size (in MB) of the drive. They can format/reinstall as much as
desired and this won't change (unless they partition the drive). See the
post by Freak at this URL:

viewtopic.php?t=4127

Re: Did the search in the forum works? or some old post are

Posted: Fri May 02, 2003 11:58 am
by Max.
ricardo wrote:
PB wrote:Is there any other number that dosent change if the user reinstall windows?
Guess there is no omnipotent solution.

1. Retrieving the serial number of the drive

Not necessarily bound on SMART - there are examples around - and really unique. But most only work on ATAPI drives.

http://codeguru.com/system/DiskId32.shtml

2. Using the size of the HDD

Not really unique but easily retrievable. Question: is it dependant on the cluster size when formatting, not that it is calced slightly different, though it should not be?

3. Using the Windows Product Key from the Registry

Easily retrievable; Theoratically unique - until a user shares it. Would likely come down to "Good chance that user who bought will use on various PCs of him and maybe share with friends who used the same copy of Win".

Any other halfway unique & not changing numbers?

Still, #1 would be the most secure. But would require the most efforts to get it running.

I guess I would go for a combination of #2 and #3.

Re: Did the search in the forum works? or some old post are

Posted: Fri May 02, 2003 12:22 pm
by freak
PB wrote:> Is there any other number that dosent change if the user reinstall windows?

Sure -- the size (in MB) of the drive. They can format/reinstall as much as
desired and this won't change (unless they partition the drive). See the
post by Freak at this URL:

viewtopic.php?t=4127
Unfortunately, the code posted there doesn't work right since PB 3.1.
(Changes have been made to '<<')

Get a working one here:
http://www.reelmediaproductions.com/pb/ ... ace_31.zip

Timo

Re: Did the search in the forum works? or some old post are

Posted: Sat May 03, 2003 7:20 am
by PB
> 1. Retrieving the serial number of the drive
> #1 would be the most secure.

Not so -- there is at least one freeware app that lets the user change his
HD serial to anything (such as another user's). Checking for the total HD
size is more secure because the user can't copy it (it's hardware).

Re: Did the search in the forum works? or some old post are

Posted: Sat May 03, 2003 4:21 pm
by ricardo
One question:

Is really unique the size in MB of the HD?

Re: Did the search in the forum works? or some old post are

Posted: Sat May 03, 2003 4:41 pm
by PB
> Is really unique the size in MB of the HD?

Yes. That is, your HD is a different size to mine, and to millions of other
people around the world. Even if we both have 100 GB drives, it's very
likely that mine has a slightly different amount of space to yours (based
on cluster size, file-system used, etc).