maniaq Posted June 10, 2005 Posted June 10, 2005 what should I do with this folder, if i want to put in the $OEM$\$1\Drivers\000_chipset should i put these files to the xp folder, or should i leave them where thay are.tnx
maniaq Posted June 10, 2005 Author Posted June 10, 2005 in the file infnswr.txt there are these lines, do they have anything to do to the intel motherboard?[ComputerSettings]PowerScheme=Presentation[Branding]BrandIEUsingUnattended=Yes[Networking]InstallDefaultComponents=Yes[NetAdapters]Adapter1=params.Adapter1[params.Adapter1]INFID=*[NetClients]MS_MSClient=parama.MS_MSClient[NetServices]MS_SERVER=params.MS_Server[NetProtocols]MS_TCPIP=params.MS_TCPIP[params.MS_TCPIP]DNS=YesUseDomainNameDevolution=NoEnableLMHosts=YesAdapterSelections=params.MS_TCPIP.Adapter1[params.MS_TCPIP.Adapter1]SpecificTo=Adapter1DHCP=YesWINS=NoNetBIOSOptions=0
htc Posted June 10, 2005 Posted June 10, 2005 (edited) Suggestion:1) delete the file infnswr.txt in your driver folder completely - it is useless there.2) the "SP" folder is only for the install routine to decide which .inf/.cat paar will be installed(e.g. ich5ide.* or ichid2.*). They do parctically the same thing so I've deleted that folder. This is also my suggestion. Edited June 10, 2005 by htc
htc Posted June 10, 2005 Posted June 10, 2005 By the way, a "dobbled existing" of the files(*ide.* and *id2.*) is not helpful, in fat harmful. "Either... or.." is correct.
Martin Zugec Posted June 10, 2005 Posted June 10, 2005 For chipset installations, I am using this script:'Automaticka instalacia ovladacov pre chipset a nastavenie biosu'Martin Zugec'12.7.2004'20.9.2004Option ExplicitOn Error Resume NextDim objWMIService, objShellDim strBoard, arrayBoards, strInstallPathDim strTypPocitacaSet objWMIService = GetObject("winmgmts:root\cimv2")Set arrayBoards = objWMIService.InstancesOf("Win32_BaseBoard", 48)Set objShell = Wscript.CreateObject("Wscript.shell")strInstallPath = Left(WScript.ScriptFullName,Len(Wscript.ScriptFullName) - Len(WScript.ScriptName + "n")) & "\"for each strBoard in arrayBoards Select Case Trim(LCase(strBoard.Product)) Case "0t9369" 'Wscript.Echo "Notebook D600" NainstalovanieChipsetu("d600") Case "optiplex gx150" 'Wscript.Echo "OptiPlex GX150" NainstalovanieChipsetu("gx150") Case "00t606","02x378" 'Wscript.Echo "Optiplex GX260" NainstalovanieChipsetu("gx260") Case "0x1078","0r2472","0u1324" 'Wscript.Echo "OptiPlex GX270" NainstalovanieChipsetu("gx270") Case "0n4846","0968h","0g5611","0f7739","0g8310" 'Wscript.Echo "OptiPlex GX280" NainstalovanieChipsetu("gx280") Case Else Call OdoslanieMailu 'wscript.echo ". Nepodarilo sa nainstalovat ovladac pre chipset!" End SelectnextCall RestartPocitacaSet objWMIService = NothingSet arrayBoards = NothingSet objShell = NothingWscript.Quit(0)Sub OdoslanieMailu Dim objEmail, objNetwork Dim strComputerName Set objEmail = CreateObject("CDO.Message") Set objNetwork = CreateObject("Wscript.Network") strComputerName = objNetwork.ComputerName With objEmail .From = strComputerName & "@domain.com" .To = "technicians@domain.com" .Subject = "Error" .Textbody = "Chipset driver could not be installed. Motherboard identificator is " & strBoard.Product & "Please contact administrator." .Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 .Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.domain.com" .Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 .Configuration.Fields.Update .Send End With Set objEmail = Nothing Set objNetwork = NothingEnd SubFunction NainstalovanieChipsetu(strTypPocitaca) 'Wscript.Echo strInstallPath & strTypPocitaca & "\setup.exe -b -s" objShell.Run strInstallPath & strTypPocitaca & "\setup.exe -b -s", 1, True 'wscript.echo ". Nainstalovany chipset pre pocitac " & strTypPocitacaEnd FunctionSub RestartPocitaca objShell.Run "shutdown.exe -r -f -t 01", 0, FalseEnd SubDirectory structure isChipset\ -D600\ -GX150\ -GX260\ -GX270\ -GX280\ -chipset.vbs
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now