![]() ![]() |
Apr 8 2008, 07:29 AM
Post
#1
|
|
|
K-Mart-ian Legend ![]() ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 1155 Joined: 28-April 06 From: Buffalo, NY Member No.: 94953 OS: Server 2008 x64
|
A debate seems to have come up at my company regarding how we can't use images any longer (with Ghost) because of the different HALs in a system configuration. It seems we have gotten official word from our tech rep at Microsoft about this issue. However, this is in contrast with what is in KB309283:
http://support.microsoft.com/kb/309283 Which says that if ACPI is enabled, XP will automatically detect the correct HAL. But if it ends up being true that we cannot use images any longer to deploy our machines using Ghost, then I do not see where there is a difference between that and using the WDS and WinPE. With exception of Vista, you have to capture an existing XP image as a WIM, which basically makes it the same process as Ghost. Someone tell if I am wrong or there is another way. |
|
|
|
Apr 8 2008, 09:03 AM
Post
#2
|
|
|
Junior ![]() Group: Members Posts: 55 Joined: 26-October 07 Member No.: 159852 OS: none
|
Our base image is the standard single CPU HAL, but I use a separate WIM file (or any format of your choosing) for the HAL.DLL and NTOSKRNL.EXE for multi-CPU devices and install those files after applying the base image but before rebooting to Sysprep.
|
|
|
|
Apr 8 2008, 10:17 AM
Post
#3
|
|
|
Junior ![]() Group: Members Posts: 95 Joined: 8-April 07 From: Berwyn, Illinois Member No.: 134809 OS: XP Pro x86
|
I don't know about anyone else but I use the following script. It runs after the WIM has been copied to C:\ and updates sysprep.inf with the information for the appropiate HAL. So far it hasn't failed me yet.
CODE 'On Error Resume Next
Set objWshShell = CreateObject("WScript.Shell") Set objFSO = CreateObject("Scripting.FileSystemObject") ' Activate the partition Call ActivateDisk() ' Customize the local sysprep.inf file based on the HAL type Call UpdateSysprepinf () ' Done, quit. WScript.Quit Sub ActivateDisk() ' Wait a few seconds, assign drive letter and activate wscript.sleep 5000 cmd = "cmd /c diskpart.exe /s Activate.txt" rc = objWshShell.run(cmd, 6, 1) End Sub Sub UpdateSysprepinf () ' Find out the HAL type sHalType = objWshShell.RegRead("HKLM\SYSTEM\CurrentControlSet\Enum\Root\ACPI_HAL\0000\HardwareID") ' Write HAL type to sysprep.inf If sHalType(0) = "acpiapic_up" Then WriteIni "c:\sysprep\sysprep.inf", "Unattended", "UpdateUPHAL", "ACPIAPIC_UP,%WINDIR%\Inf\Hal.inf" ElseIf sHalType(0) = "acpiapic_mp" Then WriteIni "c:\sysprep\sysprep.inf", "Unattended", "UpdateHAL", "ACPIAPIC_MP,%WINDIR%\Inf\Hal.inf" End if End Sub Function ReadIni(file, section, item) ReadIni = "" file = Trim(file) item = Trim(item) Set ini = objFSO.OpenTextFile( file, 1, True) Do While ini.AtEndOfStream = False line = ini.ReadLine line = Trim(line) If LCase(line) = "[" & LCase(section) & "]" Then line = ini.ReadLine line = Trim(line) Do While Left( line, 1) <> "[" 'If InStr( 1, line, item & "=", 1) = 1 Then equalpos = InStr(1, line, "=", 1 ) If equalpos > 0 Then leftstring = Left(line, equalpos - 1 ) leftstring = Trim(leftstring) If LCase(leftstring) = LCase(item) Then ReadIni = Mid( line, equalpos + 1 ) ReadIni = Trim(ReadIni) Exit Do End If End If If ini.AtEndOfStream Then Exit Do line = ini.ReadLine line = Trim(line) Loop Exit Do End If Loop ini.Close End Function Sub WriteIni( file, section, item, myvalue ) in_section = False section_exists = False item_exists = ( ReadIni( file, section, item ) <> "" ) wrote = False file = Trim(file) itemtrimmed = Trim(item) myvalue = Trim(myvalue) temp_ini = objFSO.GetParentFolderName(file) & "\" & objFSO.GetTempName Set read_ini = objFSO.OpenTextFile( file, 1, True, TristateFalse ) Set write_ini = objFSO.CreateTextFile( temp_ini, False) While read_ini.AtEndOfStream = False line = read_ini.ReadLine linetrimmed = Trim(line) If wrote = False Then If LCase(line) = "[" & LCase(section) & "]" Then section_exists = True in_section = True ElseIf InStr( line, "[" ) = 1 Then in_section = False End If End If If in_section Then If item_exists = False Then write_ini.WriteLine line write_ini.WriteLine item & "=" & myvalue wrote = True in_section = False Else equalpos = InStr(1, line, "=", 1 ) If equalpos > 0 Then leftstring = Left(line, equalpos - 1 ) leftstring = Trim(leftstring) If LCase(leftstring) = LCase(item) Then write_ini.WriteLine itemtrimmed & "=" & myvalue wrote = True in_section = False End If End If If Not wrote Then write_ini.WriteLine line End If End If Else write_ini.WriteLine line End If Wend If section_exists = False Then ' section doesn't exist write_ini.WriteLine write_ini.WriteLine "[" & section & "]" write_ini.WriteLine itemtrimmed & "=" & myvalue End If read_ini.Close write_ini.Close If objFSO.FileExists(file) then objFSO.DeleteFile file, True End if objFSO.CopyFile temp_ini, file, true objFSO.DeleteFile temp_ini, True End Sub This post has been edited by TheReasonIFail: Apr 8 2008, 10:20 AM |
|
|
|
Apr 8 2008, 12:36 PM
Post
#4
|
|
|
K-Mart-ian Legend ![]() ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 1155 Joined: 28-April 06 From: Buffalo, NY Member No.: 94953 OS: Server 2008 x64
|
I will definately take a look at those two possibilities once I can get approval to start working on it again.
Does memory timing have any effect on the image at all? And if so, is there any documentation or editorial anywhere online I can find to view its effectiveness/non-effectiveness? |
|
|
|
Apr 8 2008, 01:01 PM
Post
#5
|
|
|
Advanced Member ![]() ![]() ![]() Group: Members Posts: 427 Joined: 25-July 06 From: Charleston, SC Member No.: 105938
|
|
|
|
|
Apr 8 2008, 01:05 PM
Post
#6
|
|
|
MSFN Addict Group: Moderator Posts: 1751 Joined: 14-April 05 From: Wisconsin Member No.: 51914 OS: Vista Enterprise x64
|
the problem isn;t that XP won't detect the wrong HAL, the issue is that after you ghost a machine it has already selected the HAL it will use during install and won;t change unless you manually do it (even with sysprep) say you build and test on a single core machine and puch it to a dual core machine, only a single will be used. vista doesn't have this issue as it is HAL independent.
|
|
|
|
Apr 8 2008, 01:13 PM
Post
#7
|
|
|
Junior ![]() Group: Members Posts: 95 Joined: 8-April 07 From: Berwyn, Illinois Member No.: 134809 OS: XP Pro x86
|
the problem isn;t that XP won't detect the wrong HAL, the issue is that after you ghost a machine it has already selected the HAL it will use during install and won;t change unless you manually do it (even with sysprep) say you build and test on a single core machine and puch it to a dual core machine, only a single will be used. vista doesn't have this issue as it is HAL independent. But if your base image is syspreped using the ACPI HAL, you should be able to update it to any other HAL without a problem. This post has been edited by TheReasonIFail: Apr 8 2008, 01:13 PM |
|
|
|
Apr 8 2008, 10:51 PM
Post
#8
|
|
|
MSFN Master Group: Super Moderator Posts: 2706 Joined: 24-September 03 From: Indiana Member No.: 7346 OS: Vista Enterprise x86
|
But if your base image is syspreped using the ACPI HAL, you should be able to update it to any other HAL without a problem. Actually that is not technically correct. You can update the HAL to another compatible HAL. You can force the change between non-compatible HAL's as the script above does but it is not supported by Microsoft. |
|
|
|
Apr 9 2008, 06:40 AM
Post
#9
|
|
|
Junior ![]() Group: Members Posts: 95 Joined: 8-April 07 From: Berwyn, Illinois Member No.: 134809 OS: XP Pro x86
|
Actually that is not technically correct. You can update the HAL to another compatible HAL. You can force the change between non-compatible HAL's as the script above does but it is not supported by Microsoft. Well, it works great for us here when the base PC is an ACPI PC. |
|
|
|
Apr 9 2008, 07:06 AM
Post
#10
|
|
|
MSFN Addict Group: Moderator Posts: 1751 Joined: 14-April 05 From: Wisconsin Member No.: 51914 OS: Vista Enterprise x64
|
Actually that is not technically correct. You can update the HAL to another compatible HAL. You can force the change between non-compatible HAL's as the script above does but it is not supported by Microsoft. Well, it works great for us here when the base PC is an ACPI PC. i think we all agree the script will work as anyone who is updating their HAL in their XP image is doing the same thing, Iceman was just pointing out the specifics. back to the original post, Go download the Microsoft deployment Toolkit and the WAIK, you will be able to create both XP, 2003, Vista and 2008 based images from that tool, it will also intergrate into SCCM if you are looking to move to that from SMS |
|
|
|
Apr 10 2008, 09:57 AM
Post
#11
|
|
|
K-Mart-ian Legend ![]() ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 1155 Joined: 28-April 06 From: Buffalo, NY Member No.: 94953 OS: Server 2008 x64
|
Actually that is not technically correct. You can update the HAL to another compatible HAL. You can force the change between non-compatible HAL's as the script above does but it is not supported by Microsoft. Well, it works great for us here when the base PC is an ACPI PC. i think we all agree the script will work as anyone who is updating their HAL in their XP image is doing the same thing, Iceman was just pointing out the specifics. back to the original post, Go download the Microsoft deployment Toolkit and the WAIK, you will be able to create both XP, 2003, Vista and 2008 based images from that tool, it will also intergrate into SCCM if you are looking to move to that from SMS Thanks I've already used the WAIK but our MS rep told us we can't use that anymore. So I am switching to OPK instead because of our licensing. It works the same. I've got a handle on Vista and 2008, but we get the choice of moving from Ghost to WDS for XP and I'm trying to make sure it will work out properly once we switch. The only issue I have with XP on HALs is the following: We create XP images on a per-board basis, not a big mess of boards. So the only thing we will see in a different cfg with one image is perhaps a Celeron vs a Core 2 or on the other side a X64 vs a LE1620. Either way, the CPU is the only thing that will change. All of the boards we use are set up as ACPI. The deal is that XP Pro SP2 detects the HAL at the start of Windows loading so it won't crash if you change the processor out. Of course the original image needs to be made on a UP, because it is designed to scale to an MP if it detects a CPU change. This is what is noted in the KB article I posted above under bullet 4. I also tested this using identicle configs except for CPU type. Install everything on the PC with the Celeron (including drivers and apps). Make note of the HWID in Devmgmt and the full HAL name given. Turn the machine off, take out the HDD, put it in the machine with the Core 2, boot up and compare against the HAL again. It changes to the MP HAL with no errors to be found. So this is why I am wondering why it is even needed to change the HAL after imaging, or even have multiple images for different HALs in this case. Yes I understand the need for this if 1) you aren't using similar hardware 2) you aren't using XP Pro SP2 or newer. But since XP can autodetect the HAL, you should be able to use the same image for either MP or UP case. Of course you couldn't use it if you disabled ACPI or tried to put it on an IA64 or what have you. Anyways its lunch time for me. Let's talk about this some more eh? |
|
|
|
Apr 10 2008, 10:37 AM
Post
#12
|
|
|
MSFN Master Group: Super Moderator Posts: 2706 Joined: 24-September 03 From: Indiana Member No.: 7346 OS: Vista Enterprise x86
|
most people who want to cover multiple HALs seem to want to cover all 7 XP HALs with one image. If you build you image on a UP ACPI HAL and deploy to UP or MP ACPI HAL systems you should be fine. If you build on a MP system you will need to use the sysprep option to downgrade the HAL to UP as downgrading is not automatic.
I'm curious as to why your rep told you that you could not use the WAIK. |
|
|
|
Apr 10 2008, 11:55 AM
Post
#13
|
|
|
K-Mart-ian Legend ![]() ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 1155 Joined: 28-April 06 From: Buffalo, NY Member No.: 94953 OS: Server 2008 x64
|
I'm curious as to why your rep told you that you could not use the WAIK. We do/will not use WDS to deploy to corporate pcs, ie workstations and servers within our company. We got this understanding: WAIK is to deploy within your own company OPK is to deploy onto machines that are to be sold/redistributed In addition to using WDS with the OPK, we are also able to make product recovery media with it. |
|
|
|
Apr 26 2008, 02:53 PM
Post
#14
|
|
|
Group: Members Posts: 8 Joined: 22-July 05 Member No.: 65611
|
I don't know about anyone else but I use the following script. It runs after the WIM has been copied to C:\ and updates sysprep.inf with the information for the appropiate HAL. So far it hasn't failed me yet. So does that script automatically choose the multiprocessor ACPI HAL or the normal uniprocessor ACPI HAL based on what type of computer it's being installed on? Where in the setup process can I insert the script? Although I have used RIS in the past, I am new to WDS, and I'd like to not have to have two different images on the WDS server if possible. |
|
|
|
Apr 29 2008, 10:30 AM
Post
#15
|
|
|
Junior ![]() Group: Members Posts: 95 Joined: 8-April 07 From: Berwyn, Illinois Member No.: 134809 OS: XP Pro x86
|