home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / d / d423_liu / 8.ddi / OEMNADLM.IN_ / OEMNADLM.IN
Encoding:
INI File  |  1993-07-24  |  22.3 KB  |  554 lines

  1. [Identification]
  2.    OptionType = NetAdapter
  3. [PlatformsSupported]
  4.    MCA
  5. [Options]
  6.    LT200MC
  7. [FileConstants]
  8. UtilInf                 = "UTILITY.INF"
  9. SubInf                  = "SUBROUTN.INF"
  10. SoftwareType            = "driver"
  11. LT200MC_1BYTE           = 116
  12. LT200MC_2BYTE           = 102
  13. NETCARD_ID              = 26228
  14. Manufacturer            = "Microsoft"
  15. ProductMajorVersion     = "3"
  16. ProductMinorVersion     = "1"
  17. ProductVersion          = $(ProductMajorVersion)"."$(ProductMinorVersion)
  18. ProductInfName          = $(!STF_CWDDIR)oemnadlm.inf
  19. ProductSoftwareName      =    "lt200"
  20. ProductSoftwareImagePath =    "%SystemRoot%\system32\drivers\lt200.sys"
  21. NetRuleSoftwareType      =    "Lt200Sys ltkndisDriver lt200Driver"
  22. NetRuleSoftwareUse       =    $(SoftwareType)
  23. NetRuleSoftwareBindForm  =    """Lt200Sys"" yes no container"
  24. NetRuleSoftwareClass     =    {"lt200Driver basic","ltkndisDriver basic yes"}
  25. NetRuleSoftwareBindable  =    {"lt200Driver lt200Adapter non exclusive 100",+
  26.                              "ltkndisDriver lt200Driver non non 100"}
  27. ProductEventDll            =  "%SystemRoot%\system32\netevent.dll"
  28. ProductHardwareName     =  "lt200"
  29. NetRuleHardwareType     =  "lt200 lt200Adapter"
  30. NetRuleHardwareBindForm =  " yes yes container"
  31. NetRuleHardwareClass    =  {"lt200Adapter basic"}
  32. ProductKeyName  = $(!NTN_SoftwareBase)"\"$(Manufacturer)"\"$(ProductSoftwareName)"\CurrentVersion"
  33. ParamKeyName    = $(!NTN_ServiceBase)"\"$(ProductHardwareName)"\Parameters"
  34. CardKey         = $(!NTN_SoftwareBase)"\Microsoft\Windows NT\CurrentVersion\NetworkCards"
  35. [GeneralConstants]
  36. KeyNull                 = ""
  37. MAXIMUM_ALLOWED         = 33554432
  38. RegistryErrorIndex      = NO_ERROR
  39. KeyProduct              = ""
  40. KeyParameters           = ""
  41. TRUE                    = 1
  42. FALSE                   = 0
  43. NoTitle                 = 0
  44. !DebugOutputControl = 1
  45. [date]
  46.    Now = {} ? $(!LIBHANDLE) GetSystemDate
  47. [Identify]
  48.     read-syms Identification
  49.     set Status     = STATUS_SUCCESSFUL
  50.     set Identifier = $(OptionType)
  51.     set Media      = #("Source Media Descriptions", 1, 1)
  52.     Return $(Status) $(Identifier) $(Media)
  53. [ReturnOptions]
  54.     set Status        = STATUS_FAILED
  55.     set OptionList     = {}
  56.     set OptionTextList = {}
  57.     set LanguageList = ^(LanguagesSupported, 1)
  58.     Ifcontains(i) $($0) in $(LanguageList)
  59.         ifstr(i) $($1) == ""
  60.            goto returnoptions
  61.         endif
  62.         set PlatformList = ^(PlatformsSupported, 1)
  63.         Ifcontains(i) $($1) in $(PlatformList)
  64.            goto returnoptions
  65.         else
  66.            set Status = STATUS_NOTSUPPORTED
  67.            goto finish_ReturnOptions
  68.         endif
  69.    else
  70.         set Status = STATUS_NOLANGUAGE
  71.         goto finish_ReturnOptions
  72.    endif
  73. returnoptions = +
  74.     set OptionList     = ^(Options, 1)
  75.     set OptionTextList = ^(OptionsText$($0), 1)
  76.     set Status         = STATUS_SUCCESSFUL
  77. finish_ReturnOptions = +
  78.     Return $(Status) $(OptionList) $(OptionTextList)
  79. [InstallOption]
  80.     set Status   = STATUS_FAILED
  81.     set Option   = $($1)
  82.     set SrcDir       = $($2)
  83.     Set AddCopy  = $($3)
  84.     Set DoCopy       = $($4)
  85.     Set DoConfig = $($5)
  86.     set LanguageList = ^(LanguagesSupported, 1)
  87.     Ifcontains(i) $($0) NOT-IN $(LanguageList)
  88.        return STATUS_NOLANGUAGE
  89.     EndIf
  90.     StartWait
  91.     set-subst LF = "\n"
  92.     set-subst CR = "\r"
  93.     read-syms GeneralConstants
  94.     read-syms FileConstants
  95.     read-syms DialogConstants$(!STF_LANGUAGE)
  96.     read-syms FileConstants$(!STF_LANGUAGE)
  97.     detect date
  98.     set-title  $(FunctionTitle)
  99.     set CommonStatus = STATUS_SUCCESSFUL
  100.     EndWait
  101. Begin = +
  102.     Ifstr(i) $(!NTN_InstallMode) == deinstall
  103.       set StartLabel = removeadapter
  104.       Set RemoveonError = FALSE
  105.     else-Ifstr(i) $(!NTN_InstallMode) == Update
  106.       set StartLabel = UpgradeSoftware
  107.     else-Ifstr(i) $(!NTN_InstallMode) == bind
  108.       set StartLabel = bindingadapter
  109.     else-Ifstr(i) $(!NTN_InstallMode) == configure
  110.       set CommonStatus = STATUS_USERCANCEL
  111.       set StartLabel = configureadapter
  112.     else
  113.         set StartLabel = installadapter
  114.         set REMOVE_SOFTWARE = TRUE
  115.         set REMOVE_HARDWARE = {}
  116.         Set RemoveOnError = TRUE
  117.     endif
  118.     goto $(StartLabel)
  119. installadapter = +
  120.     OpenRegKey $(!REG_H_LOCAL) "" $(ProductKeyName) $(MAXIMUM_ALLOWED) KeyProduct
  121.     Ifstr $(KeyProduct) != $(KeyNull)
  122.         GetRegValue $(KeyProduct) $(MajorVersion) VersionInfo
  123.         set VersionMajor = *($(VersionInfo), 4)
  124.         GetRegValue $(KeyProduct) $(MinorVersion) VersionInfo
  125.         set VersionMinor = *($(VersionInfo), 4)
  126.         set InstalledVersion = $(VersionMajor)"."$(VersionMinor)
  127.         ifstr(i) $(ProductVersion) == $(InstalledVersion)
  128.             read-syms MiscErrorString1$(!STF_LANGUAGE)
  129.             Set Text = $(Version)$(ProductVersion)
  130.             Shell $(SubInf), SetupMessage $(!STF_LANGUAGE) "NONFATAL" $(Text)$(ErrorString)
  131.             goto end
  132.         EndIf
  133.     EndIf
  134.    ifstr(i) $(!NTN_InstallMode) == "install"
  135.       Ifstr(i) $(!DoCopy) == "YES"
  136.          ifstr(i) $(!STF_IDW) != "TRUE"
  137.             Shell $(UtilInf), DoAskSource, $(!STF_CWDDIR), $(SrcDir) YES
  138.          endif
  139.          Ifint $($ShellCode) != $(!SHELL_CODE_OK)
  140.             Goto ShellCodeError
  141.          Else-Ifstr(i) $($R0) == STATUS_FAILED
  142.             Shell $(UtilInf) RegistryErrorString "ASK_SOURCE_FAIL"
  143.             ifint $($ShellCode) != $(!SHELL_CODE_OK)
  144.                goto ShellCodeError
  145.             endif
  146.             set Error = $($R0)
  147.             Goto end
  148.          Else-Ifstr(i) $($R0) == STATUS_USERCANCEL
  149.             Goto end
  150.          Endif
  151.          Set SrcDir  = $($R1)
  152.       Endif
  153.    Endif
  154. adapteroptions = +
  155.     Shell $(UtilInf), MCAFindBus, $(LT200MC_1BYTE), $(LT200MC_2BYTE)
  156.     ifstr(i) $($R0) != "NO_ERROR"
  157.        set Error = $($R0)
  158.       goto fatal
  159.     endif
  160.     ifint $($ShellCode) != 0
  161.       goto ShellCodeError
  162.     endif
  163.     ifstr(i) $($R1) == {}
  164.         read-syms MiscErrorString2$(!STF_LANGUAGE)
  165.         Shell $(SubInf) SetupMessage $(!STF_LANGUAGE) "NONFATAL" $(ErrorString)
  166.         goto usercancel
  167.     endif
  168.     set AdapterList = $($R1)
  169. installproduct = +
  170.     ifstr(i) $(!STF_IDW) != "TRUE"
  171.         install "Install-Initial"
  172.         ifstr(i) $(STF_INSTALL_OUTCOME) != STF_SUCCESS
  173.             goto usercancel
  174.         Endif
  175.     EndIf
  176.     Set FLibraryErrCtl = 1
  177.     Shell $(UtilInf), AddSoftwareComponent, $(Manufacturer),+
  178.                   $(ProductSoftwareName), +
  179.                   $(ProductSoftwareName), +
  180.                   $(ProductSoftwareName), +
  181.                   $(ProductInfName),+
  182.                   $(ProductSoftwareImagePath),+
  183.                   "kernel", "NDIS", {}, "", $(ProductEventDll)
  184.     ifint $($ShellCode) != 0
  185.         goto ShellCodeError
  186.     endif
  187.     set RegistryErrorIndex = $($R0)
  188.     set KeyProduct      = $($R1)
  189.     Set SoftNetRulesKey = $($R2)
  190.     CloseRegKey $($R3)
  191.     CloseRegKey $($R4)
  192.     CloseRegKey $($R5)
  193.     Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  194.         CloseRegKey $(KeyProduct)
  195.         CloseRegKey $(SoftNetRulesKey)
  196.         goto fatalregistry
  197.     endif
  198.     set NewValueList = {{SoftwareType,0,$(!REG_VT_SZ),$(SoftwareType)},+
  199.                        {MajorVersion,0,$(!REG_VT_DWORD),$(ProductMajorVersion)},+
  200.                        {MinorVersion,0,$(!REG_VT_DWORD),$(ProductMinorVersion)},+
  201.                        {Title,0,$(!REG_VT_SZ),$(ProductSoftwareTitle)},+
  202.                        {Description,0,$(!REG_VT_SZ),$(ProductSoftwareDescription)},+
  203.                        {PathName,0,$(!REG_VT_SZ),$(!STF_WINDOWSSYSPATH)},+
  204.                        {ServiceName,0,$(!REG_VT_SZ),$(ProductSoftwareName)},+
  205.                        {InstallDate,0,$(!REG_VT_DWORD),*($(Now),1)}}
  206.     Shell   $(UtilInf), AddValueList, $(KeyProduct), $(NewValueList)
  207.     ifint $($ShellCode) != 0
  208.         goto ShellCodeError
  209.     endif
  210.     set RegistryErrorIndex = $($R0)
  211.     Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  212.         CloseRegKey $(KeyProduct)
  213.         CloseRegKey $(SoftNetRulesKey)
  214.         goto fatalregistry
  215.     endif
  216.     set NewValueList = {{type,0,$(!REG_VT_SZ),$(NetRuleSoftwareType)},+
  217.                        {use,0,$(!REG_VT_SZ),$(NetRuleSoftwareUse)}, +
  218.                        {bindform,0,$(!REG_VT_SZ),$(NetRuleSoftwareBindForm)}, +
  219.                        {class,0,$(!REG_VT_MULTI_SZ),$(NetRuleSoftwareClass)}, +
  220.                        {bindable,0,$(!REG_VT_MULTI_SZ),$(NetRuleSoftwareBindable)}, +
  221.                        {InfOption,0,$(!REG_VT_SZ),$(Option)}, +
  222.                        {Infname ,0,$(!REG_VT_SZ),$(ProductInfName)} }
  223.     Shell  $(UtilInf), AddValueList, $(SoftNetRulesKey), $(NewValueList)
  224.     ifint $($ShellCode) != 0
  225.         goto ShellCodeError
  226.     endif
  227.     set RegistryErrorIndex = $($R0)
  228.     CloseRegKey $(KeyProduct)
  229.     CloseRegKey $(SoftNetRulesKey)
  230.     Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  231.         goto fatalregistry
  232.     endif
  233.     ForListDo $(AdapterList)
  234.         set BusNum = *($($),1)
  235.         set SlotNum = *($($),2)
  236.         Debug-Output "Bus Number = "$(BusNum)
  237.         Debug-Output "Slot Number = "$(SlotNum)
  238.         Shell $(UtilInf), IsNetCardAlreadyInstalled, $(BusNum), +
  239.                       $(SlotNum), +
  240.                       $(ProductHardwareDescription), +
  241.                       $(ProductHardwareName)
  242.         ifint $($ShellCode) != 0
  243.                 goto ShellCodeError
  244.         endif
  245.         Ifstr $($R0) != NO_ERROR
  246.                set Error = $($R0)
  247.                     goto fatal
  248.         Endif
  249.         ifstr(i) $($R1) != "YES"
  250.             Shell $(UtilInf), AddHardwareComponent, $(ProductHardwareName),+
  251.                               $(ProductInfName),$(ProductKeyName)
  252.             ifint $($R4) != -1
  253.                 Set REMOVE_HARDWARE = >($(REMOVE_HARDWARE),$(CardKey)"\"$($R4))
  254.             endif
  255.             ifint $($ShellCode) != 0
  256.                 goto ShellCodeError
  257.             endif
  258.             set RegistryErrorIndex = $($R0)
  259.             Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  260.                CloseRegKey $($R1)
  261.                CloseRegKey $($R2)
  262.                CloseRegKey $($R3)
  263.                goto fatalregistry
  264.             Endif
  265.             set KeyParameters = $($R3)
  266.             set KeyAdapterRules = $($R2)
  267.             set AdapterNumber = $($R4)
  268.             set NewValueList = {{Manufacturer,0,$(!REG_VT_SZ),$(Manufacturer)},+
  269.                                {Title,0,$(!REG_VT_SZ),"["$($R4)"] "$(ProductHardwareTitle)},+
  270.                                {Description,0,$(!REG_VT_SZ),$(ProductHardwareDescription)},+
  271.                                {ProductName,0,$(!REG_VT_SZ),$(ProductHardwareName)},+
  272.                                {ServiceName,0,$(!REG_VT_SZ),$($R5)},+
  273.                                {InstallDate,0,$(!REG_VT_DWORD),*($(Now),1)}}
  274.             Shell  $(UtilInf), AddValueList, $($R1), $(NewValueList)
  275.             ifint $($ShellCode) != 0
  276.                 goto ShellCodeError
  277.             endif
  278.             CloseRegKey $($R1)
  279.             set TempProdName = """"$(ProductHardwareName)$(AdapterNumber)""""
  280.             set TempBindForm = $(TempProdName)$(NetRuleHardwareBindForm)
  281.             set NewValueList = {{type,0,$(!REG_VT_SZ),$(NetRuleHardwareType)},+
  282.                                 {bindform,0,$(!REG_VT_SZ),$(TempBindForm)}, +
  283.                                 {class,0,$(!REG_VT_MULTI_SZ),$(NetRuleHardwareClass)}, +
  284.                                 {InfOption,0,$(!REG_VT_SZ),$(Option)}, +
  285.                                 {Infname ,0,$(!REG_VT_SZ),$(ProductInfName)}}
  286.             Shell  $(UtilInf), AddValueList, $(KeyAdapterRules), $(NewValueList)
  287.             ifint $($ShellCode) != 0
  288.                 goto ShellCodeError
  289.             endif
  290.             set RegistryErrorIndex = $($R0)
  291.             Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  292.                     CloseRegKey $(KeyParameters)
  293.                     CloseRegKey $(KeyAdapterRules)
  294.                     goto fatalregistry
  295.             endif
  296.             CloseRegKey $(KeyAdapterRules)
  297.     EndForListDo
  298.     goto writeparameters
  299. configureadapter = +
  300.    read-syms NoConfig$(!STF_LANGUAGE)
  301.    Shell $(SubInf) SetupMessage $(!STF_LANGUAGE) "NONFATAL" $(ErrorString)
  302.    goto end
  303. writeparameters = +
  304.     Shell "utility.inf" GetBusTypeNum
  305.     Set BusType = $($R1)
  306.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  307.         goto ShellCodeError
  308.     endif
  309.     set NewValueList = {{BusNumber,0,$(!REG_VT_DWORD),$(BusNum)},+
  310.                         {MediaType,0,$(!REG_VT_DWORD),5},+
  311.                         {McaPosId,0,$(!REG_VT_DWORD),$(NETCARD_ID)},+
  312.                         {BusType,0,$(!REG_VT_DWORD),$(BusType)},+
  313.                         {Server,0,$(!REG_VT_DWORD),1},+
  314.                         {SlotNumber,0,$(!REG_VT_DWORD),$(SlotNum)}}
  315.     Shell  $(UtilInf), AddValueList, $(KeyParameters), $(NewValueList)
  316.     CloseRegKey $(KeyParameters)
  317.     ifint $($ShellCode) != 0
  318.         Debug-Output "ShellCode error."
  319.         goto ShellCodeError
  320.     endif
  321.     set RegistryErrorIndex = $($R0)
  322.     Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  323.        goto fatalregistry
  324.     endif
  325.     goto end
  326. bindingadapter = +
  327.         goto end
  328. removeadapter = +
  329.     Set FLibraryErrCtl = 1
  330.     Ifstr(i) $(ProductKeyName) == $(!NTN_RegBase)
  331.                 Shell $(UtilInf), RemoveSoftwareComponent, $(Manufacturer),$(ProductSoftwareName)
  332.                 ifint $($ShellCode) != 0
  333.             Debug-Output "ShellCode error"
  334.             goto ShellCodeError
  335.                 endif
  336.                 set RegistryErrorIndex = $($R0)
  337.                 Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  338.             goto fatalregistry
  339.                 endif
  340.     else
  341.                 Shell $(UtilInf), RemoveHardwareComponent, $(Manufacturer),$(ProductSoftwareName), $(!NTN_RegBase)
  342.                 ifint $($ShellCode) != 0
  343.             Debug-Output "ShellCode error"
  344.             goto ShellCodeError
  345.                 endif
  346.                 set RegistryErrorIndex = $($R0)
  347.                 Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  348.             goto fatalregistry
  349.                 endif
  350.         endif
  351.         goto end
  352. UpgradeSoftware = +
  353.     ifstr(i) $(ProductKeyName) == $(!NTN_RegBase)
  354.         OpenRegKey $(!REG_H_LOCAL) "" $(ProductKeyName) $(MAXIMUM_ALLOWED) KeyProduct
  355.         Ifstr $(KeyProduct) != $(KeyNull)
  356.                         GetRegValue $(KeyProduct),"MajorVersion", VersionInfo
  357.                         set Version = *($(VersionInfo), 4)
  358.                         Split-String $(!NTN_Infname), "\", FilenameList
  359.                         QueryListSize ListSize $(FilenameList)
  360.                         set !UG_Filename = *($(FilenameList), $(ListSize))
  361.             install "Install-Update"
  362.             ifstr(i) $(STF_INSTALL_OUTCOME) != STF_SUCCESS
  363.                 goto fatal
  364.             endif
  365.                         SetRegValue $(KeyProduct) {MajorVersion,0,$(!REG_VT_SZ),$(ProductMajorVersion)}
  366.                         SetRegValue $(KeyProduct) {MinorVersion,0,$(!REG_VT_SZ),$(ProductMinorVersion)}
  367.     else
  368.                 OpenRegKey $(!REG_H_LOCAL) "" $(!NTN_RegBase) $(MAXIMUM_ALLOWED) NetworkCardKey
  369.         Ifstr(i) $(NetworkCardKey) != $(KeyNull)
  370.                         GetRegValue $(NetworkCardKey),"ServiceName", ServiceNameInfo
  371.                         set ServiceName = *($(ServiceNameInfo), 4)
  372.                         OpenRegKey $(NetworkCardKey) "" "NetRules" $(MAXIMUM_ALLOWED) NetRuleKey
  373.                         Ifstr(i) $(NetRuleKey) != $(KeyNull)
  374.                         else
  375.                                 goto fatalregistry
  376.                         endif
  377.                         CloseRegKey $(NetRules)
  378.                         CloseRegKey $(NetworkCardKey)
  379.         else
  380.                         goto fatalregistry
  381.         endif
  382.                 OpenRegKey $(!REG_H_LOCAL) "" $(!NTN_ServiceBase)"\"$(ServiceName) $(MAXIMUM_ALLOWED) ServiceKey
  383.         Ifstr(i) $(ServiceKey) != $(KeyNull)
  384.                         CloseRegKey $(ServiceKey)
  385.         else
  386.                         goto fatalregistry
  387.         endif
  388.         goto end
  389. successful = +
  390. installstep1 = +
  391.         goto end
  392. abandon = +
  393.    ForListDo $(REMOVE_HARDWARE)
  394.       Shell $(UtilInf), RemoveHardwareComponent, $(Manufacturer), +
  395.                         $(ProductSoftwareName), $($)
  396.       ifint $($ShellCode) != 0
  397.          Debug-Output "ShellCode error"
  398.          goto ShellCodeError
  399.       endif
  400.       set RegistryErrorIndex = $($R0)
  401.       Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  402.          goto fatalregistry
  403.       endif
  404.    EndForListDo
  405.    Ifstr(i) $(REMOVE_SOFTWARE) == TRUE
  406.       Shell $(UtilInf), RemoveSoftwareComponent, +
  407.                            $(Manufacturer), +
  408.                            $(ProductSoftwareName), FALSE
  409.       ifint $($ShellCode) != 0
  410.          goto ShellCodeError
  411.       endif
  412.       set RegistryErrorIndex = $($R0)
  413.       Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  414.          goto fatalregistry
  415.       endif
  416.    endif
  417.    goto end
  418. fatalregistry = +
  419.     Shell $(UtilInf) RegistryErrorString $(RegistryErrorIndex)
  420.     ifint $($ShellCode) != 0
  421.        goto ShellCodeError
  422.     endif
  423.     set Error = $($R0)
  424.     goto fatal
  425. fatal = +
  426.    ifstr(i) $(!NTN_InstallMode) == install
  427.       read-syms MiscErrorString3$(!STF_LANGUAGE)
  428.       Shell $(SubInf) SetupMessage, $(!STF_LANGUAGE), "FATAL", $(ErrorString)$(Error)
  429.    Else
  430.       Shell $(SubInf) SetupMessage, $(!STF_LANGUAGE), "FATAL", $(Error)
  431.    EndIf
  432.    ifint $($ShellCode) != 0
  433.       goto ShellCodeError
  434.    endif
  435.    goto setfailed
  436. ShellCodeError = +
  437.    read-syms ShellingError$(!STF_LANGUAGE)
  438.    Shell $(SubInf) SetupMessage $(!STF_LANGUAGE) "FATAL" $(ErrorString)
  439. setfailed = +
  440.    set CommonStatus = STATUS_FAILED
  441.    ifstr(i) $(RemoveOnError) == TRUE
  442.         Set RemoveOnError = FALSE
  443.       goto abandon
  444.    Endif
  445.    goto end
  446. usercancel = +
  447.    set CommonStatus = STATUS_USERCANCEL
  448. end = +
  449.    Return $(CommonStatus)
  450. [Install-Initial]
  451.    Set STF_VITAL = ""
  452.    AddSectionFilesToCopyList Files-LT200 $(SrcDir) $(!STF_WINDOWSSYSPATH)"\DRIVERS"
  453.    CopyFilesInCopyList
  454.    exit
  455. [Install-Update]
  456.    Set STF_VITAL = ""
  457.    AddSectionFilesToCopyList Files-LT200 $(SrcDir) $(!STF_WINDOWSSYSPATH)"\DRIVERS"
  458.    AddSectionFilesToCopyList Files-Inf $(SrcDir) $(!STF_WINDOWSSYSPATH)"\DRIVERS"
  459.    CopyFilesInCopyList
  460.    exit
  461. [Source Media Descriptions]
  462.     1    = "Windows NT Advanced Server Setup Disk #1"   , TAGFILE = disk1
  463.     2    = "Windows NT Advanced Server Setup Disk #2"   , TAGFILE = disk2
  464.     3    = "Windows NT Advanced Server Setup Disk #3"   , TAGFILE = disk3
  465.     4    = "Windows NT Advanced Server Setup Disk #4"   , TAGFILE = disk4
  466.     5    = "Windows NT Advanced Server Setup Disk #5"   , TAGFILE = disk5
  467.     6    = "Windows NT Advanced Server Setup Disk #6"   , TAGFILE = disk6
  468.     7    = "Windows NT Advanced Server Setup Disk #7"   , TAGFILE = disk7
  469.     8    = "Windows NT Advanced Server Setup Disk #8"   , TAGFILE = disk8
  470.     9    = "Windows NT Advanced Server Setup Disk #9"   , TAGFILE = disk9
  471.     10    = "Windows NT Advanced Server Setup Disk #10"  , TAGFILE = disk10
  472.     11    = "Windows NT Advanced Server Setup Disk #11"  , TAGFILE = disk11
  473.     12    = "Windows NT Advanced Server Setup Disk #12"  , TAGFILE = disk12
  474.     13    = "Windows NT Advanced Server Setup Disk #13"  , TAGFILE = disk13
  475.     14    = "Windows NT Advanced Server Setup Disk #14"  , TAGFILE = disk14
  476.     15    = "Windows NT Advanced Server Setup Disk #15"  , TAGFILE = disk15
  477.     16    = "Windows NT Advanced Server Setup Disk #16"  , TAGFILE = disk16
  478.     17    = "Windows NT Advanced Server Setup Disk #17"  , TAGFILE = disk17
  479.     18    = "Windows NT Advanced Server Setup Disk #18"  , TAGFILE = disk18
  480.     19    = "Windows NT Advanced Server Setup Disk #19"  , TAGFILE = disk19
  481.     20    = "Windows NT Advanced Server Setup Disk #20"  , TAGFILE = disk20
  482.     21    = "Windows NT Advanced Server Setup Disk #21"  , TAGFILE = disk21
  483.     22    = "Windows NT Advanced Server Setup Disk #22"  , TAGFILE = disk22
  484.     23    = "Windows NT Advanced Server Setup Disk #23"  , TAGFILE = disk23
  485.     24    = "Windows NT Advanced Server Setup Disk #24"  , TAGFILE = disk24
  486.     25    = "Windows NT Advanced Server Setup Disk #25"  , TAGFILE = disk25
  487.     26    = "Windows NT Advanced Server Setup Disk #26"  , TAGFILE = disk26
  488.     27    = "Windows NT Advanced Server Setup Disk #27"  , TAGFILE = disk27
  489.     28    = "Windows NT Advanced Server Setup Disk #28"  , TAGFILE = disk28
  490.     29    = "Windows NT Advanced Server Setup Disk #29"  , TAGFILE = disk29
  491. [ProductType]
  492. STF_PRODUCT  = LanmanNT
  493. STF_PLATFORM = I386
  494. [Files-Inf]
  495. 2,    oemsetup.inf,     SIZE=1000,    RENAME=$(!UG_Filename)
  496. [Files-LT200]
  497. 11,LT200.SYS , SIZE=23552
  498. [LanguagesSupported]
  499. ENG
  500. [OptionsTextENG]
  501. LT200MC   = "DayStar Digital LocalTalk Adapter (MCA)"
  502. [FileConstantsENG]
  503. ProCaption        = "LocalTalk Adapter Setup"
  504. ProCancel         = "Cancel"
  505. ProCancelMsg    = "LocalTalk Adapter is not correctly installed. "+
  506.                   "Are you sure you want to cancel copying files ?"
  507. ProCancelCap    = "Network Setup Message"
  508. ProText1        = "Copying:"
  509. ProText2        = "To:"
  510. Error           = "User has canceled copying files. Copied files will be removed."
  511. FunctionTitle                   = "DayStar Digital LocalTalk Adapter Card Setup"
  512. ProductSoftwareDescription      = "DayStar Digital LocalTalk Adapter Driver"
  513. ProductHardwareDescription      = "DayStar Digital LocalTalk Adapter"
  514. AskLocationText = "Please enter the full path of the LocalTalk Adapter "+
  515.                   "distribution files.  If you want to install files from "+
  516.                   "the original Setup floppy disks, type a drive letter "+
  517.                   "(such as A:) and Setup will prompt you for the correct "+
  518.                   "disk.  Then choose continue."
  519. MajorVersion     = "MajorVersion"
  520. MinorVersion     = "MinorVersion"
  521. Version            = "Version "
  522. ProductSoftwareTitle    =  "Daystar Digital LocalTalk Adapter Driver"
  523. ProductHardwareTitle    =  "DayStar Digital LocalTalk Adapter"
  524. [DialogConstantsENG]
  525. Help        = "&Help"
  526. Exit        = "Cancel"
  527. OK          = "OK"
  528. HelpContext = ""
  529. Continue    = "Continue"
  530. Cancel      = "Cancel"
  531. [MiscErrorString1ENG]
  532. ErrorString = +
  533. " of the LocalTalk adapter driver is already installed in your system. "+
  534. "Use [Update] to update to newer versions."
  535. [MiscErrorString2ENG]
  536. ErrorString = +
  537. "A LocalTalk adapter could not be found in your system. Please "+
  538. "check your system configuration."
  539. [MiscErrorString3ENG]
  540. ErrorString = +
  541. "Setup encountered the following error during installation. Try installing the "+
  542. "LocalTalk Adapter after rebooting your system. "$(LF)
  543. [NoConfigENG]
  544. ErrorString = +
  545. "This adapter does not have any configurable parameters."
  546. [StatusRemove1ENG]
  547. Status = "Removing LocalTalk Adapter files..."
  548. [ShellingErrorENG]
  549. ErrorString  = +
  550. "An internal error occurred. Contact Technical Support."
  551.  
  552.  
  553.  
  554.