Jump to content

sintaxasn

Member
  • Posts

    46
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    country-ZZ

Everything posted by sintaxasn

  1. Hey, this is a nice idea - we use something similar for our build, but on a per-machine basis as opposed to a per-device. We use: __ WQL = "Win32_ComputerSystemProduct" For Each oItem In GetObject("winmgmts:\\.").InstancesOf(WQL) sVendor = oItem. sMachineName = oItem.Version sMachineModel = oItem.Name Next WQL = Nothing __ We then match the machine vendor, name and model to some INI files to determine what should be installed for each machine type. Cheers, Dan
  2. Yep, I initially tried this method but it added about 30 minutes to the build time, as sysprep takes ages to build the SysprepMassStorage section. Instead, we prepopulate the SysprepMassStorage with the most common (see my previous posts) and didnt bother with the rest. Oh also, using BuildSysprepMassStorage didn't always work for us as it didn't take into account the Intel Chipset drivers (we dont have these added until during Sysprep). Cheers, Dan.
  3. I've noticed that if it doesn't find the unattended.txt, you'll get the install/upgrade message. Make sure the ini points to the full path, so if you're deploying to a temp location, reference that location and it should work. Dan
  4. Xeroh, not too sure what the problem is there. It should all be doable through the SIF Jachin, You need to do the following: - Customise an unattended file with the NCIMAN utility provided in the admin folder of the client install - Edit ACU.Ini. You need at least the following settings [LaunchInstall] Launch=Yes [DisplayDialog] Display=No [unattendFile] Use=Yes File=location and name of your unattend.txt Instead of using SetupNW.Exe to install, run ACU.Exe. It'll do a silent install without prompts. Cheers, Dan.
  5. Roaming profiles not an option for us - however, looking at a VERY nice product right now which would essentially wipe out the need to migrate data, and ensures we have a backup of everything on a users machine at all times:Connected Dataprotector Need a 5/6 Terabyte NAS behind it though... Pricey Throwing money at problems is a double-negative for places like ours. You're losing money on downtime, and money on getting someone else to sort it out. And someone's ALWAYS accountable when money has to be spent!
  6. hehe, if you're going to make it that simple, then yes - this would *probably* do the trick. As far as I'm aware, switching the DLLs works without the need for regkey changes or any playing with devcon. you're tradeoff is automation though. and you've still got the support issue. Dan
  7. Identifying the CPU type isn't helpful, as then you need something that determines what CPU has what HAL type - probably an extensive INI file or something, and you'd need to maintain it. At least with the SMBIOSD.Exe, it tells you either it's APIC or not. And I haven't been able to track down the same info through WMI. With the method you outline, you've got two problems: A: You have to have a HAL to get into Windows, and you're bound to find some machines that wont boot off your predefined HAL (even the standard PC one.) - hence you wont be able to get into Windows to change it. You *MIGHT* be able to get around this by using WinPE to do your imaging. Once the image is on the machine, detect the HAL type and switch the files. B: HAL switching isn't supported by Microsoft. If you end up having a problem affecting all your machines, hell, it could even be an Office issue - they have every right to tell you to sod off, even if the problem IS their problem. Unfortunately, there's no workaround for problem B, but if you aren't concerned, well i guess on your own head be it. Cheers, Dan
  8. Viper, yep it's VBS. I haven't debugged it but it should work. Put the exe in the same folder, or reference a folder in the CMD /C<commandhere> part. After it all, you'd probably have something like If sAPIC = True Then oShell.Run "DevCon <do_your_APIC_swapping_here>",1, True End If Dont have time to figure all this stuff out tho! Re Maxamoto's comments on RIS, yep - RIS *WOULD* avoid this problem, but if you're in the same situation as our company is, we have about an hour to migrate a machine from 2000 to XP: Backup user data (circa 4GB) Image a machine (5GB) Let sysprep run and machine config itself Restore user data We JUST about manage by using imaging (from USB 2.0 drives). Imaging is the only way to get turnaround times like this. I know some of our other european offices use RIS, but they dont have ridiculous SLA's to meet! If you aren't under time contraints, consider RIS Dan
  9. Eric, Can you create an image (unttended build) *ON* this machine-type and subsequently get the same image to boot? If it wont boot, the problem must be something else other than HAL...I'm a bit confused. Are you saying that you're creating an APIC build on a different machine and trying to get it up and running on the Sony? If this is the case, maybe this HAL issue is bigger than I thought. I'm no expert, just speaking from my own experience. Incidentally, what's your imaging software? No worries. I was stuck on this one for a number of weeks, at the hair-pulling-out stage - I wouldn't wish it on anyone! Dan
  10. Viper, keep in mind you've prob only got two images to worry about, PIC and APIC (whether it's UP or MP, it doesnt matter). With this in mind, we know the SMBiosD.Exe can distinguish between a PIC and APIC machine by telling us if it supports APIC. So lets try something... _____ Dim oShell, oFSO Dim oOutputFile, aBiosString(), iBiosRecords, sCurBiosString, sAPIC Set oShell = WScript.CreateObject("WScript.Shell") Set oFSO = CreateObject("Scripting.FileSystemObject") ' Set our APIC value to initially be false sAPIC = False sOutputFile = oShell.ExpandEnvironmentStrings("%TEMP%") & "\Bios.TXT" oShell.Run "CMD.Exe /CSMBiosD.Exe > " & sOutputFile,0,True 'Read temp file into an Array aBiosString = Split(UCase(oFSO.OpenTextFile(sOutputFile,1,False).ReadAll),vbCrlf) iBiosRecords = CStr(UBound(aBiosString)+1) 'Delete temp file oFSO.DeleteFile sOutputFile 'Find the exception we're looking for For Each sCurBiosString in aBiosString If Instr(1,Ucase(sCurBiosString),"ON-CHIP APIC SUPPORTED",vbBinaryCompare) <> 0 Then sAPIC = True Exit For End If Next _______ As far as switching HALs, devcon's probably the way to do it, sorry I don't have more time to investigate. Cheers, Dan.
  11. hey there, there's a few ways you can do it. With Notes 6.5.x, here's what we do, obviously all scripted: Install the MSI - <msi_name>.MSI /QB! NOTESDIR=C:\Notes DATADIR=C:\Notes\Data ALLUSERS=0 This creates a flat install of Notes as opposed to a per-user install. Per-user installs the Data folder structure to C:\Documents And Settings\<username>\Local Settings\Application Data\Lotus\Notes\Data and is specific to each user. Personalise Notes - Copy a clean Notes.INI to C:\Notes. This should include a line "ConfigFile=ConfigFile.Txt" Copy your customised ConfigFile.Txt - I've attached a sample one below. You need to change a few items with a script, like mail server, sametime info, user details Copy ID file to C:\Notes\Data, along with a customised bookmark.NTF and pernames.NTF (that's if you need to do customisations). Sample ConfigFile: ;This file is used to setup the Notes client environment. ; ; ;*****User Details******** ; ;Username= [e.g. User Name/OU/O] ;KeyfileName= [e.g. C:\Notes\Data\User.ID] ; ;;*****Server Details******** ; ;Domino.Name [Domino server name e.g. MAILSERVER1] ;Domino.Address [iP address of Domino server] ;Domino.Port=TCPIP ;Domino.Server= [1 to connect to the server, 0 for no connection] ; ;*****Internet Accounts******** ; ; AdditionalServices=0 ;Mail.Incoming.Name= [incoming POP or IMAP server name] ;Mail.Incoming.Server= [1 for POP or 2for IMAP] ;Mail.Incoming.Protocol= ;Mail.Incoming.Username= [Mail account user name or login name] ;Mail.Incoming.Password= [Mail account password] ;Mail.Incoming.SSL= [1 to use SSL; 0 not to use SSL] ;Mail.Outgoing.Name= [Outgoing mail account name, a friendly name used to refer to these settings] ;Mail.Outgoing.Server= [Outgoing mail (SMTP) server name] ;Mail.Outgoing.Address= [user's Internet mail address, such as user@isp.com] ;Mail.InternetDomain= [internet Mail domain name such as isp.com] ;Directory.Name= [Directory account name, a friendly name used to refer to these settings] ;Directory.Server= [Directory (LDAP) server name] ; ; ;*****Dialup settings******** ; ;NetworkDial.EntryName= [Name of remote network dialup phone book entry] ;NetworkDial.Phonenumber= [Dial-in number] ;NetworkDial.Username= [Remote network user name] ;NetworkDial.Password= [Remote network password] ;NetworkDial.Domain= [Remote network domain] ;DirectDial.Phonenumber= [Dial-in number] ;DirectDial.Prefix= [Dialup prefix, if required. For example, 9 to access an outside line.] ;DirectDial.Port= [COM port to which the modem is connected] ;DirectDial.Modem= [File specification of modem file] ; ; ;*****Proxy Settings******** ; ;Proxy.HTTP= [HTTP proxy server and port - e.g, proxy.isp.com:8080] ;Proxy.FTP= [FTP proxy server and port - e.g, proxy.isp.com:8080] ;Proxy.SSL= [sSL proxy server and port - e.g, proxy.isp.com:8080] ;Proxy.HTTPTunnel= [HTTP Tunneling proxy server and port - e.g, proxy.isp.com:8080] ;Proxy.SOCKS= [sOCKS proxy server and port - e.g, proxy.isp.com:8080] ;Proxy.None= [Do not use a proxy for these hosts or domains] ;Proxy.UseHTTP= [use the HTTP proxy server for FTP, Gopher, and SSL security proxies] ;Proxy.Username= [user name if logon is required] ;Proxy.Password= [user password] ; ; ;*****Replication Settings******** ; ;Replication.Threshold= [Transfer outgoing mail if this number of messages held in local mailbox] ;Replication.Schedule= [Enable replication schedule] ; ; ;*****Instant Messaging Settings******** ; IM.Server= IM.Port=1533 IM.ConnectWhen=1 IM.Protocol=0 ;IM.ProxyType= ;IM.ProxyServer= ;IM.ProxyPort= ;IM.ServerNameResolve= ;IM.ProxyUsername= One thing to note, you can NOT get rid of the "Notes Setup is Complete" message when you first start notes. I've tried in vain, and ended up having to use a sendkeys. There's probably more that've I've forgotten, and you'll find more info in the Notes whitepapers on how to set up everything (like your standard Notes.INI). Hope this helps, Dan.
  12. Let me be the first to say, well done, excellent solution. I'm actually working on something pretty much identical for my company, which basically allows every country to configure XP to their liking, while still having a common configuration (apps, policies etc). Dan
  13. Hey, Have a look here. http://www.msfn.org/board/index.php?showto...ndpost&p=336436 It's possible, but difficult and not advisable for corporate environments. Dan
  14. Regarding building this into Sysprep, well, you can't really modify sysprep itself. You could potentially use Devcon prior to sysprepping your machine to downgrade the HAL type to a Standard PC which *should* work with any machine type, and then script something to change it back once the machine has booted up. I was going to investigate this, but as I said before, MS doesnt support it so I can't argue with that (from an enterprise support perspective). You're newer Sony laptop is probably still PIC. The only laptop I've come across so far that's APIC is a ThinkPad T43 (might be a newer chipset, or maybe something IBM specific). You can do what I do to check: Take the attached file Run it from a DOS box with the commandline : SMBiosD.Exe > Output.Txt Open the Output.Txt created in Notepad Ctrl-F and search for APIC If it is found, the machine is either an APIC uniprocessor or multiprocessor machine. The line should be "On-chip APIC supported" If not, it is likely a PIC machine Dan SMBiosD.Exe
  15. well, you can put it in RunOnceEx if you want. Operations like this I usually put in a cleanup script and call it through RunOnceEx as the last option, so various files get deleted and additional DLLs get registered. You could probably also put it in CMDLines.TXT if you wanted.
  16. You could try REGSVR32 /S /U Zipfldr.DLL No paths needed as it'll find the right file in System32 This silently (/S) unregisters (/U) the DLL Cheers, Dan.
  17. none yet that I'm aware of, but I would think so, and I'd bloody hope so. Longhorn is going to be all about ease of corporate deployment so they'd better solve this one. I hear you about the fact that Windows Install itself can figure it out but sysprep cant. Not exactly sure why but I'm sure there's some in-depth technical explanation for it. That or someone got lazy... Cheers, D
  18. Check out this link: http://www.nforcershq.com/forum/viewtopic.php?t=12269 you could probably adapt this further to automatically switch HAL when you actually get into windows (script it somehow), but you still have the initial selection which needs to be manual. hope this helps Dan
  19. One more thing - make sure that there are no drivers installed during windows setup, but instead, install them after sysprep kicks in. You can do this by: - From your WINNT.SIF, Removing the OEMPnPDrivers line - Putting all your drivers somewhere in $OEM$\$1 - In your Sysprep.INF, putting in the OEMPnPDrivers line and adding the paths to the drivers there instead This will ensure that you dont have a bunch of unnecessary drivers from one hardware type, that could potentially cause problems for another when you put the image on it. Dan
  20. Actually, I probably won't need to re-explain. Take a look at this, it's everything you'll want to know: http://support.microsoft.com/?kbid=309283
  21. Damnit. I practically just wrote an essay in this original reply, then happened to go back through some of my documentation and remembered something that made it all irrelevant! grrr... I apologise if any of my previous explainations were vague or inaccurate. I realised I mentioned PIC and APCI as if they were two different things. However, PIC *CAN* be ACPI. Let me explain... There's a few different HAL types: ACPI PIC ACPI APIC-Uniprocessor ACPI APIC-Multiprocessor MPS (Non-ACPI) PIC MPS (Non-ACPI) APIC-Uniprocessor MPS (Non-ACPI) APIC-Multiprocessor You'll be concerned with ACPI HALs, as MPS (I *think) are only for very old machines. In device manager, if you see "Advanced Configuration Power Interface (APCI) PC", this is an ACPI PIC HAL. An ACPI PIC HAL is not compatible with ACPI APIC HALs, but, both ACPI APIC HALs are compatible with each other, ie. If you put a Uniprocessor HAL on a Multiprocessor system, Windows will automatically upgrade to Multiprocessor and vice versa. Now, getting back to your problem - This would mean that the Dell P3 Desktop would be an ACPI PIC HAL, while you're HP DC5000 would be ACPI APIC-UP. You need an image for both ACPI PIC, and ACPI APIC HALs so immediately you need two images. I can't comment on the AMD machine as there may be other factors here (I don't have an AMD machine to do any testing on). Additionally, disabling HT on the DC5000 doesn't change the HAL type, just switches off the additional functionality so you're better off just switching it back on RIGHT! Hope that's definitative enough (and not too confusing). If not, let me know, I'll see if I can explain it better. Dan
  22. Ok, firstly, all that stuff you have in SysprepMassStorage is probably not necessary. In fact, in my initial test builds, I had loads in there that I got off some other forum, bu I had problems, so I trimmed it down and started again. Here's my one: [sysprepMassStorage] Primary_IDE_Channel = %SystemRoot%\INF\MSHDC.INF Secondary_IDE_Channel = %SystemRoot%\INF\MSHDC.INF PCMCIA\*PNP0600=%SystemRoot%\INF\MSHDC.INF *PNP0600=%SystemRoot%\INF\MSHDC.INF PCMCIA\KME-KXLC005-A99E=%SystemRoot%\INF\MSHDC.INF PCMCIA\_-NinjaATA--3768=%SystemRoot%\INF\MSHDC.INF PCMCIA\FUJITSU-IDE-PC_CARD-DDF2=%SystemRoot%\INF\MSHDC.INF *AZT0502=%SystemRoot%\INF\MSHDC.INF PCI\CC_0101=%SystemRoot%\INF\MSHDC.INF PCI\VEN_10B9&DEV_5215=%SystemRoot%\INF\MSHDC.INF PCI\VEN_10B9&DEV_5219=%SystemRoot%\INF\MSHDC.INF PCI\VEN_10B9&DEV_5229=%SystemRoot%\INF\MSHDC.INF PCI\VEN_1097&DEV_0038=%SystemRoot%\INF\MSHDC.INF PCI\VEN_1095&DEV_0640=%SystemRoot%\INF\MSHDC.INF PCI\VEN_1095&DEV_0646=%SystemRoot%\INF\MSHDC.INF PCI\VEN_0E11&DEV_AE33=%SystemRoot%\INF\MSHDC.INF PCI\VEN_8086&DEV_1222=%SystemRoot%\INF\MSHDC.INF PCI\VEN_8086&DEV_1230=%SystemRoot%\INF\MSHDC.INF PCI\VEN_8086&DEV_7010=%SystemRoot%\INF\MSHDC.INF PCI\VEN_8086&DEV_7111=%SystemRoot%\INF\MSHDC.INF PCI\VEN_8086&DEV_2411=%SystemRoot%\INF\MSHDC.INF PCI\VEN_8086&DEV_2421=%SystemRoot%\INF\MSHDC.INF PCI\VEN_8086&DEV_7199=%SystemRoot%\INF\MSHDC.INF PCI\VEN_1042&DEV_1000=%SystemRoot%\INF\MSHDC.INF PCI\VEN_1039&DEV_0601=%SystemRoot%\INF\MSHDC.INF PCI\VEN_1039&DEV_5513=%SystemRoot%\INF\MSHDC.INF PCI\VEN_10AD&DEV_0001=%SystemRoot%\INF\MSHDC.INF PCI\VEN_10AD&DEV_0150=%SystemRoot%\INF\MSHDC.INF PCI\VEN_105A&DEV_4D33=%SystemRoot%\INF\MSHDC.INF PCI\VEN_1106&DEV_0571=%SystemRoot%\INF\MSHDC.INF PCI\VEN_8086&DEV_24D0=%SystemRoot%\Bin\00_Chip\ICH5Core.INF PCI\VEN_8086&DEV_24DC=%SystemRoot%\Bin\00_Chip\ICH5Core.INF PCI\VEN_8086&DEV_24D3=%SystemRoot%\Bin\00_Chip\ICH5Core.INF PCI\VEN_8086&DEV_2640=%SystemRoot%\Bin\00_Chip\ICH6Core.INF PCI\VEN_8086&DEV_2641=%SystemRoot%\Bin\00_Chip\ICH6Core.INF PCI\VEN_8086&DEV_2642=%SystemRoot%\Bin\00_Chip\ICH6Core.INF PCI\VEN_8086&DEV_27B0=%SystemRoot%\Bin\00_Chip\ICH7Core.INF PCI\VEN_8086&DEV_27B1=%SystemRoot%\Bin\00_Chip\ICH7Core.INF PCI\VEN_8086&DEV_27B8=%SystemRoot%\Bin\00_Chip\ICH7Core.INF PCI\VEN_8086&DEV_27B9=%SystemRoot%\Bin\00_Chip\ICH7Core.INF Secondly, the HP DC5000 is a Hyperthreading machine - ie. APIC Multiprocessor HAL. The laptop is more than likely a PIC HAL (all of our laptops except for the ThinkPad T43 which is only just out, is PIC) so both of these machines require two separate images. The general rule of thumb (for me at least) is, all laptops (except really really really new ones) and laptops prior to P4 need an image built on a PIC HAL, P4 desktops (especially with Hyperthreading) need an APIC HAL. It doesn't matter if you built it on a Uniprocessor or Multiprocessor machine. So try using the above sysprep section in yours, and make sure that you've got the right HAL type. FYI, you can usually tell if it's a massstorage problem or HAL problem quite easily - MassStorage, you'll get a bluescreen error. HAL, you generally don't get anything (black screen). Oh, one other caveat. Sometimes a PIC HAL *WILL* work on an APIC machine, ie, lets say you build your image on a laptop. It might boot on a desktop with HT, *BUT*, it's (a) not supported by Microsoft, and (B) still a uniprocessor HAL so HT will NOT be active. Cheers, Dan.
  23. Make sure you add these to your mass storage section as well as the Intel chipset ones, and add the -reseal switch to Sysprep. Not sure if it'll work for you, but definately works for me without probs: Primary_IDE_Channel = %windir%\inf\mshdc.inf Secondary_IDE_Channel = %windir%\inf\mshdc.inf PCMCIA\*PNP0600=%systemroot%\inf\mshdc.inf *PNP0600=%systemroot%\inf\mshdc.inf PCMCIA\KME-KXLC005-A99E=%systemroot%\inf\mshdc.inf PCMCIA\_-NinjaATA--3768=%systemroot%\inf\mshdc.inf PCMCIA\FUJITSU-IDE-PC_CARD-DDF2=%systemroot%\inf\mshdc.inf *AZT0502=%systemroot%\inf\mshdc.inf PCI\CC_0101=%systemroot%\inf\mshdc.inf PCI\VEN_10B9&DEV_5215=%systemroot%\inf\mshdc.inf PCI\VEN_10B9&DEV_5219=%systemroot%\inf\mshdc.inf PCI\VEN_10B9&DEV_5229=%systemroot%\inf\mshdc.inf PCI\VEN_1097&DEV_0038=%systemroot%\inf\mshdc.inf PCI\VEN_1095&DEV_0640=%systemroot%\inf\mshdc.inf PCI\VEN_1095&DEV_0646=%systemroot%\inf\mshdc.inf PCI\VEN_0E11&DEV_AE33=%systemroot%\inf\mshdc.inf PCI\VEN_8086&DEV_1222=%systemroot%\inf\mshdc.inf PCI\VEN_8086&DEV_1230=%systemroot%\inf\mshdc.inf PCI\VEN_8086&DEV_7010=%systemroot%\inf\mshdc.inf PCI\VEN_8086&DEV_7111=%systemroot%\inf\mshdc.inf PCI\VEN_8086&DEV_2411=%systemroot%\inf\mshdc.inf PCI\VEN_8086&DEV_2421=%systemroot%\inf\mshdc.inf PCI\VEN_8086&DEV_7199=%systemroot%\inf\mshdc.inf PCI\VEN_1042&DEV_1000=%systemroot%\inf\mshdc.inf PCI\VEN_1039&DEV_0601=%systemroot%\inf\mshdc.inf PCI\VEN_1039&DEV_5513=%systemroot%\inf\mshdc.inf PCI\VEN_10AD&DEV_0001=%systemroot%\inf\mshdc.inf PCI\VEN_10AD&DEV_0150=%systemroot%\inf\mshdc.inf PCI\VEN_105A&DEV_4D33=%systemroot%\inf\mshdc.inf PCI\VEN_1106&DEV_0571=%systemroot%\inf\mshdc.inf
  24. htc, you're solution only solves the Mass Storage issue and not the HAL issue. Also, putting the entries into Sysprep MassStorage Section seems a lot safer to me as it's how MS intend you to do it. HAL is quite difficult to work around although it *CAN* be done. I haven't put the effort into doing it as MS Premier Support have confirmed it won't be supported by Microsoft and that's something that's important to us. Re: auto-installing drivers after Sysprep - that's what we do. During your unattended install, you dont have any drivers available. In your $OEM$ somewhere, copy down all the drivers you need. As part of Sysprep.INF, you specify the driver locations - see: http://www.msfn.org/board/index.php?showtopic=43483&hl= for info on how I do it. Once you seal your machine with sysprep - take an image of it. When you put it on a machine, it'll do the driver installs then. Hope this helps. Dan
  25. Hi, We had a similar problem. We now have two builds - One PIC HAL (for most of our existing laptops), and an APIC Uniprocessor HAL for some newer laptops and our desktops. Sysprep in XP will automatically upgrade an APIC Uniprocessor HAL to a Multiprocessor (for HT machines). We did have some major problems with Mass Storage drivers but have since resolved by using the following: "%LOCALDRIVE%\Sysprep\Sysprep.Exe" -mini -activated -reseal -shutdown -quiet --- Snip from Sysprep.INF --- [sysprepMassStorage] Primary_IDE_Channel = %windir%\inf\mshdc.inf Secondary_IDE_Channel = %windir%\inf\mshdc.inf PCMCIA\*PNP0600=%systemroot%\inf\mshdc.inf *PNP0600=%systemroot%\inf\mshdc.inf PCMCIA\KME-KXLC005-A99E=%systemroot%\inf\mshdc.inf PCMCIA\_-NinjaATA--3768=%systemroot%\inf\mshdc.inf PCMCIA\FUJITSU-IDE-PC_CARD-DDF2=%systemroot%\inf\mshdc.inf *AZT0502=%systemroot%\inf\mshdc.inf PCI\CC_0101=%systemroot%\inf\mshdc.inf PCI\VEN_10B9&DEV_5215=%systemroot%\inf\mshdc.inf PCI\VEN_10B9&DEV_5219=%systemroot%\inf\mshdc.inf PCI\VEN_10B9&DEV_5229=%systemroot%\inf\mshdc.inf PCI\VEN_1097&DEV_0038=%systemroot%\inf\mshdc.inf PCI\VEN_1095&DEV_0640=%systemroot%\inf\mshdc.inf PCI\VEN_1095&DEV_0646=%systemroot%\inf\mshdc.inf PCI\VEN_0E11&DEV_AE33=%systemroot%\inf\mshdc.inf PCI\VEN_8086&DEV_1222=%systemroot%\inf\mshdc.inf PCI\VEN_8086&DEV_1230=%systemroot%\inf\mshdc.inf PCI\VEN_8086&DEV_7010=%systemroot%\inf\mshdc.inf PCI\VEN_8086&DEV_7111=%systemroot%\inf\mshdc.inf PCI\VEN_8086&DEV_2411=%systemroot%\inf\mshdc.inf PCI\VEN_8086&DEV_2421=%systemroot%\inf\mshdc.inf PCI\VEN_8086&DEV_7199=%systemroot%\inf\mshdc.inf PCI\VEN_1042&DEV_1000=%systemroot%\inf\mshdc.inf PCI\VEN_1039&DEV_0601=%systemroot%\inf\mshdc.inf PCI\VEN_1039&DEV_5513=%systemroot%\inf\mshdc.inf PCI\VEN_10AD&DEV_0001=%systemroot%\inf\mshdc.inf PCI\VEN_10AD&DEV_0150=%systemroot%\inf\mshdc.inf PCI\VEN_105A&DEV_4D33=%systemroot%\inf\mshdc.inf PCI\VEN_1106&DEV_0571=%systemroot%\inf\mshdc.inf ; The following only work if you have the latest chipset drivers in the location C:\Bin\00_Chip (can be changed though) PCI\VEN_8086&DEV_24D0=C:\Bin\00_Chip\ich5core.inf PCI\VEN_8086&DEV_24DC=C:\Bin\00_Chip\ich5core.inf PCI\VEN_8086&DEV_24D3=C:\Bin\00_Chip\ich5core.inf PCI\VEN_8086&DEV_2640=C:\Bin\00_Chip\ich6core.inf PCI\VEN_8086&DEV_2641=C:\Bin\00_Chip\ich6core.inf PCI\VEN_8086&DEV_2642=C:\Bin\00_Chip\ich6core.inf PCI\VEN_8086&DEV_27B0=C:\Bin\00_Chip\ich7core.inf PCI\VEN_8086&DEV_27B1=C:\Bin\00_Chip\ich7core.inf PCI\VEN_8086&DEV_27B8=C:\Bin\00_Chip\ich7core.inf PCI\VEN_8086&DEV_27B9=C:\Bin\00_Chip\ich7core.inf Hope this helps Dan
×
×
  • Create New...