;***********************************************************************
;
; OEMSETUP.INF
;
; This installation script supports Windows NT for the
; IEEE802.11b WLAN PCI Card v2.5
; Copyright (C) 2001, All rights reserved.
;
;***********************************************************************
;***********************************************************************
; This INF supports the install of network adapters
;***********************************************************************
[Identification]
OptionType = NetAdapter
;***********************************************************************
; List all the bus types supported by the adapters in this INF
;***********************************************************************
[PlatformsSupported]
ISA
PCI
PCMCIA
;***********************************************************************
; List of all the adapters supported by this INF
;***********************************************************************
[Options]
; WLAN_PCMCIA
WLAN_PCI
;***********************************************************************
; The displayed names of the adapters listed above
;***********************************************************************
[OptionsTextENG]
; WLAN_PCMCIA = "IEEE802.11b WLAN PCI Card v2.5"
WLAN_PCI = "IEEE802.11b WLAN PCI Card v2.5"
;***********************************************************************
; Name of the driver install disk
;***********************************************************************
[Source Media Descriptions]
1 = "IEEE802.11b WLAN PCI Card v2.5 Installation Disc"
;***********************************************************************
; CONSTANTS FOR USING DIALOGS
;***********************************************************************
[FileConstants-WLAN_PCMCIA]
GenericAdapterName = "IEEE802.11b WLAN PCI Card v2.5"
GenericDriverName = "IEEE802.11b WLAN PCI Card v2.5 Driver"
BusType = 8
BusNumber = 0
[FileConstants-WLAN_PCI]
GenericAdapterName = "IEEE802.11b WLAN PCI Card v2.5"
GenericDriverName = "IEEE802.11b WLAN PCI Card v2.5 Driver"
BusType = 5
BusNumber = 0
[FileConstants-ALL]
DbgPrefix = "WLPCI: "
GenericSysName = "WLPCINDS.sys"
DialogDllName = "WLPCI.dll"
OemSetupName = "OEMWLPCI.inf"
VER_PRODUCT_MAJOR_STR = "1"
VER_PRODUCT_MINOR_STR = "7"
VER_PRODUCT_SUB_MINOR_STR = "29"
ProductVersion = $(VER_PRODUCT_MAJOR_STR)"."$(VER_PRODUCT_MINOR_STR)"."$(VER_PRODUCT_SUB_MINOR_STR)
DriverVersion = $(VER_PRODUCT_MAJOR_STR)"."$(VER_PRODUCT_MINOR_STR)"."$(VER_PRODUCT_SUB_MINOR_STR)
GenericName = "WLPCI"
lowercaseName = "wlpci"
Manufacturer = "Wireless Manufacturer"
DEFAULT_MATCH = "" ; "WLPCI" - Ignore description
;
; PCMCIA Database info
;
CIS_DEVICEID = {"VEN_1260&DEV_3873&SUBSYS_160116A5-53CF"+
}
CIS_MANUFACTURER = {"PCMCIA"+
}
CIS_OPTIONID = {"WLAN_PCMCIA"+
}
;
; PCI device info
;
PCI_DEVICEID = {"3873"+
,"3873"+
}
PCI_MANUFACTURER = {"1260"+
,"1260"+
}
PCI_OPTIONID = {"WLAN_PCI"+
,"WLAN_PCI"+
}
;
; Software
;
ProductSoftwareName = $(GenericName)
ProductSoftwareImagePath = "\SystemRoot\System32\drivers\"$(GenericSysName)
NetRuleSoftwareType = $(lowercaseName)"Sys ndisDriver "$(lowercaseName)"Driver"
NetRuleSoftwareUse = $(SoftwareType)
NetRuleSoftwareBindForm = """"$(lowercaseName)"Sys"" yes no container"
NetRuleSoftwareClass = {$(lowercaseName)"Driver basic"}
NetRuleSoftwareBindable = {$(lowercaseName)"Driver "$(lowercaseName)"Adapter non exclusive 100"}
;
; Hardware
;
ProductHardwareName = $(GenericName)
NetRuleHardwareType = $(lowercaseName)" "$(lowercaseName)"Adapter"
NetRuleHardwareBindForm = " yes yes container"
NetRuleHardwareClass = {$(lowercaseName)"Adapter basic"}
;
; Registry Key
;
ProductKeyName = $(!NTN_SoftwareBase)"\"$(Manufacturer)"\"$(ProductSoftwareName)"\CurrentVersion"
ParamKeyName = $(!NTN_ServiceBase)"\"$(ProductHardwareName)"\Parameters"
PcmciaDataBaseKeyName = $(!NTN_ServiceBase)"\Pcmcia\Database"
NcpaInfOptionsKeyName = $(!NTN_SoftwareBase)"\Microsoft\Ncpa\InfOptions"
[GeneralConstants]
;
; Program flow control variables.
;
from = ""
to = ""
;
; Return codes; Exit_Code is set to one of these
;
ExitCodeOk = 0
ExitCodeCancel = 1
ExitCodeFatal = 2
KeyNull = ""
MAXIMUM_ALLOWED = 33554432
RegistryErrorIndex = NO_ERROR
KeyProduct = ""
KeyParameters = ""
TRUE = 1
FALSE = 0
NoTitle = 0
ExitState = "Active"
DriverPath = $(!STF_NTPATH)\drivers
;
; File names, etc.
;
UtilityInf = "UTILITY.INF"
ParamInf = "NCPARAM.INF"
SubRoutineInf = "SUBROUTN.INF"
SoftwareType = "driver"
Exit_Code = 0
ConfigParam = "CONFIGURE"
;
; EventLog Message File
;
NetEventDLL = "%SystemRoot%\System32\netevent.dll"
IoLogMsgDLL = "%SystemRoot%\System32\IoLogMsg.dll"
[date]
; Now is a list which contains { Sec from 1-1-1970, Year, Month, Day, Hour,
; Minute, Second }
Now = {} ? $(!LIBHANDLE) GetSystemDate
;---------------------------------------------------------------------------
; 1. Identify
;
; DESCRIPTION: To verify that this INF deals with the same type of options
; as we are choosing currently.
;
; INPUT: None
;
; OUTPUT: $($R0): STATUS: STATUS_SUCCESSFUL
; $($R1): Option Type (COMPUTER ...)
; $($R2): Diskette description
;---------------------------------------------------------------------------
[Identify]
Read-Syms Identification
Set Status = STATUS_SUCCESSFUL
Set Identifier = $(OptionType)
Set Media = #("Source Media Descriptions", 1, 1)
Return $(Status) $(Identifier) $(Media)
;------------------------------------------------------------------------
; 2. ReturnOptions:
;
; DESCRIPTION: To return the option list supported by this INF and the
; localised text list representing the options.
;
;
; INPUT: $($0): Language used. ( ENG | FRN | ... )
;
; OUTPUT: $($R0): STATUS: STATUS_SUCCESSFUL |
; STATUS_NOLANGUAGE
; STATUS_FAILED
; STATUS_NOTSUPPORTED
;
; $($R1): Option List
; $($R2): Option Text List
;------------------------------------------------------------------------
[ReturnOptions]
Set Status = STATUS_FAILED
Set OptionList = {}
Set OptionTextList = {}
;
; Check if the language requested is supported
;
Set LanguageList = ^(LanguagesSupported, 1)
IfContains(i) $($0) in $(LanguageList)
;
; Check if the platforms requested is supported
;
IfStr(i) $($1) == ""
GoTo returnoptions
EndIf
Set PlatformList = ^(PlatformsSupported, 1)
IfContains(i) $($1) in $(PlatformList)
GoTo returnoptions
Else
Set Status = STATUS_NOTSUPPORTED
GoTo finish_ReturnOptions
EndIf
Else
Set Status = STATUS_NOLANGUAGE
GoTo finish_ReturnOptions
EndIf
returnoptions = +
Set OptionList = ^(Options, 1)
Set OptionTextList = ^(OptionsText$($0), 1)
Set Status = STATUS_SUCCESSFUL
finish_ReturnOptions = +
Return $(Status) $(OptionList) $(OptionTextList)
;------------------------------------------------------------------------
;
; InstallOption:
;
; This section is shelled to by main installation processing
; or by NCPASHEL.INF during reconfig, removal, update, etc.
;
;
; FUNCTION: To copy files representing Options
; To configure the installed option
; To update the registry for the installed option
;
; INPUT: $($0): Language to use
; $($1): OptionID to install
; $($2): SourceDirectory
; $($3): AddCopy (YES | NO)
; $($4): DoCopy (YES | NO)
; $($5): DoConfig (YES | NO)
;
; OUTPUT: $($R0): STATUS: STATUS_SUCCESSFUL |
; STATUS_NOLANGUAGE |
; STATUS_USERCANCEL |
; STATUS_FAILED
;
;------------------------------------------------------------------------
[InstallOption]
Set !DebugOutputControl = 1 ; Comment this out before shipping
Debug-Output "WLPCI: >>>InstallOption="$(!NTN_InstallMode)
;
; Set default values for
;
Set Status = STATUS_FAILED
;
; extract parameters
;
Set Option = $($1)
Set SrcDir = $($2)
Set AddCopy = $($3)
Set DoCopy = $($4)
Set DoConfig = $($5)
;
; Check if the language requested is supported
;
Set LanguageList = ^(LanguagesSupported, 1)
IfContains(i) $($0) NOT-IN $(LanguageList)
Debug-Output "WLPCI: Result=STATUS_NOLANGUAGE"
Debug-Output "WLPCI: <<<InstallOption"
Return STATUS_NOLANGUAGE
EndIf
Set-Subst LF = "\n"
Read-Syms GeneralConstants
Read-Syms FileConstants"-"$(Option)
Read-Syms FileConstants-ALL
Read-Syms DialogConstants$(!STF_LANGUAGE)
IfStr(i) $(!NTN_Origination) == "NCPA"
Set Continue = $(OK)
EndIf
Read-Syms FileConstants$(!STF_LANGUAGE)
detect date
Set-Title $(FunctionTitle)
Set to = Begin
Set from = Begin
;
; Assume all is well.
;
Set CommonStatus = STATUS_SUCCESSFUL
;
; Set up the operation-mode-based variables and welcome
; the user. If the "install mode" variable is improperly set,
; assume this is a new installation.
;
Begin = +
IfStr(i) $(!NTN_InstallMode) == Deinstall
Set StartLabel = RemoveAdapter
Else-IfStr(i) $(!NTN_InstallMode) == Update
Set StartLabel = UpgradeSoftware
Else-IfStr(i) $(!NTN_InstallMode) == Bind
Set StartLabel = BindAdapter
Else-IfStr(i) $(!NTN_InstallMode) == Configure
Set StartLabel = ConfigureAdapter
;
; You cannot config the software component
;
IfStr(i) $(ProductKeyName) == $(!NTN_RegBase)
Debug-Output $(DbgPrefix)"Cannot configure the driver software."
Shell $(UtilityInf),RegistryErrorString,CANNOT_CONFIGURE_SOFTWARE
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"ShellCode error: cannot get an error string."
GoTo ShellCodeError
EndIf
Set Error = $($R0)
Set from = end
Set to = end
GoTo NonFatalError
EndIf
Else
Set StartLabel = InstallAdapter
Set OEM_ABANDON_OPTIONS = {}
Set OEM_ABANDON_SOFTWARE = FALSE
Set OEM_ABANDON_ON = TRUE
EndIf
Set from = FatalError
Set to = FatalError
IfStr(i) $(!NTN_InstallPhase) == "primary"
Set !UG_Filename = $(!NTN_Infname)
Else
Set !UG_Filename = $(OemSetupName)
EndIf
GoTo $(StartLabel)
;-----------------------------------------------
; Trying to install a new adapter
;-----------------------------------------------
InstallAdapter = +
Debug-Output $(DbgPrefix)">>>InstallAdapter"
;
; Add an entry to the registry so user can install adapters using this INF
;
OpenRegKey $(!REG_H_LOCAL) "" $(NcpaInfOptionsKeyName) $(MAXIMUM_ALLOWED) KeyNcpaInfOptions
Shell "" ExCreateRegKey $(KeyNcpaInfOptions) $(OemSetupName)"\NetAdapter.PCI"
OpenRegKey $(KeyNcpaInfOptions) "" $(OemSetupName)"\NetAdapter.PCI" $(MAXIMUM_ALLOWED) KeyTemp
Set OptionList = ^(Options, 1)
Set OptionTextList = ^(OptionsText$($0), 1)
SetRegValue $(KeyTemp) {"OptionList",$(NoTitle),$(!REG_VT_MULTI_SZ),+
$(OptionList)}
SetRegValue $(KeyTemp) {"OptionTextList",$(NoTitle),$(!REG_VT_MULTI_SZ),+
$(OptionTextList)}
CloseRegKey $(KeyTemp)
CloseRegKey $(KeyNcpaInfOptions)
;
; Create/recreate our PCMCIA entries in the registry database.
;
Set KeyPcmciaDataBase = ""
OpenRegKey $(!REG_H_LOCAL) "" $(PcmciaDataBaseKeyName) $(MAXIMUM_ALLOWED) KeyPcmciaDataBase
ForListDo $(CIS_MANUFACTURER)
Split-String *($(CIS_DEVICEID),$(#)) "-" PNPID_Parts
Set CisKey = $($)"\"*($(PNPID_Parts),3)
Debug-Output $(DbgPrefix)"Creating PCMCIA Key="$(CisKey)
Shell "" ExCreateRegKey $(KeyPcmciaDataBase) $(CisKey)
OpenRegKey $(KeyPcmciaDataBase) "" $(CisKey) $(MAXIMUM_ALLOWED) KeyTemp
SetRegValue $(KeyTemp) {Driver,$(NoTitle),$(!REG_VT_SZ),$(ProductHardwareName)}
SetRegValue $(KeyTemp) {DeviceType,$(NoTitle),$(!REG_VT_SZ),"NET"}
SetRegValue $(KeyTemp) {PortWidth16,$(NoTitle),$(!REG_VT_DWORD),1}
SetRegValue $(KeyTemp) {InfFileName,$(NoTitle),$(!REG_VT_SZ),$(!UG_Filename)}
SetRegValue $(KeyTemp) {Option,$(NoTitle),$(!REG_VT_SZ),*($(CIS_OPTIONID),$(#))}
CloseRegKey $(KeyTemp)
EndForListDo
CloseRegKey $(KeyPcmciaDataBase)
;
; Check whether the same version of the software exists
;
OpenRegKey $(!REG_H_LOCAL) "" $(ProductKeyName) $(MAXIMUM_ALLOWED) KeyProduct
IfStr $(KeyProduct) != $(KeyNull)
;
; The software is already installed on this PC.
; Popup the dialog and ask the user whether he wants to continue
;
IfStr(i) !(NTN_RegBase) == $(ProductKeyName)
;
; Cannot Install the same software again, must use upgrade instead
;
GetRegValue $(KeyProduct), "MajorVersion", VersionInfo
Set MajorVersion = *($(VersionInfo), 4)
GetRegValue $(KeyProduct), "MinorVersion", VersionInfo
Set MinorVersion = *($(VersionInfo), 4)
CloseRegKey $(KeyProduct)
Shell $(UtilityInf), VerExistedDlg, $(ProductSoftwareTitle),+
$(MajorVersion)"."$(MinorVersion)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"ShellCode error: cannot get an error string."
GoTo ShellCodeError
EndIf
GoTo end
Else
CloseRegKey $(KeyProduct)
;
; Don't allow more than one card to be automatically installed
;
Debug-Output $(DbgPrefix)"NTN_InstallPhase"=$(!NTN_InstallPhase)
IfStr(i) $(!NTN_InstallPhase) == "primary"
GoTo end
EndIf
;
; Add a new adapter card?
;
Shell $(UtilityInf), CardExistedDlg
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"ShellCode error: cannot get an error string."
GoTo ShellCodeError
EndIf
IfStr(i) $($R1) != "OK"
Set CommonStatus = "STATUS_USERCANCEL"
GoTo end
EndIf
EndIf
Else
;
; First time through we install the software component.
;
Set STF_INSTALL_OUTCOME = STF_SUCCESS
;;; If this is not running via the NCPA, we need to change the
;;; SrcDir since DoAskSource won't prompt for the disk. If the
;;; NCPA is not used, the files should be copied before launching
;;; the INF install, and you should do no file copies from the INF.
IfStr(i) $(!NTN_InstallPhase) == "primary"
;;;
;;; Make sure the configuration DLL has been copied. If not, setup
;;; will exit after displaying an error message without returning here.
;;;
IfStr(i) $(!STF_GUI_UNATTENDED) != "YES"
LoadLibrary "" $(!STF_WINDOWSSYSPATH)"\"$(DialogDllName) hLib
FreeLibrary $(hLib)
EndIf
IfStr(i) $(SrcDir) == ""
IfStr(i) $(!STF_SRCDIR) == ""
Set SrcDir = "A:\"
Else
Set SrcDir = $(!STF_SRCDIR)
EndIf
EndIf
Else
;;;
;;; If SrcDir is not set, ask the user to locate it for us.
;;;
IfStr(i) $(SrcDir) == ""
Shell $(UtilityInf), DoAskSource, +
$(!STF_CWDDIR), +
$(SrcDir), +
"NO"
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"Cannot run DoAskSource: ShellCode="$($ShellCode)
Set STF_INSTALL_OUTCOME = STATUS_SHELL_FAILED
Else-IfStr(i) $($R0) == STATUS_FAILED
Debug-Output $(DbgPrefix)"DoAskSource: STATUS_FAILED"
Set STF_INSTALL_OUTCOME = STATUS_FAILED
Else-IfStr(i) $($R0) == STATUS_USERCANCEL
Debug-Output $(DbgPrefix)"DoAskSource: STATUS_USERCANCEL"
Set STF_INSTALL_OUTCOME = STATUS_USERCANCEL
Else
Set SrcDir = $($R1)
EndIf
EndIf
EndIf
;;;
;;; If all is well, copy the files to the hard disk.
;;;
IfStr(i) $(STF_INSTALL_OUTCOME) == STF_SUCCESS
StartWait
Install "Install-Dll"
Install "Install-Option"
EndWait
Endif
IfStr(i) $(STF_INSTALL_OUTCOME) != STF_SUCCESS
Shell $(UtilityInf) RegistryErrorString "UNABLE_COPY_FILE"
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
GoTo ShellCodeError
EndIf
Set Error = $($R0)"\n SrcDir="$(SrcDir)
GoTo FatalError
EndIf
Shell $(UtilityInf), AddSoftwareComponent, $(Manufacturer), +
$(ProductSoftwareName), +
$(ProductSoftwareName), +
$(ProductSoftwareTitle), $(STF_CONTEXTINFNAME), +
$(ProductSoftwareImagePath), "kernel", "NDIS", {}, "",+
$(NetEventDLL)
Set OEM_ABANDON_SOFTWARE = TRUE
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"ShellCode error"
GoTo ShellCodeError
EndIf
;
; At this point:
; $R1 contains the product version key handle;
; $R2 contains the NetRules subkey handle;
; $R3 contains the new Services key handle; and
; $R4 contains the Parameters key
; $R5 contains the Linkage Key
;
Set RegistryErrorIndex = $($R0)
Set KeyProduct = $($R1)
Set SoftNetRulesKey = $($R2)
CloseRegKey $($R3)
CloseRegKey $($R4)
CloseRegKey $($R5)
IfStr(i) $(RegistryErrorIndex) != NO_ERROR
Debug-Output $(DbgPrefix)"Registry error: add software components"
CloseRegKey $(KeyProduct)
CloseRegKey $(SoftNetRulesKey)
GoTo FatalRegistry
EndIf
Set NewValueList = {{SoftwareType,$(NoTitle),$(!REG_VT_SZ),$(SoftwareType)},+
{MajorVersion,$(NoTitle),$(!REG_VT_DWORD),$(VER_PRODUCT_MAJOR_STR)},+
{MinorVersion,$(NoTitle),$(!REG_VT_DWORD),$(VER_PRODUCT_MINOR_STR)},+
{ProductVersion,$(NoTitle),$(!REG_VT_SZ),$(ProductVersion)},+
{Title,$(NoTitle),$(!REG_VT_SZ),$(ProductSoftwareTitle)},+
{Description,$(NoTitle),$(!REG_VT_SZ),$(ProductSoftwareDescription)},+
{ServiceName,$(NoTitle),$(!REG_VT_SZ),$(ProductSoftwareName)},+
{InstallDate,$(NoTitle),$(!REG_VT_DWORD),*($(Now),1)}}
Shell $(UtilityInf), AddValueList, $(KeyProduct), $(NewValueList)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"ShellCode error."
GoTo ShellCodeError
EndIf
Set RegistryErrorIndex = $($R0)
IfStr(i) $(RegistryErrorIndex) != NO_ERROR
Debug-Output $(DbgPrefix)"Registry error: add value list."
CloseRegKey $(KeyProduct)
CloseRegKey $(SoftNetRulesKey)
GoTo FatalRegistry
EndIf
Set NewValueList = {{type,$(NoTitle),$(!REG_VT_SZ),$(NetRuleSoftwareType)},+
{use,$(NoTitle),$(!REG_VT_SZ),$(NetRuleSoftwareUse)}, +
{bindform,$(NoTitle),$(!REG_VT_SZ),$(NetRuleSoftwareBindForm)}, +
{class,$(NoTitle),$(!REG_VT_MULTI_SZ),$(NetRuleSoftwareClass)}, +
{bindable,$(NoTitle),$(!REG_VT_MULTI_SZ),$(NetRuleSoftwareBindable)}, +
{InfOption,$(NoTitle),$(!REG_VT_SZ),$(Option)}}
Shell $(UtilityInf), AddValueList, $(SoftNetRulesKey), $(NewValueList)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"ShellCode error."
GoTo ShellCodeError
EndIf
Set RegistryErrorIndex = $($R0)
CloseRegKey $(KeyProduct)
CloseRegKey $(SoftNetRulesKey)
IfStr(i) $(RegistryErrorIndex) != NO_ERROR
Debug-Output $(DbgPrefix)"Resgitry error: add value list."
GoTo FatalRegistry
EndIf
EndIf
;***********************************************************************
; Okay, the software is installed.
; Now let's see if there are any new adapters.
;***********************************************************************
Set NumNew = 0
Set NewAdapterList = {}
;;;
;;; Look for new PCI adapters.
;;;
IfInt $(BusType) == 5
ForListDo $(PCI_MANUFACTURER)
Set-HexToDec PciVendorID = 0x$($)
Set-HexToDec PciDeviceID = 0x*($(PCI_DEVICEID),$(#))
IfInt $(PciVendorID) != 0
Shell $(UtilityInf), GetPCIInformation, +
$(PciVendorID), +
$(PciDeviceID)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"Cannot run GetPCIInformation: ShellCode="$($ShellCode)
GoTo ShellCodeError
EndIf
Set AdapterList = $($R0)
Debug-Output $(DbgPrefix)"PCI AdapterList="$(AdapterList)
ForListDo $(AdapterList)
Set BusNumber = *($($),1)
Set PciDeviceNumber = *($($),2)
Set PciFunctionNumber = *($($),3)
Set-mul PciSlotNumber = $(PciFunctionNumber), 32
Set-add PciSlotNumber = $(PciSlotNumber), $(PciDeviceNumber)
Debug-Output $(DbgPrefix)"PciDeviceNumber="$(PciDeviceNumber)
Debug-Output $(DbgPrefix)"PciFunctionNumber="$(PciFunctionNumber)
Debug-Output $(DbgPrefix)"PciSlotNumber="$(PciSlotNumber)
Shell $(UtilityInf), IsNetCardAlreadyInstalled, +
$(BusNumber), +
$(PciSlotNumber), +
$(ProductHardwareDescription), +
$(ProductHardwareName)
IfStr(i) $($R1) != "YES"
Set-add NumNew = $(NumNew),1
IfStr(i) $(NewAdapterList) == {}
Set NewAdapterList = {$($)}
Else
Set NewAdapterList = >($(NewAdapterList),$($))
EndIf
EndIf
EndForListDo
EndIf
EndForListDo
Debug-Output $(DbgPrefix)"NewAdapterList="$(NewAdapterList)
IfInt $(NumNew) == 0
Set Error = $(NoNewPciCardsMsg)
GoTo NonFatalError
EndIf
;;;
;;; If PCI adapter, compute slot number from function and device numbers.
;;;
Set AdapterInfo = *($(NewAdapterList),1)
Debug-Output $(DbgPrefix)"AdapterInfo="$(AdapterInfo)
Set BusNumber = *($(AdapterInfo),1)
Set PciDeviceNumber = *($(AdapterInfo),2)
Set PciFunctionNumber = *($(AdapterInfo),3)
Set-mul PciSlotNumber = $(PciFunctionNumber), 32
Set-add PciSlotNumber = $(PciSlotNumber), $(PciDeviceNumber)
Debug-Output $(DbgPrefix)"PciDeviceNumber="$(PciDeviceNumber)
Debug-Output $(DbgPrefix)"PciFunctionNumber="$(PciFunctionNumber)
Debug-Output $(DbgPrefix)"PciSlotNumber="$(PciSlotNumber)
EndIf
;***********************************************************************
; Okay, if we're here, it must be time to install a new hardware device.
; This is only coded to install one adapter at a time. The user must
; run this once for each adapter installed.
;***********************************************************************
;
; Create the HARDWARE\Netcard region and its corresponding service
;
Shell $(UtilityInf), AddHardwareComponent, $(ProductHardwareName),$(STF_CONTEXTINFNAME),$(ProductKeyName)
IfInt $($R4) != -1
Set OEM_ABANDON_OPTIONS = >($(OEM_ABANDON_OPTIONS), $(!NTN_SoftwareBase)"\Microsoft\Windows NT\CurrentVersion\NetworkCards\"$($R4))
EndIf
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"Cannot add hardware component"
GoTo ShellCodeError
EndIf
Set RegistryErrorIndex = $($R0)
IfStr(i) $(RegistryErrorIndex) != NO_ERROR
Debug-Output $(DbgPrefix)"Registry error: add hardware component"
CloseRegKey $($R1)
CloseRegKey $($R2)
CloseRegKey $($R3)
GoTo FatalRegistry
EndIf
;
; At this point:
; $R1 Registry key variable for HARDWARE\Netcard\(n)
; $R2 Registry key variable for HARDWARE\Netcard\(n)\\NetRules
; $R3 Registry key handle for <service>\Parameters key
; $R4 Adapter number assigned to adapter
; $R5 Service name generated by combining svc name with adapter number
;
Set KeyAdapterRules = $($R2)
Set KeyParameters = $($R3)
Set AdapterNumber = $($R4)
Set ServiceName = $($R5)
Set NewValueList = {{Manufacturer,$(NoTitle),$(!REG_VT_SZ),$(Manufacturer)},+
{Title,$(NoTitle),$(!REG_VT_SZ),"["$($R4)"] "$(ProductHardwareTitle)},+
{Description,$(NoTitle),$(!REG_VT_SZ),$(ProductHardwareDescription)},+
{ProductName,$(NoTitle),$(!REG_VT_SZ),$(ProductHardwareName)},+
{ServiceName,$(NoTitle),$(!REG_VT_SZ),$(ServiceName)},+
{ProductVersion,$(NoTitle),$(!REG_VT_SZ),$(ProductVersion)},+
{DriverVer,$(NoTitle),$(!REG_VT_SZ),$(DriverVersion)},+
{InstallDate,$(NoTitle),$(!REG_VT_DWORD),*($(Now),1)}}
Shell $(UtilityInf), AddValueList, $($R1), $(NewValueList)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"ShellCode error"
GoTo ShellCodeError
EndIf
CloseRegKey $($R1)
Set TempProdName = """"$(ProductHardwareName)$(AdapterNumber)""""
Set TempBindForm = $(TempProdName)$(NetRuleHardwareBindForm)
Set NewValueList = {{type,$(NoTitle),$(!REG_VT_SZ),$(NetRuleHardwareType)},+
{bindform,$(NoTitle),$(!REG_VT_SZ),$(TempBindForm)}, +
{class,$(NoTitle),$(!REG_VT_MULTI_SZ),$(NetRuleHardwareClass)}, +
{InfOption,$(NoTitle),$(!REG_VT_SZ),$(Option)}}
Shell $(UtilityInf), AddValueList, $(KeyAdapterRules), $(NewValueList)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"ShellCode error."
GoTo ShellCodeError
EndIf
Set RegistryErrorIndex = $($R0)
IfStr(i) $(RegistryErrorIndex) != NO_ERROR
Debug-Output $(DbgPrefix)"Resgitry error: add value list."
CloseRegKey $(KeyParameters)
CloseRegKey $(KeyAdapterRules)
GoTo FatalRegistry
EndIf
CloseRegKey $(KeyAdapterRules)
;
; Add the default static parameters to the adapter service area.
;
Set NewValueList = {+
{BusNumber, $(NoTitle), $(!REG_VT_DWORD), $(BusNumber)},+
{BusType, $(NoTitle), $(!REG_VT_DWORD), $(BusType)},+
{DriverVer, $(NoTitle), $(!REG_VT_SZ), $(DriverVersion)},+
{MediaType, $(NoTitle), $(!REG_VT_DWORD), 1},+
{WLPCIIOC, $(NoTitle), $(!REG_VT_DWORD), 1}}
IfInt $(BusType) == 5
Set NewValueList = >($(NewValueList), +
{"SlotNumber",$(NoTitle),$(!REG_VT_DWORD), +
$(PciSlotNumber)})
Else
Set NewValueList = >($(NewValueList), +
{"Pcmcia",$(NoTitle),$(!REG_VT_DWORD), +
1})
EndIf
Shell $(UtilityInf), AddValueList, $(KeyParameters), $(NewValueList)
IfStr(i) $(!STF_GUI_UNATTENDED) == "YES"
Shell $(UtilityInf), AddDefaultNetCardParameters,$(KeyParameters)
EndIf
CloseRegKey $(KeyParameters)
Set ConfigParam = "INSTALL"
install "PCI-Defaults"
install "Read-Defaults"
; GoTo AdapterSetup
GoTo SkipOption
;-----------------------------------------------
; Configuration Section
;-----------------------------------------------
ConfigureAdapter = +
Debug-Output $(DbgPrefix)">>>ConfigureAdapter"
IfStr $(KeyProduct) == $(KeyNull)
OpenRegKey $(!REG_H_LOCAL) "" $(!NTN_RegBase) $(MAXIMUM_ALLOWED) KeyProduct
IfStr $(KeyProduct) == $(KeyNull)
Set RegistryErrorIndex = CANNOT_FIND_COMPONENT_SERVICE
Debug-Output $(DbgPrefix)"Cannot find component product key"
GoTo FatalRegistry
EndIf
EndIf
GetRegValue $(KeyProduct),"ServiceName", ServiceNameInfo
Set ServiceName = *($(ServiceNameInfo), 4)
CloseRegKey $(KeyProduct)
;
; device key
;
Set ParamKeyName = $(!NTN_ServiceBase)"\"$(ServiceName)"\Parameters"
OpenRegKey $(!REG_H_LOCAL) "" $(ParamKeyName) $(MAXIMUM_ALLOWED) KeyParameters
IfStr $(KeyParameters) != $(KeyNull)
install "Parm-ReadReg"
Else
GoTo FatalRegistry
EndIf
;
; Put up the adapter configuration dialog.
;
AdapterSetup = +
Debug-Output $(DbgPrefix)">>>AdapterSetup"
IfStr(i) $(!STF_GUI_UNATTENDED) == "YES"
GoTo successful
EndIf
LoadLibrary "" $(!STF_WINDOWSSYSPATH)"\"$(DialogDllName) hLib
read-syms FileDependentDlg$(!STF_LANGUAGE)
ui start "InputDlg" $(hLib)
set ExitButton = $(ButtonPressed)
Debug-Output " ButtonPressed "$(ButtonPressed)
FreeLibrary $(hLib)
ifstr(i) $(DLGEVENT) == "CONTINUE"
Debug-Output "Action: Continue"
install "Parm-UI-values"
set ExitButton = $(ButtonPressed)
ui pop 1
else-ifstr(i) $(DLGEVENT) == "EXIT"
set CommonStatus = STATUS_USERCANCEL
Debug-Output "Action: exit. Bye."
ui pop 1
goto end
else
ui pop 1
Debug-Output "Action: unknown. Bye."
goto FatalError
endif
Debug-Output " Combo list out "$(ComboListItemsOut)
SkipOption = +
;
; device key
;
Set ParamKeyName = $(!NTN_ServiceBase)"\"$(ServiceName)"\Parameters"
OpenRegKey $(!REG_H_LOCAL) "" $(ParamKeyName) $(MAXIMUM_ALLOWED) KeyParameters
IfStr $(KeyParameters) != $(KeyNull)
;
; Add the rest of the parameters to the Services area
;
install "Parm-WriteReg"
Shell $(UtilityInf), AddValueList, $(KeyParameters), $(NetValueList)
ifint $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output "ShellCode error."
goto ShellCodeError
endif
set RegistryErrorIndex = $($R0)
Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
Debug-Output "Registry error: Add value list"
CloseRegKey $(KeyParameters)
goto fatalregistry
endif
Shell $(UtilityInf), AddValueList, $(KeyParameters), $(PRISMValueList)
ifint $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output "ShellCode error."
goto ShellCodeError
endif
set RegistryErrorIndex = $($R0)
Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
Debug-Output "Registry error: Add value list"
CloseRegKey $(KeyParameters)
goto fatalregistry
endif
Shell $(UtilityInf), AddValueList, $(KeyParameters), $(NetTypeValueList)
ifint $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output "ShellCode error."
goto ShellCodeError
endif
set RegistryErrorIndex = $($R0)
Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
Debug-Output "Registry error: Add value list"
CloseRegKey $(KeyParameters)
goto fatalregistry
endif
Shell $(UtilityInf), AddValueList, $(KeyParameters), $(PHYTypeValueList)
ifint $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output "ShellCode error."
goto ShellCodeError
endif
set RegistryErrorIndex = $($R0)
Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
Debug-Output "Registry error: Add value list"
CloseRegKey $(KeyParameters)
goto fatalregistry
endif
CloseRegKey $(KeyParameters)
Else
GoTo FatalRegistry
EndIf
GoTo successful
;-----------------------------------------------
; Binding section
;-----------------------------------------------
BindAdapter =+
Debug-Output $(DbgPrefix)">>>BindAdapter"
Set Error = "Binding review not implemented."
GoTo FatalError
;-----------------------------------------------
; RemoveAdapter section
;-----------------------------------------------
RemoveAdapter = +
Debug-Output $(DbgPrefix)">>>RemoveAdapter"
;
; Remove our PCMCIA entries from the registry database.
;
Set KeyPcmciaDataBase = ""
OpenRegKey $(!REG_H_LOCAL) "" $(PcmciaDataBaseKeyName) $(MAXIMUM_ALLOWED) KeyPcmciaDataBase
ForListDo $(CIS_MANUFACTURER)
Split-String *($(CIS_DEVICEID),$(#)) "-" PNPID_Parts
Set CisKey = $($)"\"*($(PNPID_Parts),3)
Debug-Output $(DbgPrefix)"Delete PCMCIA Key="$(CisKey)
DeleteRegTree $(KeyPcmciaDataBase) $(CisKey)
EndForListDo
CloseRegKey $(KeyPcmciaDataBase)
IfStr(i) $(ProductKeyName) == $(!NTN_RegBase)
; Remove Software Component
Shell $(UtilityInf), RemoveSoftwareComponent, $(Manufacturer), +
$(ProductSoftwareName)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"ShellCode error"
GoTo ShellCodeError
EndIf
Set RegistryErrorIndex = $($R0)
IfStr(i) $(RegistryErrorIndex) != NO_ERROR
GoTo FatalRegistry
EndIf
Else
Shell $(UtilityInf), RemoveHardwareComponent, $(Manufacturer), +
$(ProductSoftwareName), $(!NTN_RegBase)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"ShellCode error"
GoTo ShellCodeError
EndIf
Set RegistryErrorIndex = $($R0)
IfStr(i) $(RegistryErrorIndex) != NO_ERROR
GoTo FatalRegistry
EndIf
EndIf
GoTo end
;-----------------------------------------------
; Upgrade Software section
;-----------------------------------------------
UpgradeSoftware = +
Debug-Output $(DbgPrefix)">>>UpgradeSoftware ProductVersion="$(ProductVersion)
;
; Upgrade the software
;
Install "Install-Update"
IfStr(i) $(STF_INSTALL_OUTCOME) != STF_SUCCESS
Debug-Output $(DbgPrefix)"Install-Update failed"
GoTo FatalError
EndIf
;
; Upgrade the software version number
;
Set NewValueList = {+
{MajorVersion,$(NoTitle),$(!REG_VT_DWORD),$(VER_PRODUCT_MAJOR_STR)},+
{MinorVersion,$(NoTitle),$(!REG_VT_DWORD),$(VER_PRODUCT_MINOR_STR)},+
{ProductVersion,$(NoTitle),$(!REG_VT_SZ),$(ProductVersion)},+
{InstallDate,$(NoTitle),$(!REG_VT_DWORD),*($(Now),1)}}
;
; software key
;
OpenRegKey $(!REG_H_LOCAL) "" $(ProductKeyName) $(MAXIMUM_ALLOWED) KeyProduct
IfStr $(KeyProduct) != $(KeyNull)
Shell $(UtilityInf), AddValueList, $(KeyProduct), $(NewValueList)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"ShellCode error."
GoTo ShellCodeError
EndIf
CloseRegKey $(KeyProduct)
Else
GoTo FatalRegistry
EndIf
;
; NetCard key
;
OpenRegKey $(!REG_H_LOCAL) "" $(!NTN_RegBase) $(MAXIMUM_ALLOWED) KeyProduct
IfStr $(KeyProduct) != $(KeyNull)
Shell $(UtilityInf), GetInfFileNameFromRegistry, $(KeyProduct)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"Cannot run GetInfFileNameFromRegistry"
GoTo ShellCodeError
EndIf
Set !UG_Filename = $($R0)
Shell $(UtilityInf), AddValueList, $(KeyProduct), $(NewValueList)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"ShellCode error."
GoTo ShellCodeError
EndIf
SetRegValue $(KeyProduct) {DriverVer,$(NoTitle),$(!REG_VT_SZ),$(ProductVersion)}
GetRegValue $(KeyProduct),"ServiceName", ServiceNameInfo
Set ServiceName = *($(ServiceNameInfo), 4)
CloseRegKey $(KeyProduct)
Else
GoTo FatalRegistry
EndIf
;
; device key
;
Set ParamKeyName = $(!NTN_ServiceBase)"\"$(ServiceName)"\Parameters"
OpenRegKey $(!REG_H_LOCAL) "" $(ParamKeyName) $(MAXIMUM_ALLOWED) KeyProduct
IfStr $(KeyProduct) != $(KeyNull)
SetRegValue $(KeyProduct) {DriverVer,$(NoTitle),$(!REG_VT_SZ),$(ProductVersion)}
Else
GoTo FatalRegistry
EndIf
GoTo successful
;
; Escape hatches
;
abandon = +
Debug-Output $(DbgPrefix)">>>abandon"
ForListDo $(OEM_ABANDON_OPTIONS)
Shell $(UtilityInf), RemoveHardwareComponent, $(Manufacturer), +
$(ProductSoftwareName), $($)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"ShellCode error"
GoTo ShellCodeError
EndIf
Set RegistryErrorIndex = $($R0)
IfStr(i) $(RegistryErrorIndex) != NO_ERROR
GoTo FatalRegistry
EndIf
EndForListDo
IfStr(i) $(OEM_ABANDON_SOFTWARE) == TRUE
; Remove Software Component
Shell $(UtilityInf), RemoveSoftwareComponent, $(Manufacturer), +
$(ProductSoftwareName), FALSE
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output $(DbgPrefix)"ShellCode error"
GoTo ShellCodeError
EndIf
Set RegistryErrorIndex = $($R0)
IfStr(i) $(RegistryErrorIndex) != NO_ERROR
GoTo FatalRegistry
EndIf
EndIf
GoTo end
;
; WarningMessage
;
WarningMessage = +
Debug-Output $(DbgPrefix)">>>WarningMessage"
Shell $(SubRoutineInf) SetupMessage, $(!STF_LANGUAGE), "WARNING", $(Error)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
GoTo ShellCodeError
EndIf
IfStr(i) $($R1) == "OK"
GoTo $(to)
Else-IfStr(i) $($R1) == "CANCEL"
GoTo $(from)
Else
GoTo "end"
EndIf
;
; NonFatalError message
;
NonFatalError = +
Debug-Output $(DbgPrefix)">>>NonFatalError"
Set Severity = STATUS
Set CommonStatus = STATUS_USERCANCEL
IfStr(i) $(Error) == ""
Set Severity = NONFATAL
Shell $(UtilityInf) RegistryErrorString "SETUP_FAIL"
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
GoTo ShellCodeError
EndIf
Set Error = $($R0)
EndIf
Shell $(SubRoutineInf) SetupMessage, $(!STF_LANGUAGE), $(Severity), $(Error)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
GoTo ShellCodeError
EndIf
IfStr(i) $($R1) == "OK"
GoTo $(from)
Else
GoTo "end"
EndIf
;
; Registry is broken
;
FatalRegistry = +
Debug-Output $(DbgPrefix)">>>FatalRegistry"
Shell $(UtilityInf) RegistryErrorString $(RegistryErrorIndex)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
GoTo ShellCodeError
EndIf
Set Error = $($R0)
GoTo FatalError
;
; FatalError message
;
FatalError = +
Debug-Output $(DbgPrefix)">>>FatalError"
IfStr(i) $(Error) == ""
Shell $(UtilityInf) RegistryErrorString "SETUP_FAIL"
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
GoTo ShellCodeError
EndIf
Set Error = $($R0)
EndIf
Shell $(SubRoutineInf) SetupMessage, $(!STF_LANGUAGE), "FATAL", $(Error)
IfInt $($ShellCode) != $(!SHELL_CODE_OK)
GoTo ShellCodeError
EndIf
GoTo SetFailed
;
; Shelling error
;
ShellCodeError = +
Debug-Output $(DbgPrefix)">>>ShellCodeError"
Set DlgType = "MessageBox"
Set STF_MB_TITLE = $(ShellCodeErrorTitle)
Set STF_MB_TEXT = $(ShellCodeErrorText)
Set STF_MB_TYPE = 1
Set STF_MB_ICON = 3
Set STF_MB_DEF = 1
ui start "Error Message"
GoTo SetFailed
SetFailed = +
Debug-Output $(DbgPrefix)">>>SetFailed"
Set CommonStatus = STATUS_FAILED
;
; if OEM_ABANDON_ON == TRUE, then remove the registry entries
;
IfStr(i) $(OEM_ABANDON_ON) == TRUE
Set OEM_ABANDON_ON = FALSE
GoTo abandon
EndIf
GoTo end
successful = +
Debug-Output $(DbgPrefix)">>>successful"
Set CommonStatus = STATUS_SUCCESSFUL
GoTo end
end = +
Debug-Output $(DbgPrefix)"<<<InstallOption="$(!NTN_InstallMode)" Result=$(CommonStatus)"
Return $(CommonStatus)
;***************************************************************
; INSTALL SECTIONS
;***************************************************************
[Install-Dll]
Set STF_VITAL = ""
AddSectionFilesToCopyList Files-Hlp $(SrcDir) $(!STF_WINDOWSSYSPATH)
AddSectionFilesToCopyList Files-Dll $(SrcDir) $(!STF_WINDOWSSYSPATH)
Set !STF_NCPA_FLUSH_COPYLIST = TRUE
CopyFilesInCopyList
Exit
[Install-Option]
Set STF_VITAL = ""
;
; Add the files to the copy list
;
IfStr(i) $(AddCopy) == "YES"
AddSectionFilesToCopyList Files-Exe $(SrcDir) $(!STF_WINDOWSSYSPATH)
AddSectionFilesToCopyList Files-$(Option) $(SrcDir) $(!STF_WINDOWSSYSPATH)\Drivers
;
; Copy files in the copy list
;
IfStr(i) $(DoCopy) == "YES"
Set !STF_NCPA_FLUSH_COPYLIST = TRUE
CopyFilesInCopyList
EndIf
EndIf
Exit
[Install-Update]
Set STF_VITAL = ""
Set STF_OVERWRITE = "VERIFYSOURCEOLDER"
AddSectionFilesToCopyList Files-Inf $(SrcDir) $(!STF_WINDOWSSYSPATH)
AddSectionFilesToCopyList Files-Exe $(SrcDir) $(!STF_WINDOWSSYSPATH)
AddSectionFilesToCopyList Files-Hlp $(SrcDir) $(!STF_WINDOWSSYSPATH)
AddSectionFilesToCopyList Files-Dll $(SrcDir) $(!STF_WINDOWSSYSPATH)
AddSectionFilesToCopyList Files-$(Option) $(SrcDir) $(!STF_WINDOWSSYSPATH)\Drivers
Set !STF_NCPA_FLUSH_COPYLIST = TRUE
CopyFilesInCopyList
Exit
[ProductType]
STF_PRODUCT = Winnt
STF_PLATFORM = I386
[Files-Inf]
1, OEMSETUP.inf, SIZE=100000 OVERWRITE=ALWAYS, RENAME=$(!UG_Filename)
[Files-WLAN_PCMCIA]
; 1, WLPCINDS.sys, SIZE=100000 OVERWRITE=ALWAYS
[Files-WLAN_PCI]
; 1, WLPCINDS.sys, SIZE=100000 OVERWRITE=ALWAYS
[Files-Dll]
; 1, WLPCI.dll, SIZE=300000 OVERWRITE=ALWAYS
[Files-Hlp]
; 1, WLPCIRES.dll, SIZE=100000 OVERWRITE=ALWAYS
; 1, WLPCIIOC.dll, SIZE=300000 OVERWRITE=ALWAYS
; FIXME - Add context sensitive help
; 1, WLPCICSH.dll, SIZE=50000 OVERWRITE=ALWAYS
; 1, WLPCICFG.hlp, SIZE=20000 OVERWRITE=ALWAYS
; 1, WLPCICFG.cnt, SIZE=2000 OVERWRITE=ALWAYS
[Files-Exe]
; 1, WLPCISTA.exe, SIZE=300000 OVERWRITE=ALWAYS
[LanguagesSupported]
ENG
[FileConstantsENG]
FunctionTitle = $(GenericAdapterName)" Setup"
ProductSoftwareDescription = $(GenericDriverName)
ProductSoftwareTitle = $(GenericDriverName)
ProductHardwareDescription = $(GenericAdapterName)
ProductHardwareTitle = $(GenericAdapterName)
NoNewPciCardsMsg = $(FunctionTitle)" is NOT complete!"$(LF)+
"Setup is unable to find a "+
$(ProductHardwareDescription)"."$(LF)+
"Please shutdown your PC and install the "+
$(ProductHardwareDescription)"."$(LF)+
"Then re-run the Network Control Panel, and Add the "+
$(ProductHardwareDescription)" "+
"from the Adapters property page."
IOBaseAddrList = ^(IOBaseAddrChoices, 1)
IOBaseAddrValues = ^(IOBaseAddrChoices, 2)
IRQList = ^(IRQPciChoices, 1)
IRQValues = ^(IRQPciChoices, 2)
DSChanList = ^(DSChanChoices, 1)
DSChanValues = ^(DSChanChoices, 2)
PHYParmList = $(DSChanList)
PHYParmValues = $(DSChanValues)
STA_NetTypeList = ^(STA_NetTypeChoices, 1)
STA_NetTypeValues = ^(STA_NetTypeChoices, 2)
NetTypeList = $(STA_NetTypeList)
NetTypeValues = $(STA_NetTypeValues)
STA_TxRateList = ^(STA_TxRateChoices, 1)
STA_TxRateValues = ^(STA_TxRateChoices, 2)
TxRateList = $(STA_TxRateList)
TxRateValues = $(STA_TxRateValues)
STA_AuthenticationList = ^(STA_AuthenticationChoices, 1)
STA_AuthenticationValues= ^(STA_AuthenticationChoices, 2)
AuthenticationList = $(STA_AuthenticationList)
AuthenticationValues = $(STA_AuthenticationValues)
STA_ListenIntervalList = ^(STA_ListenIntervalChoices, 1)
STA_ListenIntervalValues= ^(STA_ListenIntervalChoices, 2)
ListenIntervalList = $(STA_ListenIntervalList)
ListenIntervalValues = $(STA_ListenIntervalValues)
RTSThreshList = ^(RTSThreshChoices, 1)
RTSThreshValues = ^(RTSThreshChoices, 2)
FragThreshList = ^(FragThreshChoices, 1)
FragThreshValues = ^(FragThreshChoices, 2)
STA_PSModeList = ^(STA_PSModeChoices, 1)
STA_PSModeValues = ^(STA_PSModeChoices, 2)
PSModeList = $(STA_PSModeList)
PSModeValues = $(STA_PSModeValues)
WepReqList = ^(WepReqChoices, 1)
WepReqValues = ^(WepReqChoices, 2)
[DialogConstantsENG]
Help = "&Help"
Exit = "Cancel"
OK = "OK"
HelpContext = ""
Continue = "Continue"
Cancel = "Cancel"
[FileDependentDlgENG]
DlgText = "Please select values for the follwing fields:"
DlgType = "RadioCombination"
DlgTemplate = "CW10"
Caption = $(FunctionTitle)
CBOptionsGreyed = {}
NotifyFields = {NO, NO}
HelpContext = $(!IDH_DB_OEMNADE2_INS)
Combo1Label = "I/O Base:"
Combo2Label = "IRQ Level:"
Combo3Label = "Tx Rate:"
Combo4Label = "Channel"
Combo5Label = "Mode:"
Combo6Label = "RTS Threshold:"
Combo7Label = "Fragmentation Threshold"
Combo8Label = "Power Saving:"
Combo9Label = "Encryption:"
Combo10Label = "Authentication:"
Combo11Label = "Listen Interval:"
Edit1Label = "SSID:"
CheckBox1 = "PCMCIA card"
Combo1List = $(IOBaseAddrList)
Combo1Out = $(IOBaseAddrUIVal)
Combo2List = $(IRQList)
Combo2Out = $(IRQValueUIVal)
Combo3List = $(TxRateList)
Combo3Out = $(TxRateUIVal)
Combo4List = $(PHYParmList)
Combo4Out = $(PHYParmUIVal)
Combo5List = $(NetTypeList)
Combo5Out = $(NetTypeUIVal)
Combo6List = $(RTSThreshList)
Combo6Out = $(RTSThreshUIVal)
Combo7List = $(FragThreshList)
Combo7Out = $(FragThreshUIVal)
Combo8List = $(PSModeList)
Combo8Out = $(PSModeUIVal)
Combo9List = $(WepReqList)
Combo9Out = $(WepReqUIVal)
Combo10List = $(AuthenticationList)
Combo10Out = $(AuthenticationUIVal)
Combo11List = $(ListenIntervalList)
Combo11Out = $(ListenIntervalUIVal)
ComboListItemsIn = {Combo1List,Combo2List,Combo3List,+
Combo4List, Combo5List, Combo6List,+
Combo7List, Combo8List, Combo9List,+
Combo10List, Combo11List+
}
ComboListItemsOut = {Combo1Out,Combo2Out,Combo3Out,+
Combo4Out, Combo5Out, Combo6Out,+
Combo7Out, Combo8Out, Combo9Out,+
Combo10Out, Combo11Out+
}
EditTextIn = {$(SSIDValue)}
EditTextLim = {"32"}
CheckItemsIn = {$(Chk1)}
[IOBaseAddrChoices]
IOBase_pci = "n/a",0
[IRQPciChoices]
IRQ_pci = "n/a",0
[DSChanChoices]
DSCHAN_1 = "1",1
DSCHAN_2 = "2",2
DSCHAN_3 = "3",3
DSCHAN_4 = "4",4
DSCHAN_5 = "5",5
DSCHAN_6 = "6",6
DSCHAN_7 = "7",7
DSCHAN_8 = "8",8
DSCHAN_9 = "9",9
DSCHAN_10 = "10",10
DSCHAN_11 = "11",11
[STA_NetTypeChoices]
NETTYPE_ADHOC = "Ad Hoc",0
NETTYPE_INFRA = "Infrastructure",1
[STA_TxRateChoices]
TXRATE_1 = "1 Mb/s", 1
TXRATE_2 = "2 Mb/s", 2
TXRATE_1_2 = "Auto 1 or 2 Mb/s", 3
TXRATE_55 = "5.5 Mb/s", 4
TXRATE_11 = "11 Mb/s", 8
TXRATE_ALL = "Fully Auto", 15
[STA_AuthenticationChoices]
AUTHEN_OPEN = "Open System", 1
AUTHEN_SHARE = "Shared Key", 2
AUTHEN_AUTO = "Auto", 65535
[STA_ListenIntervalChoices]
LISTENINT_1 = "1 Beacon Per", 1
LISTENINT_2 = "2 Beacon Per", 2
LISTENINT_3 = "3 Beacon Per", 3
LISTENINT_4 = "4 Beacon Per", 4
LISTENINT_5 = "5 Beacon Per", 5
LISTENINT_M = "Maximum", 1
[STA_PSModeChoices]
PS_DIS = "Disabled", 1
PS_EN = "Enabled", 2
[RTSThreshChoices]
RTSTHRESH_0 = "Always", 0
RTSTHRESH_256 = "256 Bytes", 256
RTSTHRESH_512 = "512 Bytes", 512
RTSTHRESH_768 = "768 Bytes", 768
RTSTHRESH_1024 = "1024 Bytes", 1024
RTSTHRESH_1280 = "1280 Bytes", 1280
RTSTHRESH_DIS = "Disabled", 2432
[FragThreshChoices]
FRAGTHRESH_256 = "256 Bytes", 256
FRAGTHRESH_512 = "512 Bytes", 512
FRAGTHRESH_768 = "768 Bytes", 768
FRAGTHRESH_1024 = "1024 Bytes", 1024
FRAGTHRESH_1280 = "1280 Bytes", 1280
FRAGTHRESH_DIS = "Disabled", 2432
[WepReqChoices]
WEP_DIS = "Disabled", 0
WEP_MAN = "64 bits", 2
WEP_EHN = "128 bits", 6
[ExCreateRegKey]
Debug-Output $(DbgPrefix)"******************Entering [ExCreateRegKey]******************"
Set ECR_Result = NO_ERROR
Set ECR_BaseKeyHandle = $($0)
Set ECR_NewPath = $($1)
Set KeyNull = ""
Set MAXIMUM_ALLOWED = 33554432
Debug-Output $(DbgPrefix)"ExCreateRegKey - ECR_BaseKeyHandle = "$(ECR_BaseKeyHandle)
Debug-Output $(DbgPrefix)" ECR_NewPath = "$(ECR_NewPath)
Debug-Output $(DbgPrefix)" MAXIMUM_ALLOWED = "$(MAXIMUM_ALLOWED)
Debug-Output $(DbgPrefix)" KeyNull = "$(KeyNull)
OpenRegKey $(ECR_BaseKeyHandle) "" $(ECR_NewPath) $(MAXIMUM_ALLOWED) +
ECR_BaseKey
Debug-Output $(DbgPrefix)"ECR_BaseKey = "$(ECR_BaseKey)
Debug-Output $(DbgPrefix)" OpenRegKey returned "$($R0)
IfStr $(ECR_BaseKey) == $(KeyNull)
Debug-Output $(DbgPrefix)"ECR_BaseKey == KeyNull"
Else
Debug-Output $(DbgPrefix)"ECR_BaseKey != KeyNull"
Set ECR_KeyHandle = $(ECR_BaseKey)
GoTo ECR_Return
EndIf
Set ECR_TmpPath = ""
Split-String $(ECR_NewPath) "\" ECR_PList
Debug-Output $(DbgPrefix)"ECR_PList = "$(ECR_PList)
ForListDo $(ECR_PList)
IfStr(i) $($) != "\"
IfInt $(#) == 1
Set ECR_TmpPath = $($)
Else
Set ECR_TmpPath = $(ECR_TmpPath)"\"$($)
EndIf
Debug-Output $(DbgPrefix)"Determining if "$(ECR_TmpPath)" exists"
OpenRegKey $(ECR_BaseKeyHandle) "" $(ECR_TmpPath) $(MAXIMUM_ALLOWED) ECR_BaseKey
IfStr $(ECR_BaseKey) == $(KeyNull)
Debug-Output $(DbgPrefix)"Creating "$(ECR_TmpPath)
CreateRegKey $(ECR_BaseKeyHandle) {$(ECR_TmpPath),0,GenericClass} "" $(MAXIMUM_ALLOWED) "" ECR_KeyHandle
IfStr(i) $(ECR_KeyHandle) == $(KeyNull)
Set ECR_Result = $($R0)
GoTo ECR_Return
EndIf
EndIf
EndIf
EndForListDo
ECR_Return = +
return $(ECR_Result) $(ECR_KeyHandle)
;***************************************************************
; Parameter SECTIONS
;***************************************************************
[Parm-ReadReg]
set ValueName = ""
set ValueData = ""
set ValueStr = ""
set ValueList = {}
;
; Get the old values
;
EnumRegValue $(KeyParameters) ValueList
ForListDo $(ValueList)
set ValueItem = $($)
set ValueName = *($(ValueItem),1)
set ValueData = *($(ValueItem),4)
; resources
ifstr(i) $(ValueName) == "IoBaseAddress"
set IOBaseAddrItem = $(ValueData)
else-ifstr(i) $(ValueName) == "InterruptNumber"
set IRQValueItem = $(ValueData)
; general - combo
else-ifstr(i) $(ValueName) == "DSChannel"
set PHYParmItem = $(ValueData)
else-ifstr(i) $(ValueName) == "NetworkType"
set NetTypeItem = $(ValueData)
else-ifstr(i) $(ValueName) == "TxRate"
set TxRateItem = $(ValueData)
else-ifstr(i) $(ValueName) == "Authentication"
set AuthenticationItem = $(ValueData)
else-ifstr(i) $(ValueName) == "ListenInterval"
set ListenIntervalItem = $(ValueData)
else-ifstr(i) $(ValueName) == "RTSThresh"
set RTSThreshItem = $(ValueData)
else-ifstr(i) $(ValueName) == "FragThresh"
set FragThreshItem = $(ValueData)
else-ifstr(i) $(ValueName) == "PSMode"
set PSModeItem = $(ValueData)
else-ifstr(i) $(ValueName) == "WepReq"
set WepReqItem = $(ValueData)
; checkbox
else-ifstr(i) $(ValueName) == "Pcmcia"
set PcmciaValue = $(ValueData)
; edit
else-ifstr(i) $(ValueName) == "SSID"
set SSIDValue = $(ValueData)
endif
EndForListDo
ifint $(PcmciaValue) == 1
set Chk1 = "ON"
else
set Chk1 = "OFF"
endif
set IOBaseAddrUIVal = *($(IOBaseAddrList), ~($(IOBaseAddrValues),$(IOBaseAddrItem)))
ifstr(i) $(IOBaseAddrUIVal) == ""
set IOBaseAddrUIVal = *($(IOBaseAddrList), 1)
endif
set IRQValueUIVal = *($(IRQList), ~($(IRQValues),$(IRQValueItem)))
ifstr(i) $(IRQValueUIVal) == ""
set IRQValueUIVal = *($(IRQList), 1)
endif
set PHYParmUIVal = *($(PHYParmList), ~($(PHYParmValues),$(PHYParmItem)))
ifstr(i) $(PHYParmUIVal) == ""
set PHYParmUIVal = *($(PHYParmList), 1)
endif
set NetTypeUIVal = *($(NetTypeList), ~($(NetTypeValues),$(NetTypeItem)))
ifstr(i) $(NetTypeUIVal) == ""
set NetTypeUIVal = *($(NetTypeList), 1)
endif
set TxRateUIVal = *($(TxRateList), ~($(TxRateValues),$(TxRateItem)))
ifstr(i) $(TxRateUIVal) == ""
set TxRateUIVal = *($(TxRateList), 1)
endif
set AuthenticationUIVal = *($(AuthenticationList), ~($(AuthenticationValues),$(AuthenticationItem)))
ifstr(i) $(AuthenticationUIVal) == ""
set AuthenticationUIVal = *($(AuthenticationList), 1)
endif
set ListenIntervalUIVal = *($(ListenIntervalList), ~($(ListenIntervalValues),$(ListenIntervalItem)))
ifstr(i) $(ListenIntervalUIVal) == ""
set ListenIntervalUIVal = *($(ListenIntervalList), 6)
endif
set RTSThreshUIVal = *($(RTSThreshList), ~($(RTSThreshValues),$(RTSThreshItem)))
ifstr(i) $(RTSThreshUIVal) == ""
set RTSThreshUIVal = *($(RTSThreshList), 6)
endif
set FragThreshUIVal = *($(FragThreshList), ~($(FragThreshValues),$(FragThreshItem)))
ifstr(i) $(FragThreshUIVal) == ""
set FragThreshUIVal = *($(FragThreshList), 6)
endif
set PSModeUIVal = *($(PSModeList), ~($(PSModeValues),$(PSModeItem)))
ifstr(i) $(PSModeUIVal) == ""
set PSModeUIVal = *($(PSModeList), 1)
endif
set WepReqUIVal = *($(WepReqList), ~($(WepReqValues),$(WepReqItem)))
ifstr(i) $(WepReqUIVal) == ""
set WepReqUIVal = *($(WepReqList), 1)
endif
; Save the settings as they were read from the Registry.
exit
[Parm-UI-values]
set IOBaseAddrUIVal = $(Combo1Out)
set IRQValueUIVal = $(Combo2Out)
set TxRateUIVal = $(Combo3Out)
set PHYParmUIVal = $(Combo4Out)
set NetTypeUIVal = $(Combo5Out)
set RTSThreshUIVal = $(Combo6Out)
set FragThreshUIVal = $(Combo7Out)
set PSModeUIVal = $(Combo8Out)
set WepReqUIVal = $(Combo9Out)
set AuthenticationUIVal = $(Combo10Out)
set ListenIntervalUIVal = $(Combo11Out)
set SSIDValue = *($(EditTextOut),1)
; Set Chk = *($(CheckItemsOut), 1)
; Ifstr(i) $(Chk) == "ON"
; Set PcmciaValue = 1
; set Chk1 = "ON"
; Else
Set PcmciaValue = 0
set Chk1 = "OFF"
; Endif
exit
[Parm-WriteReg]
Debug-Output "Starting Parm-WriteReg."
set IOBaseAddrValue = *($(IOBaseAddrValues), ~($(IOBaseAddrList),$(IOBaseAddrUIVal)))
set IRQValue = *($(IRQValues), ~($(IRQList),$(IRQValueUIVal)))
set PHYParmValue = *($(PHYParmValues), ~($(PHYParmList),$(PHYParmUIVal)))
set NetTypeValue = *($(NetTypeValues), ~($(NetTypeList),$(NetTypeUIVal)))
set TxRateValue = *($(TxRateValues), ~($(TxRateList),$(TxRateUIVal)))
set AuthenticationValue = *($(AuthenticationValues), ~($(AuthenticationList),$(AuthenticationUIVal)))
set ListenIntervalValue = *($(ListenIntervalValues), ~($(ListenIntervalList),$(ListenIntervalUIVal)))
set RTSThreshValue = *($(RTSThreshValues), ~($(RTSThreshList),$(RTSThreshUIVal)))
set FragThreshValue = *($(FragThreshValues), ~($(FragThreshList),$(FragThreshUIVal)))
set PSModeValue = *($(PSModeValues), ~($(PSModeList),$(PSModeUIVal)))
set WepReqValue = *($(WepReqValues), ~($(WepReqList),$(WepReqUIVal)))
set NetValueList = {+
{MediaType, $(NoTitle),$(!REG_VT_DWORD),1},+
{BusNumber, $(NoTitle),$(!REG_VT_DWORD),$(BusNumber)},+
{BusType, $(NoTitle),$(!REG_VT_DWORD),$(BusType)},+
; {SlotNumber, $(NoTitle),$(!REG_VT_DWORD),$(PciSlotNumber)},+
; {MajorVersion, $(NoTitle),$(!REG_VT_SZ),2},+
; {MinorVersion, $(NoTitle),$(!REG_VT_SZ),0},+
}
set PRISMValueList = {+
{SSID, $(NoTitle),$(!REG_VT_SZ), $(SSIDValue)},+
{WEP64_KEY_1, $(NoTitle),$(!REG_VT_SZ), "0000000000"},+
{WEP64_KEY_2, $(NoTitle),$(!REG_VT_SZ), "0000000000"},+
{WEP64_KEY_3, $(NoTitle),$(!REG_VT_SZ), "0000000000"},+
{WEP64_KEY_4, $(NoTitle),$(!REG_VT_SZ), "0000000000"},+
{WEP128_KEY_1, $(NoTitle),$(!REG_VT_SZ), "00000000000000000000000000"},+
{WEP128_KEY_2, $(NoTitle),$(!REG_VT_SZ), "00000000000000000000000000"},+
{WEP128_KEY_3, $(NoTitle),$(!REG_VT_SZ), "00000000000000000000000000"},+
{WEP128_KEY_4, $(NoTitle),$(!REG_VT_SZ), "00000000000000000000000000"},+
{CurProfile, $(NoTitle),$(!REG_VT_SZ), "default"},+
{RTSThresh, $(NoTitle),$(!REG_VT_DWORD),$(RTSThreshValue)},+
{FragThresh, $(NoTitle),$(!REG_VT_DWORD),$(FragThreshValue)},+
; {Encapsulation, $(NoTitle),$(!REG_VT_DWORD),$(EthConvValue)},+
{TxRate, $(NoTitle),$(!REG_VT_DWORD),$(TxRateValue)},+
{WepReq, $(NoTitle),$(!REG_VT_DWORD),$(WepReqValue)},+
{AuthentAlg, $(NoTitle),$(!REG_VT_DWORD),$(AuthenticationValue)},+
{ListenInterval,$(NoTitle),$(!REG_VT_DWORD),$(ListenIntervalValue)},+
{DecryptInDriver,$(NoTitle),$(!REG_VT_DWORD),$(DecryptInDriverValue)},+
{EncryptInDriver,$(NoTitle),$(!REG_VT_DWORD),$(EncryptInDriverValue)},+
; {WEPFactor, $(NoTitle),$(!REG_VT_DWORD),$(WEPFactorValue)},+
; {PollInDriver, $(NoTitle),$(!REG_VT_DWORD),$(PollInDriverValue)},+
; {IBSSInDriver, $(NoTitle),$(!REG_VT_DWORD),$(IBSSInDriverValue)},+
{PreambleMode, $(NoTitle),$(!REG_VT_DWORD),$(PreambleModeValue)},+
}
set NetTypeValueList = {+
{NetworkType, $(NoTitle),$(!REG_VT_DWORD),$(NetTypeValue)},+
{PSMode, $(NoTitle),$(!REG_VT_DWORD),$(PSModeValue)},+
; {PSLevel, $(NoTitle),$(!REG_VT_DWORD),$(PSLevelValue)},+
}
set PHYTypeValueList = {+
{DSChannel, $(NoTitle),$(!REG_VT_DWORD),$(PHYParmValue)},+
}
; Shell $(UtilityInf), AddValueList, $(KeyParameters), $(NewValueList)
exit
;***************************************************************
; Default SECTIONS
;***************************************************************
[PCI-Defaults]
set IRQValueUIVal = "n/a"
set IOBaseAddrUIVal = "n/a"
exit
[Read-Defaults]
; set the default values
; I/O Base Address = 0x240
; set IOBaseAddrUIVal = "240"
; IRQ Level = 9
; set IRQValueUIVal = "7"
; PcmciaValue = 0/1
set PcmciaValue = 0
set Chk1 = "OFF"
; Ethernet conversion mode
set EthConvValue = 1
; Station Mode related default values
set PSLevelValue = 0;
; Power Save Mode
set PSModeUIVal = "Disabled"
; configure as infrastructure station
set NetTypeUIVal = "Infrastructure"
; configure for Fully Auto as default
set TxRateUIVal = "Fully Auto"
; configure for Authentication Open System
set AuthenticationUIVal = "Open System"
; configure for Listen interval at MAX
set ListenIntervalUIVal = "3 Beacon Per"
; configure for RTS/CTS disabled
set RTSThreshUIVal = "Disabled"
; configure for Fragmentation disabled
set FragThreshUIVal = "Disabled"
; configure for WEP Disabled
set WepReqUIVal = "Disabled"
; PHY parameters DS
set PHYParmUIVal = "6"
; Decryption to be done in Driver flag
set DecryptInDriverValue = 0;
; Encryption to be done in Driver flag
set EncryptInDriverValue = 1;
; WEP Factor value
set WEPFactorValue = 3;
; IBSS to be managed by Driver flag
set IBSSInDriverValue = 0;
; Set Preamble mode to Long=1
set PreambleModeValue = 1;
; default SSID - to be customized by OEM customer
set SSIDValue = "any"
exit
Download Driver Pack
After your driver has been downloaded, follow these simple steps to install it.
Expand the archive file (if the download file is in zip or rar format).
If the expanded file has an .exe extension, double click it and follow the installation instructions.
Otherwise, open Device Manager by right-clicking the Start menu and selecting Device Manager.
Find the device and model you want to update in the device list.
Double-click on it to open the Properties dialog box.
From the Properties dialog box, select the Driver tab.
Click the Update Driver button, then follow the instructions.
Very important: You must reboot your system to ensure that any driver updates have taken effect.
For more help, visit our Driver Support section for step-by-step videos on how to install drivers for every file type.