tmiller
Posts: 657
Score: 18 Joined: 7/29/2003 From: Iowa Status: offline
|
The best way to chage the HAL on the computer before you sysprep it is to use DEVCON.EXE. Are you using LTI to build your base image or are you doing it by hand. If you are using LTI, then you can just add an entry to your task sequence calls a VB Script. the VB Script should contain these three lines and be found in the same directory as a copy of DEVCON.exe Set WshShell = WScript.CreateObject("WScript.Shell") wshshell.Run "devcon sethwid @ROOT\ACPI_HAL\0000 := +acpipic_up !acpiapic_up", 1, true wshshell.Run "devcon update c:\windows\inf\hal.inf acpipic_up", 1, true This will downgrade the HAL to the most compatible one and you won;t have to remember to do it or mess around in the device manager. Everything you might want to know about hal replacement can be found by googling with the terms "arwidmark" "HAL" and "devcon.exe" Good luck!
|