Jump to content

Intel® Chipset Software Utility 7.0.0.1025


Recommended Posts

Posted

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


Posted

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=Yes
UseDomainNameDevolution=No
EnableLMHosts=Yes
AdapterSelections=params.MS_TCPIP.Adapter1

[params.MS_TCPIP.Adapter1]
SpecificTo=Adapter1
DHCP=Yes
WINS=No
NetBIOSOptions=0

Posted (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 by htc
Posted

By the way, a "dobbled existing" of the files(*ide.* and *id2.*) is not helpful, in fat harmful. "Either... or.." is correct.

Posted

For chipset installations, I am using this script:

'Automaticka instalacia ovladacov pre chipset a nastavenie biosu
'Martin Zugec
'12.7.2004
'20.9.2004

Option Explicit
On Error Resume Next

Dim objWMIService, objShell
Dim strBoard, arrayBoards, strInstallPath
Dim strTypPocitaca

Set 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 Select
next

Call RestartPocitaca

Set objWMIService = Nothing
Set arrayBoards = Nothing
Set objShell = Nothing

Wscript.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 = Nothing

End Sub

Function 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 " & strTypPocitaca
End Function

Sub RestartPocitaca
objShell.Run "shutdown.exe -r -f -t 01", 0, False
End Sub

Directory structure is

Chipset\

-D600\

-GX150\

-GX260\

-GX270\

-GX280\

-chipset.vbs

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...