IPB

Google Frontpage Forums Unattended CD/DVD Guide
 Forum Rules Unattended CD/DVD Guide Homepage · MSFN Forum Rules
9 Pages V   1 2 3 > »   
Reply to this topicStart new topic
> Building a Pre-activated CD from an existing installation
Bezalel
post Dec 19 2005, 09:37 PM
Post #1


Senior Member
****

Group: Members
Posts: 623
Joined: 11-October 05
Member No.: 76348
OS: XP Pro x86
Country Flag


I've put together two files that can be used to make a pre-activated CD if all you got with your computer is a restore CD you will also need access to an OEM hologram CD for the rest of the files. Put the following files in the same folder

getfiles.bat
CODE
attrib -s %SystemRoot%\system32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\OEMBIOS.CAT
makecab %SystemRoot%\system32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\OEMBIOS.CAT
attrib +s %SystemRoot%\system32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}\OEMBIOS.CAT
makecab %SystemRoot%\system32\OEMBIOS.BIN
makecab %SystemRoot%\system32\OEMBIOS.DAT
makecab %SystemRoot%\system32\OEMBIOS.SIG
cscript //nologo getkey.vbs > winnt.sif


getkey.vbs
CODE
Dim objFS, objShell
Dim strXPKey

Set objShell = CreateObject("WScript.Shell")

strXPKey = objShell.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProductName")
If Len(strXPKey) > 0 Then
  WScript.Echo "[UserData]"
  WScript.Echo "ProductKey=" & chr(34) & GetKey(objShell.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId")) & chr(34)
  WScript.Echo "[Data]"
  WScript.Echo "MSDosInitiated=0"
  WScript.Echo "UnattendedInstall=Yes"
End If

Function GetKey(rpk)
  Const rpkOffset=52:i=28
  szPossibleChars="BCDFGHJKMPQRTVWXY2346789"
  Do
    dwAccumulator=0 : j=14
    Do
      dwAccumulator=dwAccumulator*256
      dwAccumulator=rpk(j+rpkOffset)+dwAccumulator
      rpk(j+rpkOffset)=(dwAccumulator\24) and 255
      dwAccumulator=dwAccumulator Mod 24
      j=j-1
    Loop While j>=0
    i=i-1 : szProductKey=mid(szPossibleChars,dwAccumulator+1,1)&szProductKey
    if (((29-i) Mod 6)=0) and (i<>-1) then
      i=i-1 : szProductKey="-"&szProductKey
    End If
  Loop While i>=0
  GetKey=szProductKey
End Function


Getfiles.bat will generate 5 files to be placed in the i386 directory of your CD. the files are:
OEMBIOS.BI_
OEMBIOS.CA_
OEMBIOS.DA_
OEMBIOS.SI_
winnt.sif

This post has been edited by Bezalel: Mar 24 2006, 04:34 AM
Go to the top of the page
 
+Quote Post
trickytwista
post Dec 27 2005, 06:21 AM
Post #2


Nlite user n lovin' it
****

Group: Members
Posts: 598
Joined: 6-February 05
From: UK
Member No.: 43248
OS: XP Pro x86
Country Flag


hi, can you explain this with more detail? i have xphome on my laptop and on each install it has to be activated which is kind of a pain, are you saying that i wouldnt have to keep activating it? thanks
Go to the top of the page
 
+Quote Post
phatcat42141
post Dec 27 2005, 11:18 AM
Post #3


Member
**

Group: Members
Posts: 123
Joined: 8-December 05
Member No.: 81888
Country Flag


Theres a problem with your theory cause the windows activation also reads your PID number. The Windows PID is a unique code identifying your version of Windows and it is also used to identify your hardware setup. So if you install it on another system with a totally different hardware setup then the PID would be different.

Or am I wrong?

This post has been edited by phatcat42141: Dec 27 2005, 11:19 AM
Go to the top of the page
 
+Quote Post
Bezalel
post Dec 27 2005, 11:42 AM
Post #4


Senior Member
****

Group: Members
Posts: 623
Joined: 11-October 05
Member No.: 76348
OS: XP Pro x86
Country Flag


QUOTE (phatcat42141 @ Dec 27 2005, 01:18 PM) *
Theres a problem with your theory cause the windows activation also reads your PID number.


Windows Activation only checks the PID is the BIOS checks fails. Royalty OEMs don't use unique keys because their machines don't have to be activated.
Go to the top of the page
 
+Quote Post
Bezalel
post Dec 27 2005, 11:52 AM
Post #5


Senior Member
****

Group: Members
Posts: 623
Joined: 11-October 05
Member No.: 76348
OS: XP Pro x86
Country Flag


QUOTE (trickytwista @ Dec 27 2005, 08:21 AM) *
hi, can you explain this with more detail? i have xphome on my laptop and on each install it has to be activated which is kind of a pain, are you saying that i wouldnt have to keep activating it? thanks


If your laptop was mande by a Royalty OEM (the COA sticker hase manufacturer's name or logo) and you also have access to the Windows intallation bits (hologrammed OEM CD) you can use these files to recreate the OEMBIOS files and extract the CD-Key origionally used by the manufacturer to install windows. A Windows CD made with these files will not require activation when used on the computer the files were extracted from (or other computers of the same make).
Go to the top of the page
 
+Quote Post
JDS300
post Dec 28 2005, 09:49 AM
Post #6


Newbie


Group: Members
Posts: 16
Joined: 19-December 05
Member No.: 82921
Country Flag


So if I have a bunch of OEM machines(Dell, HP, Gateway, etc), and I'm creating an image for those machines, I can use the Product Key located in their WINNT.SIF from the Recovery CD instead of the Key on the sticker?
Go to the top of the page
 
+Quote Post
Bezalel
post Dec 28 2005, 12:28 PM
Post #7


Senior Member
****

Group: Members
Posts: 623
Joined: 11-October 05
Member No.: 76348
OS: XP Pro x86
Country Flag


QUOTE (JDS300 @ Dec 28 2005, 11:49 AM) *
So if I have a bunch of OEM machines(Dell, HP, Gateway, etc), and I'm creating an image for those machines, I can use the Product Key located in their WINNT.SIF from the Recovery CD instead of the Key on the sticker?


In that case you already have to OEMBIOS files. And yes you can use the key in winnt.sif as long as your target machine will pass the BIOS check.

You cannot use the same image for multiple manufacturers and still preserve the activation. (I'm working on that but am not ready to discuss any details.)
Go to the top of the page
 
+Quote Post
phatcat42141
post Dec 28 2005, 09:58 PM
Post #8


Member
**

Group: Members
Posts: 123
Joined: 8-December 05
Member No.: 81888
Country Flag


QUOTE
Windows Activation only checks the PID is the BIOS checks fails. Royalty OEMs don't use unique keys because their machines don't have to be activated.


Thanks for that reply. I never knew that.
Go to the top of the page
 
+Quote Post
KRYOGENIUS
post Jan 1 2006, 10:05 AM
Post #9


Enhancer
**

Group: Members
Posts: 189
Joined: 12-April 04
From: FRANCE
Member No.: 17670
OS: XP Pro x86
Country Flag


Hello

this method don't work anymore with XP and service pack only with rtm

i have tested it without success under xp pro sp1 and sp2

Good idea but i was really simple when xp had no activation !!

++
Go to the top of the page
 
+Quote Post
Djé
post Feb 17 2006, 10:23 AM
Post #10


accent artist
***

Group: Members
Posts: 375
Joined: 10-January 06
From: your back
Member No.: 84897
Country Flag


Indeed, this Method DOES work with Windows XP sp1 slipstreamed to sp2. I just did it a couple of times today.

But it may work only for Royalty OEM computers.
At any rate, my (successful) case was as follow: Toshiba laptop shipped with xp home sp1 on a recovery cd (ghost image) only. I extracted back the image and then slipstream sp2 and latest hotfixes in the i386 folder of the hard drive, before doing the usual unattend preparation things (among them this method to recover activation) and burning back a fresh CD. Installed and no need to activate (no network so i'm sure it did not activated in my back).

The important point to get (at least the one at which I was stuck for a while because it is not explained in the unattended guide) is that not only do you need those oembios files, but also the CORRESPONDING product key, which may NOT be the one written on the sticker on your computer but ANOTHER one which is coded in the registry.
That is why that getkey.vbs is the important script to RETREIVE the GOOD product key to put in your winnt.sif. And not the dummy one from the sticker.
So to get it, you must be running the original os from the recovery CD and not any installation you may have done later.

@KRYOGENIUS: No offense, but before posting such information you should check it better and not only beleive/propagate the rumor. Or at least be less affirmative (Journalists do also like rumors but they carefully use conditional). I almost gave up because of such posting as yours but thanks to my not liking undocumented statements, I eventually managed.

This post has been edited by Djé: Feb 17 2006, 10:28 AM
Go to the top of the page
 
+Quote Post
Bezalel
post Feb 17 2006, 01:51 PM
Post #11


Senior Member
****

Group: Members
Posts: 623
Joined: 11-October 05
Member No.: 76348
OS: XP Pro x86
Country Flag


Thanks for your clarification. When I wrote pre-activated I meant Royalty OEM. I've had mixed results when using the key on the sticker but it always works with the key in the registry, that's why I wrote getkey.vbs (I did not write or know who wrote the getkey function). I've used this method for Home, MCE2005, TabletPC2005, Pro, and Server. BTW the OEMBIOS files for MCE2005, TabletPC2005, and Pro are interchangable and the product keys are interchangable between brands. You can also use the keys found on http://www.microsoft.com/technet/prodtechn...oy/wpadepl.mspx and http://www.microsoft.com/technet/prodtechn...y/oempreac.mspx.
Go to the top of the page
 
+Quote Post
maxXPsoft
post Apr 30 2006, 05:01 PM
Post #12


MSFN Addict
*******

Group: Members
Posts: 1510
Joined: 14-November 03
From: Texas
Member No.: 9484
OS: XP Pro x86
Country Flag


Bezalel thumbup.gif
Thanks for getting me closer with that for my MCE 2005
You just cleared it up for me what I needed for no activation BS although my Pid will be ok since this is legit.

1st Step was since i don't have a Royalty OEM MCE 2005 CD
Gain access to HP_RECOVERY partition, done

Now have access to all the files so I can copy the I386.
Will be a lot of cleaning up in there though to remove the 40 games, limited Office, and other junk I don't want.
Go to the top of the page
 
+Quote Post
maxXPsoft
post May 9 2006, 08:40 AM
Post #13


MSFN Addict
*******

Group: Members
Posts: 1510
Joined: 14-November 03
From: Texas
Member No.: 9484
OS: XP Pro x86
Country Flag


Ok done this on my MCE 2005 HP a1310n and went to WU and it told me welllll it looks ok but answer 20? first
What does coa say, what type PC, manufacturer and so on and I left.

Well answer for me was
copy original SETUPP.INI from I386 and add all the Hotfixes for MCE

I'm activated now as soon as I do all that Genuine Advantage stuff

Another UnattendXPPro sucessfull Install

This post has been edited by maxXPsoft: May 9 2006, 09:01 AM
Go to the top of the page
 
+Quote Post
jrf2027
post May 9 2006, 04:00 PM
Post #14


Member
**

Group: Members
Posts: 196
Joined: 6-September 04
Member No.: 30216
OS: Vista Home Premium x64
Country Flag


Couple of quick questions...

I'm going to need to reload Windows on a laptop for my wife's work. This particular laptop has passed through many hands, and the original Windows install CD (along with all the software install CD's, I assume) is long gone. I don't presently know the manufacturer of the laptop, but based on the fact that it's a laptop I assume it's going to be a Royalty OEM.

Question 1 - I have OEM windows installs for both Home and Professional from Royalty OEM #1. Do I just need to substitute the four OEMBIOS files and the product key to make a Royalty OEM #2 CD?

Question 2 - is there any certain advantage to using the getkey.vbs file, or can I just use the Magical Jellybean Keyfinder to get the product key?

Thanks in advance.
Go to the top of the page
 
+Quote Post
maxXPsoft
post May 9 2006, 06:24 PM
Post #15


MSFN Addict
*******

Group: Members
Posts: 1510
Joined: 14-November 03
From: Texas
Member No.: 9484
OS: XP Pro x86
Country Flag


I used an MCE 2 CD set that was not manufacturer specific ; Dell, HP
Mine is a HP but just adding those files and getting all the Hotfixes for Media Center Edition worked for me.
And benefit is NO 40 games they want you to pay for and Trial versions of a bunch of stuff I don't use.
Mine squeaky clean

His getkey.vbs works and makes the basic Winnt.sif which is good for beginner's, yes you can use JellyBean

This post has been edited by maxXPsoft: May 9 2006, 06:29 PM
Go to the top of the page
 
+Quote Post
Djé
post May 9 2006, 06:57 PM
Post #16


accent artist
***

Group: Members
Posts: 375
Joined: 10-January 06
From: your back
Member No.: 84897
Country Flag


I agree with maxXPsoft.
1. You only need the 4 files & the key. If the system on the computer is still the original one, you can use this method (provided the Royalty thing).
2. getkey.vbs works fine. Don't know about the other. But hey, it's not bad to have a confirmation: try both!
Go to the top of the page
 
+Quote Post
Bezalel
post May 10 2006, 12:03 AM
Post #17


Senior Member
****

Group: Members
Posts: 623
Joined: 11-October 05
Member No.: 76348
OS: XP Pro x86
Country Flag


QUOTE (jrf2027 @ May 9 2006, 05:00 PM) *
I don't presently know the manufacturer of the laptop, but based on the fact that it's a laptop I assume it's going to be a Royalty OEM.


Take a look at the COA Sticker. If it has the manufacturers name it's a Royalty OEM, if it say "OEM Product" it's not.

QUOTE (jrf2027 @ May 9 2006, 05:00 PM) *
Question 1 - I have OEM windows installs for both Home and Professional from Royalty OEM #1. Do I just need to substitute the four OEMBIOS files and the product key to make a Royalty OEM #2 CD?


It is possible that OEM #1 made other changes to the CD but the basic answer is yes