home *** CD-ROM | disk | FTP | other *** search
INI File | 1993-07-24 | 22.2 KB | 613 lines |
- [Identification]
- OptionType = NetAdapter
- [PlatformsSupported]
- ISA
- EISA
- "Jazz-Internal Bus"
- [Options]
- LT200
- [IOBaseAddrChoices]
- IOBase_1 = "0x200",512
- IOBase_2 = "0x240",576
- IOBase_3 = "0x260",608
- IOBase_4 = "0x2A0",672
- IOBase_5 = "0x300",768
- IOBase_6 = "0x320",800
- IOBase_7 = "0x330",816
- IOBase_8 = "0x340",832
- IOBase_9 = "0x350",848
- [FileConstants]
- UtilInf = "UTILITY.INF"
- SubInf = "SUBROUTN.INF"
- SoftwareType = "driver"
- Manufacturer = "Microsoft"
- ProductMajorVersion = "3"
- ProductMinorVersion = "1"
- ProductVersion = $(ProductMajorVersion)"."$(ProductMinorVersion)
- ProductSoftwareName = "lt200"
- ProductSoftwareImagePath = "%SystemRoot%\System32\drivers\lt200.sys"
- NetRuleSoftwareType = "Lt200Sys ltkndisDriver lt200Driver"
- NetRuleSoftwareUse = $(SoftwareType)
- NetRuleSoftwareBindForm = """Lt200Sys"" yes no container"
- NetRuleSoftwareClass = {"lt200Driver basic","ltkndisDriver basic yes"}
- NetRuleSoftwareBindable = {"lt200Driver lt200Adapter non exclusive 100",+
- "ltkndisDriver lt200Driver non non 100"}
- ProductEventDll = "%SystemRoot%\System32\netevent.dll"
- ProductHardwareName = "lt200"
- NetRuleHardwareType = "lt200 lt200Adapter"
- NetRuleHardwareBindForm = " yes yes container"
- NetRuleHardwareClass = {"lt200Adapter basic"}
- ProductKeyName = $(!NTN_SoftwareBase)"\"$(Manufacturer)"\"$(ProductSoftwareName)"\CurrentVersion"
- ParamKeyName = $(!NTN_ServiceBase)"\"$(ProductHardwareName)"\Parameters"
- CardKey = $(!NTN_SoftwareBase)"\Microsoft\Windows NT\CurrentVersion\NetworkCards"
- ProductInfName = $(!STF_CWDDIR)"oemnadlt.inf"
- [GeneralConstants]
- KeyNull = ""
- MAXIMUM_ALLOWED = 33554432
- RegistryErrorIndex = NO_ERROR
- KeyProduct = ""
- KeyParameters = ""
- TRUE = 1
- FALSE = 0
- NoTitle = 0
- !DebugOutputControl = 1
- [date]
- Now = {} ? $(!LIBHANDLE) GetSystemDate
- [Identify]
- read-syms Identification
- set Status = STATUS_SUCCESSFUL
- set Identifier = $(OptionType)
- set Media = #("Source Media Descriptions", 1, 1)
- Return $(Status) $(Identifier) $(Media)
- [ReturnOptions]
- set Status = STATUS_FAILED
- set OptionList = {}
- set OptionTextList = {}
- set LanguageList = ^(LanguagesSupported, 1)
- Ifcontains(i) $($0) in $(LanguageList)
- 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]
- set Status = STATUS_FAILED
- set Option = $($1)
- set SrcDir = $($2)
- Set AddCopy = $($3)
- Set DoCopy = $($4)
- Set DoConfig = $($5)
- set LanguageList = ^(LanguagesSupported, 1)
- Ifcontains(i) $($0) NOT-IN $(LanguageList)
- return STATUS_NOLANGUAGE
- EndIf
- StartWait
- set-subst LF = "\n"
- set-subst CR = "\r"
- read-syms GeneralConstants
- read-syms FileConstants
- read-syms DialogConstants$(!STF_LANGUAGE)
- read-syms FileConstants$(!STF_LANGUAGE)
- detect date
- set-title $(FunctionTitle)
- set CommonStatus = STATUS_SUCCESSFUL
- EndWait
- Begin = +
- Ifstr(i) $(!NTN_InstallMode) == deinstall
- set StartLabel = removeadapter
- Set RemoveonError = FALSE
- else-Ifstr(i) $(!NTN_InstallMode) == Update
- set StartLabel = UpgradeSoftware
- else-Ifstr(i) $(!NTN_InstallMode) == bind
- set StartLabel = bindingadapter
- else-Ifstr(i) $(!NTN_InstallMode) == configure
- set StartLabel = configureadapter
- Ifstr(i) $(ProductKeyName) == $(!NTN_RegBase)
- Debug-Output "Cannot configure the localtalk driver software."
- Shell $(UtilInf),RegistryErrorString,CANNOT_CONFIGURE_SOFTWARE
- ifint $($ShellCode) != $(!SHELL_CODE_OK)
- goto ShellCodeError
- endif
- set Error = $($R0)
- Shell $(SubInf) SetupMessage $(!STF_LANGUAGE) "NONFATAL" $(Error)
- goto usercancel
- endif
- else
- set StartLabel = installadapter
- set REMOVE_SOFTWARE = TRUE
- set REMOVE_HARDWARE = {}
- Set RemoveOnError = TRUE
- endif
- goto $(StartLabel)
- installadapter = +
- OpenRegKey $(!REG_H_LOCAL) "" $(ProductKeyName) $(MAXIMUM_ALLOWED) KeyProduct
- Ifstr $(KeyProduct) != $(KeyNull)
- GetRegValue $(KeyProduct) $(MajorVersion) VersionInfo
- set VersionMajor = *($(VersionInfo), 4)
- GetRegValue $(KeyProduct) $(MinorVersion) VersionInfo
- set VersionMinor = *($(VersionInfo), 4)
- set InstalledVersion = $(VersionMajor)"."$(VersionMinor)
- ifstr(i) $(ProductVersion) == $(InstalledVersion)
- read-syms MiscErrorString1$(!STF_LANGUAGE)
- Set Text = $(Version)$(ProductVersion)
- Shell $(SubInf), SetupMessage $(!STF_LANGUAGE) "NONFATAL" $(Text)$(ErrorString)
- goto end
- EndIf
- EndIf
- ifstr(i) $(!NTN_InstallMode) == "install"
- Ifstr(i) $(!DoCopy) == "YES"
- ifstr(i) $(!STF_IDW) != "TRUE"
- Shell $(UtilInf), DoAskSource, $(!STF_CWDDIR), $(SrcDir) YES
- endif
- Ifint $($ShellCode) != $(!SHELL_CODE_OK)
- Goto ShellCodeError
- Else-Ifstr(i) $($R0) == STATUS_FAILED
- Shell $(UtilInf) RegistryErrorString "ASK_SOURCE_FAIL"
- ifint $($ShellCode) != $(!SHELL_CODE_OK)
- goto ShellCodeError
- endif
- set Error = $($R0)
- Goto end
- Else-Ifstr(i) $($R0) == STATUS_USERCANCEL
- Goto usercancel
- Endif
- Set SrcDir = $($R1)
- Endif
- Endif
- ifstr(i) $(!STF_IDW) != "TRUE"
- install "Install-Initial"
- ifstr(i) $(STF_INSTALL_OUTCOME) != STF_SUCCESS
- Set CommonStatus = STATUS_USERCANCEL
- goto end
- Endif
- EndIf
- adapteroptions = +
- set IOBaseAddrValue = *($(IOBaseAddrList), 8)
- read-syms FileDependentDlg$(!STF_LANGUAGE)
- ui start "InputDlg"
- ifstr(i) $(DLGEVENT) == "CONTINUE"
- set IOBaseAddrIndex = $(Combo1Out)
- ui pop 1
- else-ifstr(i) $(DLGEVENT) == "EXIT"
- set CommonStatus = STATUS_USERCANCEL
- ui pop 1
- goto usercancel
- else
- set CommonStatus = STATUS_USERCANCEL
- ui pop 1
- goto usercancel
- endif
- installproduct = +
- Set FLibraryErrCtl = 1
- Shell $(UtilInf), AddSoftwareComponent, +
- $(Manufacturer),+
- $(ProductSoftwareName), +
- $(ProductSoftwareName), +
- $(ProductSoftwareName), +
- $(ProductInfName), +
- $(ProductSoftwareImagePath),+
- "kernel", "NDIS", {}, "", $(ProductEventDll)
- ifint $($ShellCode) != 0
- goto ShellCodeError
- endif
- set RegistryErrorIndex = $($R0)
- set KeyProduct = $($R1)
- Set SoftNetRulesKey = $($R2)
- CloseRegKey $($R3)
- CloseRegKey $($R4)
- CloseRegKey $($R5)
- Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
- CloseRegKey $(KeyProduct)
- CloseRegKey $(SoftNetRulesKey)
- goto fatalregistry
- endif
- set NewValueList = +
- {{SoftwareType,0,$(!REG_VT_SZ),$(SoftwareType)},+
- {MajorVersion,0,$(!REG_VT_DWORD),$(ProductMajorVersion)},+
- {MinorVersion,0,$(!REG_VT_DWORD),$(ProductMinorVersion)},+
- {Title,0,$(!REG_VT_SZ),$(ProductSoftwareTitle)},+
- {Description,0,$(!REG_VT_SZ),$(ProductSoftwareDescription)},+
- {PathName,0,$(!REG_VT_SZ),$(!STF_WINDOWSSYSPATH)},+
- {ServiceName,0,$(!REG_VT_SZ),$(ProductSoftwareName)},+
- {InstallDate,0,$(!REG_VT_DWORD),*($(Now),1)}}
- Shell $(UtilInf), AddValueList, $(KeyProduct), $(NewValueList)
- ifint $($ShellCode) != 0
- goto ShellCodeError
- endif
- set RegistryErrorIndex = $($R0)
- Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
- CloseRegKey $(KeyProduct)
- CloseRegKey $(SoftNetRulesKey)
- goto fatalregistry
- endif
- set NewValueList = +
- {{type,0,$(!REG_VT_SZ),$(NetRuleSoftwareType)},+
- {use,0,$(!REG_VT_SZ),$(NetRuleSoftwareUse)}, +
- {bindform,0,$(!REG_VT_SZ),$(NetRuleSoftwareBindForm)}, +
- {class,0,$(!REG_VT_MULTI_SZ),$(NetRuleSoftwareClass)}, +
- {bindable,0,$(!REG_VT_MULTI_SZ),$(NetRuleSoftwareBindable)}, +
- {InfOption,0,$(!REG_VT_SZ),$(Option)}, +
- {Infname ,0,$(!REG_VT_SZ),$(ProductInfName)}}
- Shell $(UtilInf), AddValueList, $(SoftNetRulesKey), $(NewValueList)
- ifint $($ShellCode) != 0
- goto ShellCodeError
- endif
- set RegistryErrorIndex = $($R0)
- CloseRegKey $(KeyProduct)
- CloseRegKey $(SoftNetRulesKey)
- Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
- Debug-Output "Resgitry error: add value list."
- goto fatalregistry
- endif
- Shell $(UtilInf), AddHardwareComponent, $(ProductHardwareName),$(ProductInfName),$(ProductKeyName)
- ifint $($R4) != -1
- Set REMOVE_HARDWARE = >($(REMOVE_HARDWARE), $(CardKey)"\"$($R4))
- endif
- ifint $($ShellCode) != 0
- goto ShellCodeError
- endif
- set RegistryErrorIndex = $($R0)
- Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
- EndWait
- CloseRegKey $($R1)
- CloseRegKey $($R2)
- CloseRegKey $($R3)
- goto fatalregistry
- Endif
- set KeyParameters = $($R3)
- set KeyAdapterRules = $($R2)
- set AdapterNumber = $($R4)
- set NewValueList = {{Manufacturer,0,$(!REG_VT_SZ),$(Manufacturer)},+
- {Title,0,$(!REG_VT_SZ),"["$($R4)"] "$(ProductHardwareTitle)},+
- {Description,0,$(!REG_VT_SZ),$(ProductHardwareDescription)},+
- {ProductName,0,$(!REG_VT_SZ),$(ProductHardwareName)},+
- {ServiceName,0,$(!REG_VT_SZ),$($R5)},+
- {InstallDate,0,$(!REG_VT_DWORD),*($(Now),1)}}
- Shell $(UtilInf), AddValueList, $($R1), $(NewValueList)
- ifint $($ShellCode) != 0
- goto ShellCodeError
- endif
- CloseRegKey $($R1)
- set TempProdName = """"$(ProductHardwareName)$(AdapterNumber)""""
- set TempBindForm = $(TempProdName)$(NetRuleHardwareBindForm)
- set NewValueList = +
- {{type,0,$(!REG_VT_SZ),$(NetRuleHardwareType)},+
- {bindform,0,$(!REG_VT_SZ),$(TempBindForm)}, +
- {class,0,$(!REG_VT_MULTI_SZ),$(NetRuleHardwareClass)}, +
- {InfOption,0,$(!REG_VT_SZ),$(Option)}, +
- {Infname ,0,$(!REG_VT_SZ),$(ProductInfName)}}
- Shell $(UtilInf), AddValueList, $(KeyAdapterRules), $(NewValueList)
- ifint $($ShellCode) != 0
- goto ShellCodeError
- endif
- set RegistryErrorIndex = $($R0)
- Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
- CloseRegKey $(KeyParameters)
- CloseRegKey $(KeyAdapterRules)
- goto fatalregistry
- endif
- CloseRegKey $(KeyAdapterRules)
- goto writeparameters
- configureadapter = +
- OpenRegKey $(!REG_H_LOCAL) "" $(!NTN_RegBase) $(MAXIMUM_ALLOWED) KeyProduct
- Ifstr $(KeyProduct) == $(KeyNull)
- set RegistryErrorIndex = CANNOT_FIND_COMPONENT_SERVICE
- goto fatalregistry
- Endif
- Shell $(UtilInf) FindService, $(KeyProduct)
- Ifint $($ShellCode) != 0
- Goto ShellCodeError
- Endif
- Ifstr(i) $($R0) != NO_ERROR
- Goto fatalregistry
- endif
- set KeyParameters = $($R2)
- CloseRegKey $($R1)
- Ifstr $(KeyParameters) == $(KeyNull)
- set RegistryErrorIndex = CANNOT_FIND_COMPONENT_SERVICE
- goto fatalregistry
- endif
- set ValueName = ""
- set ValueData = ""
- set ValueStr = ""
- set ValueList = {}
- EnumRegValue $(KeyParameters) ValueList
- ForListDo $(ValueList)
- set ValueItem = $($)
- set ValueName = *($(ValueItem),1)
- set ValueData = *($(ValueItem),4)
- ifstr(i) $(ValueName) == "IOBaseAddress"
- set IOBaseAddrIndex = $(ValueData)
- endif
- EndForListDo
- set IOBaseAddrValue = *($(IOBaseAddrList), ~($(IOBaseAddrValues),$(IOBaseAddrIndex)))
- ifstr(i) $(IOBaseAddrValue) == ""
- set IOBaseAddrValue = *($(IOBaseAddrList), 1)
- endif
- cfgoptions = +
- read-syms FileDependentDlg$(!STF_LANGUAGE)
- ui start "InputDlg"
- ifstr(i) $(DLGEVENT) == "CONTINUE"
- set CommonStatus = STATUS_REBOOT
- set IOBaseAddrIndex = $(Combo1Out)
- ui pop 1
- else-ifstr(i) $(DLGEVENT) == "EXIT"
- ui pop 1
- goto usercancel
- else
- ui pop 1
- goto usercancel
- endif
- writeparameters = +
- Shell $(UtilInf) GetBusTypeNum
- Set BusType = $($R1)
- ifint $($ShellCode) != $(!SHELL_CODE_OK)
- goto ShellCodeError
- endif
- Set BusType = 1
- set IOBaseAddrValue = *($(IOBaseAddrValues), +
- ~($(IOBaseAddrList),$(IOBaseAddrIndex)))
- set NewValueList = {{MediaType,0,$(!REG_VT_DWORD),5},+
- {InterruptNumber,0,$(!REG_VT_DWORD),0},+
- {BusType,0,$(!REG_VT_DWORD),$(BusType)},+
- {IOBaseAddress,0,$(!REG_VT_DWORD),$(IOBaseAddrValue)}}
- Shell $(UtilInf), AddValueList, $(KeyParameters), $(NewValueList)
- CloseRegKey $(KeyParameters)
- ifint $($ShellCode) != 0
- Debug-Output "ShellCode error."
- goto ShellCodeError
- endif
- set RegistryErrorIndex = $($R0)
- Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
- Debug-Output "Registry error: Add value list"
- goto fatalregistry
- endif
- goto end
- removeadapter = +
- Set FLibraryErrCtl = 1
- Ifstr(i) $(ProductKeyName) == $(!NTN_RegBase)
- Shell $(UtilInf), RemoveSoftwareComponent, $(Manufacturer),+
- $(ProductSoftwareName)
- ifint $($ShellCode) != $(!SHELL_CODE_OK)
- goto ShellCodeError
- endif
- set RegistryErrorIndex = $($R0)
- Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
- goto fatalregistry
- endif
- else
- Debug-Output "Registry Base = "$(!NTN_RegBase)
- Debug-Output "Product Name = "$(ProductSoftwareName)
- Shell $(UtilInf), RemoveHardwareComponent, $(Manufacturer),+
- $(ProductSoftwareName), +
- $(!NTN_RegBase)
- ifint $($ShellCode) != $(!SHELL_CODE_OK)
- Debug-Output "ShellCode error"
- goto ShellCodeError
- endif
- set RegistryErrorIndex = $($R0)
- Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
- goto fatalregistry
- endif
- endif
- goto end
- UpgradeSoftware = +
- ifstr(i) $(ProductKeyName) == $(!NTN_RegBase)
- OpenRegKey $(!REG_H_LOCAL) "" $(ProductKeyName) $(MAXIMUM_ALLOWED) KeyProduct
- Ifstr $(KeyProduct) != $(KeyNull)
- GetRegValue $(KeyProduct),"MajorVersion", VersionInfo
- set Version = *($(VersionInfo), 4)
- Split-String $(!NTN_Infname), "\", FilenameList
- QueryListSize ListSize $(FilenameList)
- set !UG_Filename = *($(FilenameList), $(ListSize))
- install "Install-Update"
- ifstr(i) $(STF_INSTALL_OUTCOME) != STF_SUCCESS
- goto fatal
- endif
- SetRegValue $(KeyProduct) {MajorVersion,0,$(!REG_VT_SZ),$(ProductMajorVersion)}
- SetRegValue $(KeyProduct) {MinorVersion,0,$(!REG_VT_SZ),$(ProductMinorVersion)}
- endif
- else
- OpenRegKey $(!REG_H_LOCAL) "" $(!NTN_RegBase) $(MAXIMUM_ALLOWED) NetworkCardKey
- Ifstr(i) $(NetworkCardKey) != $(KeyNull)
- GetRegValue $(NetworkCardKey),"ServiceName", ServiceNameInfo
- set ServiceName = *($(ServiceNameInfo), 4)
- OpenRegKey $(NetworkCardKey) "" "NetRules" $(MAXIMUM_ALLOWED) NetRuleKey
- Ifstr(i) $(NetRuleKey) == $(KeyNull)
- goto fatalregistry
- endif
- CloseRegKey $(NetRules)
- CloseRegKey $(NetworkCardKey)
- else
- goto fatalregistry
- endif
- OpenRegKey $(!REG_H_LOCAL) "" $(!NTN_ServiceBase)"\"$(ServiceName)$(MAXIMUM_ALLOWED) ServiceKey
- Ifstr(i) $(ServiceKey) != $(KeyNull)
- CloseRegKey $(ServiceKey)
- else
- goto fatalregistry
- endif
- EndIf
- abandon = +
- ForListDo $(REMOVE_HARDWARE)
- Shell $(UtilInf), RemoveHardwareComponent, $(Manufacturer), +
- $(ProductSoftwareName), +
- $($)
- ifint $($ShellCode) != $(!SHELL_CODE_OK)
- goto ShellCodeError
- endif
- set RegistryErrorIndex = $($R0)
- Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
- goto fatalregistry
- endif
- EndForListDo
- Ifstr(i) $(REMOVE_SOFTWARE) == TRUE
- Shell $(UtilInf), RemoveSoftwareComponent, $(Manufacturer), +
- $(ProductSoftwareName), FALSE
- ifint $($ShellCode) != $(!SHELL_CODE_OK)
- goto ShellCodeError
- endif
- set RegistryErrorIndex = $($R0)
- Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
- goto fatalregistry
- endif
- endif
- goto end
- fatalregistry = +
- Shell $(UtilInf) RegistryErrorString $(RegistryErrorIndex)
- ifint $($ShellCode) != $(!SHELL_CODE_OK)
- goto ShellCodeError
- endif
- set Error = $($R0)
- goto fatal
- fatal = +
- ifstr(i) $(!NTN_InstallMode) == install
- read-syms MiscErrorString3$(!STF_LANGUAGE)
- Shell $(SubInf) SetupMessage, $(!STF_LANGUAGE), "FATAL", $(ErrorString)$(Error)
- Else
- Shell $(SubInf) SetupMessage, $(!STF_LANGUAGE), "FATAL", $(Error)
- EndIf
- ifint $($ShellCode) != 0
- goto ShellCodeError
- endif
- goto setfailed
- ShellCodeError = +
- read-syms ShellingError$(!STF_LANGUAGE)
- Shell $(SubInf) SetupMessage $(!STF_LANGUAGE) "FATAL" $(ErrorString)
- goto setfailed
- setfailed = +
- set CommonStatus = STATUS_FAILED
- ifstr(i) $(RemoveOnError) == TRUE
- Set RemoveOnError = FALSE
- goto abandon
- else
- goto end
- EndIf
- end = +
- Return $(CommonStatus)
- usercancel = +
- Set CommonStatus = STATUS_USERCANCEL
- Return $(CommonStatus)
- [Install-Update]
- set STF_VITAL = ""
- AddSectionFilesToCopyList Files-LT200 $(SrcDir) $(!STF_WINDOWSSYSPATH)\drivers
- AddSectionFilesToCopyList Files-Inf $(SrcDir) $(!STF_WINDOWSSYSPATH)
- CopyFilesInCopyList
- Exit
- [Install-Initial]
- set STF_VITAL = ""
- AddSectionFilesToCopyList Files-LT200 $(SrcDir) $(!STF_WINDOWSSYSPATH)\drivers
- CopyFilesInCopyList
- Exit
- [Source Media Descriptions]
- 1 = "Windows NT Advanced Server Setup Disk #1" , TAGFILE = disk1
- 2 = "Windows NT Advanced Server Setup Disk #2" , TAGFILE = disk2
- 3 = "Windows NT Advanced Server Setup Disk #3" , TAGFILE = disk3
- 4 = "Windows NT Advanced Server Setup Disk #4" , TAGFILE = disk4
- 5 = "Windows NT Advanced Server Setup Disk #5" , TAGFILE = disk5
- 6 = "Windows NT Advanced Server Setup Disk #6" , TAGFILE = disk6
- 7 = "Windows NT Advanced Server Setup Disk #7" , TAGFILE = disk7
- 8 = "Windows NT Advanced Server Setup Disk #8" , TAGFILE = disk8
- 9 = "Windows NT Advanced Server Setup Disk #9" , TAGFILE = disk9
- 10 = "Windows NT Advanced Server Setup Disk #10" , TAGFILE = disk10
- 11 = "Windows NT Advanced Server Setup Disk #11" , TAGFILE = disk11
- 12 = "Windows NT Advanced Server Setup Disk #12" , TAGFILE = disk12
- 13 = "Windows NT Advanced Server Setup Disk #13" , TAGFILE = disk13
- 14 = "Windows NT Advanced Server Setup Disk #14" , TAGFILE = disk14
- 15 = "Windows NT Advanced Server Setup Disk #15" , TAGFILE = disk15
- 16 = "Windows NT Advanced Server Setup Disk #16" , TAGFILE = disk16
- 17 = "Windows NT Advanced Server Setup Disk #17" , TAGFILE = disk17
- 18 = "Windows NT Advanced Server Setup Disk #18" , TAGFILE = disk18
- 19 = "Windows NT Advanced Server Setup Disk #19" , TAGFILE = disk19
- 20 = "Windows NT Advanced Server Setup Disk #20" , TAGFILE = disk20
- 21 = "Windows NT Advanced Server Setup Disk #21" , TAGFILE = disk21
- 22 = "Windows NT Advanced Server Setup Disk #22" , TAGFILE = disk22
- 23 = "Windows NT Advanced Server Setup Disk #23" , TAGFILE = disk23
- 24 = "Windows NT Advanced Server Setup Disk #24" , TAGFILE = disk24
- 25 = "Windows NT Advanced Server Setup Disk #25" , TAGFILE = disk25
- 26 = "Windows NT Advanced Server Setup Disk #26" , TAGFILE = disk26
- 27 = "Windows NT Advanced Server Setup Disk #27" , TAGFILE = disk27
- 28 = "Windows NT Advanced Server Setup Disk #28" , TAGFILE = disk28
- 29 = "Windows NT Advanced Server Setup Disk #29" , TAGFILE = disk29
- [ProductType]
- STF_PRODUCT = LanmanNT
- STF_PLATFORM = I386
- [Files-Inf]
- 2, oemsetup.inf, SIZE=1000, RENAME=$(!UG_Filename)
- [Files-LT200]
- 11,LT200.SYS , SIZE=23552
- [LanguagesSupported]
- ENG
- [OptionsTextENG]
- LT200 = "DayStar Digital LocalTalk Adapter"
- [FileConstantsENG]
- ProCaption = "LocalTalk Adapter Setup"
- ProCancel = "Cancel"
- ProCancelMsg = "LT200 LocalTalk Adapter is not correctly installed. "+
- "Are you sure you want to cancel copying files ?"
- ProCancelCap = "Network Setup Message"
- ProText1 = "Copying:"
- ProText2 = "To:"
- Error = "User has cancelled copying files. Copied files will be removed."
- FunctionTitle = "DayStar Digital LocalTalk Adapter Card Setup"
- ProductSoftwareDescription = "DayStar Digital LocalTalk Adapter Driver"
- ProductHardwareDescription = "DayStar Digital LocalTalk Adapter"
- AskLocationText = "Please enter the full path of the LocalTalk Adapter "+
- "distribution files. If you want to install files from "+
- "the original Setup floppy disks, type a drive letter "+
- "(such as A:) and Setup will prompt you for the correct disk. "+
- "Then choose continue."
- MajorVersion = "MajorVersion"
- MinorVersion = "MinorVersion"
- Version = "Version "
- IOBaseAddrList = ^(IOBaseAddrChoices, 1)
- IOBaseAddrValues = ^(IOBaseAddrChoices, 2)
- ProductSoftwareTitle = "Daystar Digital LocalTalk Adapter Driver"
- ProductHardwareTitle = "DayStar Digital LocalTalk Adapter"
- [DialogConstantsENG]
- Help = "&Help"
- Exit = "Cancel"
- OK = "OK"
- HelpContext = ""
- Continue = "OK"
- Cancel = "Cancel"
- [FileDependentDlgENG]
- Label1 = "I/O Base &Addr:"
- DlgType = "MultiCombo"
- DlgTemplate = "SINGLE_COMBO"
- Caption = $(FunctionTitle)
- Combo1List = $(IOBaseAddrList)
- Combo1Out = $(IOBaseAddrValue)
- ComboListItemsIn = {Combo1List}
- ComboListItemsOut = {Combo1Out}
- HelpContext = $(!IDH_DB_OEMNADLT_INS)
- [MiscErrorString1ENG]
- ErrorString = +
- " of the LocalTalk adapter driver is already installed in your system. "+
- "Use [Update] to update to newer versions."
- [MiscErrorString3ENG]
- ErrorString = +
- "Setup encountered the following error during installation. Try installing the "+
- "LocalTalk Adapter after rebooting your system. "$(LF)
- [ShellingErrorENG]
- ErrorString = +
- "An internal error occurred. Contact Technical Support."
-
-
-
-