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

  1. [Identification]
  2.     OptionType = NetTransport
  3. [Options]
  4.     SNMP
  5. [FileConstants]
  6. UtilityInf      = "UTILITY.INF"
  7. subroutineinf   = "SUBROUTN.INF"
  8. SoftwareType    = "transport"
  9. Exit_Code       = 0
  10. NetEventDLL     = "%SystemRoot%\System32\netevent.dll"
  11. IoLogMsgDLL     = "%SystemRoot%\System32\IoLogMsg.dll"
  12. SNMPEXE         = "%SystemRoot%\System32\snmp.exe"
  13. Manufacturer    = "Microsoft"
  14. ProductMajorVersion     = "3"
  15. ProductMinorVersion     = "1"
  16. ProductVersion  = $(ProductMajorVersion)"."$(ProductMinorVersion)
  17. ProductSoftwareName     = "SNMP"
  18. ProductSoftwareImagePath = $(SNMPEXE)
  19. ProductKeyName  = $(!NTN_SoftwareBase)"\"$(Manufacturer)"\"$(ProductSoftwareName)"\CurrentVersion"
  20. SystemService   = $(!NTN_ServiceBase)
  21. LinkageKeyName  = $(!NTN_ServiceBase)"\SNMP\Linkage"
  22. ServiceSNMPKeyName = $(!NTN_ServiceBase)"\SNMP"
  23. ServiceKeyName  = $(!NTN_ServiceBase)
  24. TCPIPKeyName    = $(!NTN_ServiceBase)"\TCPIP"
  25. SNMPProxyName   = "SNMPProxy"
  26. [GeneralConstants]
  27. from      = ""
  28. to        = ""
  29. ExitCodeOk     = 0
  30. ExitCodeCancel = 1
  31. ExitCodeFatal  = 2
  32. KeyNull         = ""
  33. MAXIMUM_ALLOWED   = 33554432
  34. RegistryErrorIndex = NO_ERROR
  35. KeyProduct      = ""
  36. KeyParameters   = ""
  37. TRUE            = 1
  38. FALSE           = 0
  39. NoTitle            = 0
  40. ExitState   = "Active"
  41. OldVersionExisted = $(FALSE)
  42. DriverPath      = $(!STF_NTPATH)\drivers
  43. [date]
  44.     Now = {} ? $(!LIBHANDLE) GetSystemDate
  45. [Identify]
  46.     read-syms Identification
  47.     set Status     = STATUS_SUCCESSFUL
  48.     set Identifier = $(OptionType)
  49.     set Media      = #("Source Media Descriptions", 1, 1)
  50.     Return $(Status) $(Identifier) $(Media)
  51. [ReturnOptions]
  52.     set Status        = STATUS_FAILED
  53.     set OptionList     = {}
  54.     set OptionTextList = {}
  55.     set LanguageList = ^(LanguagesSupported, 1)
  56.     Ifcontains(i) $($0) in $(LanguageList)
  57.         goto returnoptions
  58.     else
  59.         set Status = STATUS_NOLANGUAGE
  60.         goto finish_ReturnOptions
  61.     endif
  62. returnoptions = +
  63.     set OptionList     = ^(Options, 1)
  64.     set OptionTextList = ^(OptionsText$($0), 1)
  65.     set Status         = STATUS_SUCCESSFUL
  66. finish_ReturnOptions = +
  67.     Return $(Status) $(OptionList) $(OptionTextList)
  68. [InstallOption]
  69.     set Option   = $($1)
  70.     set SrcDir   = $($2)
  71.     set AddCopy  = $($3)
  72.     set DoCopy   = $($4)
  73.     set DoConfig = $($5)
  74.     set LanguageList = ^(LanguagesSupported, 1)
  75.     Ifcontains(i) $($0) NOT-IN $(LanguageList)
  76.         Return STATUS_NOLANGUAGE
  77.     endif
  78.     Debug-Output "OEMNXPSN.INF: STF_CWDIR is: "$(!STF_CWDIR)
  79.     Debug-Output "OEMNXPSN.INF: STF_LANGUAGE is: "$(!STF_LANGUAGE)
  80.     set-subst LF = "\n"
  81.     read-syms GeneralConstants
  82.     read-syms FileConstants
  83.     read-syms DialogConstants$(!STF_LANGUAGE)
  84.     ifstr(i) $(!NTN_Origination) == "NCPA"
  85.         set Continue = $(OK)
  86.     endif
  87.     read-syms FileConstants$(!STF_LANGUAGE)
  88.     detect date
  89.     set-title  $(FunctionTitle)
  90.     set to   = Begin
  91.     set from = Begin
  92.     set CommonStatus = STATUS_SUCCESSFUL
  93.     EndWait
  94. Begin = +
  95.     Ifstr(i) $(!NTN_InstallMode) == deinstall
  96.         set StartLabel = removeadapter
  97.     else-Ifstr(i) $(!NTN_InstallMode) == Update
  98.         set StartLabel = UpgradeSoftware
  99.     else-Ifstr(i) $(!NTN_InstallMode) == bind
  100.         set StartLabel = bindingadapter
  101.     else-Ifstr(i) $(!NTN_InstallMode) == configure
  102.         set StartLabel = configureadapter
  103.     else
  104.         set StartLabel = installadapter
  105.     endif
  106.     set from = $(fatal)
  107.     set to = $(fatal)
  108.     goto $(StartLabel)
  109. installadapter = +
  110.     OpenRegKey $(!REG_H_LOCAL) "" $(TCPIPKeyName) $(MAXIMUM_ALLOWED) TCPIPKey
  111.     Ifstr $(TCPIPKey) == $(KeyNull)
  112.         set RegistryErrorIndex = TCPIP_NONEXIST_ERROR
  113.         goto fatalregistry
  114.     endif
  115.     CloseRegKey $(TCPIPKey)
  116.     OpenRegKey $(!REG_H_LOCAL) "" $(ProductKeyName) $(MAXIMUM_ALLOWED) KeyProduct
  117.     Ifstr $(KeyProduct) != $(KeyNull)
  118.         CloseRegKey $(KeyProduct)
  119.         Shell $(UtilityInf), VerExistedDlg, $(ProductSoftwareTitle),+
  120.             $(ProductVersion)
  121.         ifint $($ShellCode) != $(!SHELL_CODE_OK)
  122.             Debug-Output "ShellCode error: cannot get an error string."
  123.             goto ShellCodeError
  124.         endif
  125.         goto end
  126.     endif
  127.     StartWait
  128.     ifstr(i) $(OldVersionExisted) == $(FALSE)
  129.         Ifstr(i) $(DoCopy) == "YES"
  130.            Shell $(UtilityInf), DoAskSource, $(!STF_CWDDIR), $(SrcDir) YES
  131.            Ifint $($ShellCode) != $(!SHELL_CODE_OK)
  132.                Goto ShellCodeError
  133.            Else-Ifstr(i) $($R0) == STATUS_FAILED
  134.                Shell $(UtilityInf) RegistryErrorString "ASK_SOURCE_FAIL"
  135.                ifint $($ShellCode) != $(!SHELL_CODE_OK)
  136.                    goto ShellCodeError
  137.                endif
  138.                set Error = $($R0)
  139.                Goto fatal
  140.            Else-Ifstr(i) $($R0) == STATUS_USERCANCEL
  141.                Goto successful
  142.            Endif
  143.            Set SrcDir = $($R1)
  144.         Endif
  145.         install "Install-Option"
  146.         ifstr(i) $(STF_INSTALL_OUTCOME) != STF_SUCCESS
  147.            Shell $(UtilityInf) RegistryErrorString "UNABLE_COPY_FILE"
  148.            ifint $($ShellCode) != $(!SHELL_CODE_OK)
  149.                goto ShellCodeError
  150.            endif
  151.            set Error = $($R0)
  152.            goto fatal
  153.         endif
  154.         set OEM_ABANDON_ON = TRUE
  155.         Shell $(UtilityInf), AddSoftwareComponent, $(Manufacturer), +
  156.             $(ProductSoftwareName), $(ProductSoftwareName),+
  157.             $(ProductSoftwareDisplayName), +
  158.             $(STF_CONTEXTINFNAME), $(ProductSoftwareImagePath), "serviceauto", "",+
  159.             {"Tcpip", "EventLog"}, "", $(SNMPEXE)
  160.         Set SoftwareProductKey = $($R1)
  161.         Set SoftwareNetRuleKey = $($R2)
  162.         Set SoftwareServiceKey = $($R3)
  163.         Set SoftwareParameterKey = $($R4)
  164.         Set SoftLinkageKey      = $($R5)
  165.         ifint $($ShellCode) != $(!SHELL_CODE_OK)
  166.            Debug-Output "ShellCode error"
  167.            goto ShellCodeError
  168.         endif
  169.         set RegistryErrorIndex = $($R0)
  170.         Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  171.            EndWait
  172.            Debug-Output "Registry error: add software components"
  173.            CloseRegKey $(SoftwareProductKey)
  174.            CloseRegKey $(SoftwareNetRuleKey)
  175.            CloseRegKey $(SoftwareServiceKey)
  176.            CloseRegKey $(SoftwareParameterKey)
  177.            CloseRegKey $(SoftLinkageKey)
  178.            CloseRegKey $(KeyParameters)
  179.            goto fatalregistry
  180.         endif
  181.         set NewValueList = {{SoftwareType,$(NoTitle),$(!REG_VT_SZ),$(SoftwareType)},+
  182.                            {MajorVersion,$(NoTitle),$(!REG_VT_DWORD),$(ProductMajorVersion)},+
  183.                            {MinorVersion,$(NoTitle),$(!REG_VT_DWORD),$(ProductMinorVersion)},+
  184.                            {Title,$(NoTitle),$(!REG_VT_SZ),$(ProductSoftwareTitle)},+
  185.                            {Description,$(NoTitle),$(!REG_VT_SZ),$(ProductSoftwareDescription)},+
  186.                            {ServiceName,$(NoTitle),$(!REG_VT_SZ),$(ProductSoftwareName)},+
  187.                            {InstallDate,$(NoTitle),$(!REG_VT_DWORD),*($(Now),1)}}
  188.         Shell $(UtilityInf), AddValueList, $(SoftwareProductKey), $(NewValueList)
  189.         ifint $($ShellCode) != $(!SHELL_CODE_OK)
  190.             Debug-Output "ShellCode error."
  191.             goto ShellCodeError
  192.         endif
  193.         set RegistryErrorIndex = $($R0)
  194.         Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  195.             EndWait
  196.             Debug-Output "Resgitry error: add value list."
  197.             CloseRegKey $(SoftwareProductKey)
  198.             CloseRegKey $(SoftwareNetRuleKey)
  199.             CloseRegKey $(SoftwareServiceKey)
  200.             CloseRegKey $(SoftLinkageKey)
  201.             CloseRegKey $(SoftwareParameterKey)
  202.             goto fatalregistry
  203.         endif
  204.         set NewValueList = {{InfOption,$(NoTitle),$(!REG_VT_SZ),$(Option)}}
  205.         Shell  $(UtilityInf), AddValueList, $(SoftwareNetRuleKey), $(NewValueList)
  206.         ifint $($ShellCode) != $(!SHELL_CODE_OK)
  207.             Debug-Output "ShellCode error."
  208.             goto ShellCodeError
  209.         endif
  210.         set RegistryErrorIndex = $($R0)
  211.         Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  212.             EndWait
  213.             Debug-Output "Resgitry error: add value list."
  214.             CloseRegKey $(SoftwareProductKey)
  215.             CloseRegKey $(SoftwareNetRuleKey)
  216.             CloseRegKey $(SoftwareServiceKey)
  217.             CloseRegKey $(SoftwareParameterKey)
  218.             CloseRegKey $(SoftLinkageKey)
  219.             goto fatalregistry
  220.         endif
  221.         CreateRegKey $(SoftwareParameterKey) {"EnableAuthenticationTraps",$(NoTitle),GenericClass} "" $(MAXIMUM_ALLOWED) "" KeyTypesSubkey
  222.         Shell $(UtilityInf) AddValueList, $(KeyTypesSubkey), +
  223.             {{"switch", $(NoTitle), $(!REG_VT_DWORD), "1"}}
  224.         CloseRegKey $(KeyTypesSubkey)
  225.         CreateRegKey $(SoftwareParameterKey) {"TrapConfiguration",$(NoTitle),GenericClass} "" $(MAXIMUM_ALLOWED) "" KeyTypesSubkey
  226.         CloseRegKey $(KeyTypesSubkey)
  227.         CreateRegKey $(SoftwareParameterKey) {"PermittedManagers",$(NoTitle),GenericClass} "" $(MAXIMUM_ALLOWED) "" KeyTypesSubkey
  228.         CloseRegKey $(KeyTypesSubkey)
  229.         CreateRegKey $(SoftwareParameterKey) {"ValidCommunities",$(NoTitle),GenericClass} "" $(MAXIMUM_ALLOWED) "" KeyTypesSubkey
  230.         Shell $(UtilityInf) AddValueList, $(KeyTypesSubkey), +
  231.             {{"1", $(NoTitle), $(!REG_VT_SZ), "public"}}
  232.         CloseRegKey $(KeyTypesSubkey)
  233.         CreateRegKey $(SoftwareParameterKey) {"ExtensionAgents",$(NoTitle),GenericClass} "" $(MAXIMUM_ALLOWED) "" KeyTypesSubkey
  234.         Shell $(UtilityInf) AddValueList, $(KeyTypesSubkey), +
  235.             {{"1", $(NoTitle), $(!REG_VT_SZ), "SOFTWARE\Microsoft\LANManagerMIB2Agent\CurrentVersion"}, +
  236.              {"2", $(NoTitle), $(!REG_VT_SZ), "SOFTWARE\Microsoft\RFC1156Agent\CurrentVersion"} +
  237.              }
  238.         CloseRegKey $(KeyTypesSubkey)
  239.         CloseRegKey $(SoftwareProductKey)
  240.         CloseRegKey $(SoftwareNetRuleKey)
  241.         CloseRegKey $(SoftwareServiceKey)
  242.         CloseRegKey $(SoftwareParameterKey)
  243.         CloseRegKey $(SoftLinkageKey)
  244.         OpenRegKey $(!REG_H_LOCAL) "" "SOFTWARE\Microsoft" $(MAXIMUM_ALLOWED) MicrosoftKey
  245.         CreateRegKey $(MicrosoftKey) {"RFC1156Agent",$(NoTitle),GenericClass} "" $(MAXIMUM_ALLOWED) "" KeyTypes
  246.         CreateRegKey $(KeyTypes) {"CurrentVersion",$(NoTitle),GenericClass} "" $(MAXIMUM_ALLOWED) "" KeyTypesSubkey
  247.         Shell $(UtilityInf) AddValueList, $(KeyTypesSubkey), +
  248.             {{"Pathname", $(NoTitle), $(!REG_VT_EXPAND_SZ), "%SystemRoot%\System32\inetmib1.dll"}}
  249.         CloseRegKey $(KeyTypesSubkey)
  250.         CloseRegKey $(KeyTypes)
  251.         CreateRegKey $(MicrosoftKey) {"LANManagerMIB2Agent",$(NoTitle),GenericClass} "" $(MAXIMUM_ALLOWED) "" KeyTypes
  252.         CreateRegKey $(KeyTypes) {"CurrentVersion",$(NoTitle),GenericClass} "" $(MAXIMUM_ALLOWED) "" KeyTypesSubkey
  253.         Shell $(UtilityInf) AddValueList, $(KeyTypesSubkey), +
  254.             {{"Pathname", $(NoTitle), $(!REG_VT_EXPAND_SZ), "%SystemRoot%\System32\lmmib2.dll"}}
  255.         CloseRegKey $(KeyTypesSubkey)
  256.         CloseRegKey $(KeyTypes)
  257.     endif
  258.     EndWait
  259.     set FLibraryErrCtl = 1
  260.     LibraryProcedure Result, $(!NCPA_HANDLE), CPlSnmp, $(!STF_HWND)
  261.     ifint $(Result) == 0
  262.         set CommonStatus = STATUS_REBOOT
  263.     else-ifint $(Result) == 1
  264.         set CommonStatus = STATUS_REBOOT
  265.     else
  266.         set RegistryErrorIndex = $(Result)
  267.         goto fatalregistry
  268.     endif
  269.     goto successful
  270. configureadapter = +
  271.     set FLibraryErrCtl = 1
  272.     LibraryProcedure Result, $(!NCPA_HANDLE), CPlSnmp, $(!STF_HWND)
  273.     ifint $(Result) == 0
  274.         set CommonStatus = STATUS_NO_EFFECT
  275.     else-ifint $(Result) == 1
  276.         set CommonStatus = STATUS_NO_EFFECT
  277.     else
  278.         set RegistryErrorIndex = $(Result)
  279.         goto fatalregistry
  280.     endif
  281.     goto successful
  282. bindingadapter =+
  283.     set Error = "Binding: Sorry, not yet implemented."
  284.     goto fatal
  285. removeadapter = +
  286.     Shell $(UtilityInf), RemoveSoftwareComponent, $(Manufacturer), +
  287.         $(ProductSoftwareName)
  288.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  289.         Debug-Output "ShellCode error"
  290.         goto ShellCodeError
  291.     endif
  292.     set RegistryErrorIndex = $($R0)
  293.     Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
  294.         goto fatalregistry
  295.     endif
  296.     OpenRegKey $(!REG_H_LOCAL) "" "SOFTWARE\Microsoft" $(MAXIMUM_ALLOWED) MicrosoftKey
  297.     DeleteRegTree $(MicrosoftKey) "RFC1156Agent"
  298.     DeleteRegTree $(MicrosoftKey) "LANManagerMIB2Agent"
  299.     DeleteRegTree $(MicrosoftKey) "LANManagerAlerts2Agent"
  300.     CloseRegKey $(MicrosoftKey)
  301.     goto end
  302. UpgradeSoftware = +
  303.     ifstr(i) $(ProductKeyName) == $(!NTN_RegBase)
  304.         OpenRegKey $(!REG_H_LOCAL) "" $(ProductKeyName) $(MAXIMUM_ALLOWED) KeyProduct
  305.         Ifstr $(KeyProduct) != $(KeyNull)
  306.             GetRegValue $(KeyProduct),"MajorVersion", VersionInfo
  307.             set Version = *($(VersionInfo), 4)
  308.             Shell $(UtilityInf), GetInfFileNameFromRegistry, $(KeyProduct)
  309.             ifint $($ShellCode) != $(!SHELL_CODE_OK)
  310.                 Debug-Output "ShellCode error"
  311.                 goto ShellCodeError
  312.             endif
  313.             set !UG_Filename = $($R0)
  314.             ifstr(i) $(!UG_Filename) != ""
  315.                 install "Install-Update"
  316.                 ifstr(i) $(STF_INSTALL_OUTCOME) != STF_SUCCESS
  317.                     goto fatal
  318.                 endif
  319.             endif
  320.             SetRegValue $(KeyProduct) {MajorVersion,$(NoTitle),$(!REG_VT_SZ),$(ProductMajorVersion)}
  321.             SetRegValue $(KeyProduct) {MinorVersion,$(NoTitle),$(!REG_VT_SZ),$(ProductMinorVersion)}
  322.             ifint $(Version) != $(ProductVersion)
  323.             endif
  324.             CloseRegKey $(KeyProduct)
  325.         else
  326.             goto fatalregistry
  327.         endif
  328.     endif
  329.     goto end
  330. successful = +
  331.     goto end
  332. warning = +
  333.     Shell $(subroutineinf) SetupMessage, $(!STF_LANGUAGE), "WARNING", $(Error)
  334.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  335.         goto ShellCodeError
  336.     endif
  337.     ifstr(i) $($R1) == "OK"
  338.         goto $(to)
  339.     else-ifstr(i) $($R1) == "CANCEL"
  340.         goto $(from)
  341.     else
  342.         goto "end"
  343.     endif
  344. nonfatal = +
  345.     ifstr(i) $(Error) == ""
  346.         Shell $(UtilityInf) RegistryErrorString "SETUP_FAIL"
  347.         ifint $($ShellCode) != $(!SHELL_CODE_OK)
  348.             goto ShellCodeError
  349.         endif
  350.         set Error = $($R0)
  351.     endif
  352.     Shell $(subroutineinf) SetupMessage, $(!STF_LANGUAGE), "NONFATAL", $(Error)
  353.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  354.         goto ShellCodeError
  355.     endif
  356.     ifstr(i) $($R1) == "OK"
  357.         goto $(from)
  358.     else
  359.         goto "end"
  360.     endif
  361. fatalregistry = +
  362.     Shell $(UtilityInf) RegistryErrorString $(RegistryErrorIndex)
  363.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  364.         goto ShellCodeError
  365.     endif
  366.     set Error = $($R0)
  367.     goto fatal
  368. fatal = +
  369.     ifstr(i) $(Error) == ""
  370.         Shell $(UtilityInf) RegistryErrorString "SETUP_FAIL"
  371.         ifint $($ShellCode) != $(!SHELL_CODE_OK)
  372.             goto ShellCodeError
  373.         endif
  374.         set Error = $($R0)
  375.     endif
  376.     Shell $(subroutineinf) SetupMessage, $(!STF_LANGUAGE), "FATAL", $(Error)
  377.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  378.         goto ShellCodeError
  379.     endif
  380.     goto setfailed
  381. ShellCodeError = +
  382.     set DlgType      = "MessageBox"
  383.     set STF_MB_TITLE = $(ShellCodeErrorTitle)
  384.     set STF_MB_TEXT  = $(ShellCodeErrorText) 
  385.     set STF_MB_TYPE  = 1
  386.     set STF_MB_ICON  = 3
  387.     set STF_MB_DEF   = 1
  388.     ui start "Error Message"
  389.     goto setfailed
  390. setfailed = +
  391.     set CommonStatus = STATUS_FAILED
  392.     Ifint $(RegistryErrorIndex) == TCPIP_NONEXIST_ERROR
  393.         set CommonStatus = STATUS_USERCANCEL
  394.     endif
  395.     ifstr(i) $(OEM_ABANDON_ON) == TRUE
  396.         set OEM_ABANDON_ON = FALSE
  397.         goto removeadapter
  398.     endif
  399.     goto end
  400. end = +
  401.     goto term
  402. term = +
  403.     Return $(CommonStatus)
  404. [Install-Option]
  405.     set STF_VITAL = ""
  406.     ifstr(i) $(AddCopy) == "YES"
  407.         AddSectionFilesToCopyList Files-$(Option) $(SrcDir) $(!STF_WINDOWSSYSPATH)
  408.     endif
  409.     ifstr(i) $(DoCopy) == "YES"
  410.        set !STF_NCPA_FLUSH_COPYLIST = TRUE
  411.        CopyFilesInCopyList
  412.     endif
  413.     ifstr(i) $(DoConfig) == "YES"
  414.     endif
  415.     Exit
  416. [Install-Update]
  417.    set STF_VITAL        = ""
  418.    set STF_OVERWRITE    = "VERIFYSOURCEOLDER"
  419.    AddSectionFilesToCopyList Files-$(Option) $(SrcDir) $(!STF_WINDOWSSYSPATH)
  420.    AddSectionFilesToCopyList Files-Inf $(SrcDir) $(!STF_WINDOWSSYSPATH)
  421.    set !STF_NCPA_FLUSH_COPYLIST = TRUE
  422.    CopyFilesInCopyList
  423.    exit
  424. [Source Media Descriptions]
  425.     1    = "Windows NT Advanced Server Setup Disk #1"   , TAGFILE = disk1
  426.     2    = "Windows NT Advanced Server Setup Disk #2"   , TAGFILE = disk2
  427.     3    = "Windows NT Advanced Server Setup Disk #3"   , TAGFILE = disk3
  428.     4    = "Windows NT Advanced Server Setup Disk #4"   , TAGFILE = disk4
  429.     5    = "Windows NT Advanced Server Setup Disk #5"   , TAGFILE = disk5
  430.     6    = "Windows NT Advanced Server Setup Disk #6"   , TAGFILE = disk6
  431.     7    = "Windows NT Advanced Server Setup Disk #7"   , TAGFILE = disk7
  432.     8    = "Windows NT Advanced Server Setup Disk #8"   , TAGFILE = disk8
  433.     9    = "Windows NT Advanced Server Setup Disk #9"   , TAGFILE = disk9
  434.     10    = "Windows NT Advanced Server Setup Disk #10"  , TAGFILE = disk10
  435.     11    = "Windows NT Advanced Server Setup Disk #11"  , TAGFILE = disk11
  436.     12    = "Windows NT Advanced Server Setup Disk #12"  , TAGFILE = disk12
  437.     13    = "Windows NT Advanced Server Setup Disk #13"  , TAGFILE = disk13
  438.     14    = "Windows NT Advanced Server Setup Disk #14"  , TAGFILE = disk14
  439.     15    = "Windows NT Advanced Server Setup Disk #15"  , TAGFILE = disk15
  440.     16    = "Windows NT Advanced Server Setup Disk #16"  , TAGFILE = disk16
  441.     17    = "Windows NT Advanced Server Setup Disk #17"  , TAGFILE = disk17
  442.     18    = "Windows NT Advanced Server Setup Disk #18"  , TAGFILE = disk18
  443.     19    = "Windows NT Advanced Server Setup Disk #19"  , TAGFILE = disk19
  444.     20    = "Windows NT Advanced Server Setup Disk #20"  , TAGFILE = disk20
  445.     21    = "Windows NT Advanced Server Setup Disk #21"  , TAGFILE = disk21
  446.     22    = "Windows NT Advanced Server Setup Disk #22"  , TAGFILE = disk22
  447.     23    = "Windows NT Advanced Server Setup Disk #23"  , TAGFILE = disk23
  448.     24    = "Windows NT Advanced Server Setup Disk #24"  , TAGFILE = disk24
  449.     25    = "Windows NT Advanced Server Setup Disk #25"  , TAGFILE = disk25
  450.     26    = "Windows NT Advanced Server Setup Disk #26"  , TAGFILE = disk26
  451.     27    = "Windows NT Advanced Server Setup Disk #27"  , TAGFILE = disk27
  452.     28    = "Windows NT Advanced Server Setup Disk #28"  , TAGFILE = disk28
  453.     29    = "Windows NT Advanced Server Setup Disk #29"  , TAGFILE = disk29
  454. [ProductType]
  455. STF_PRODUCT  = LanmanNT
  456. STF_PLATFORM = I386
  457. [Files-Inf]
  458. 2,    oemsetup.inf,     SIZE=1000,    RENAME=$(!UG_Filename)
  459. [Files-SNMP]
  460. 21,INETMIB1.DLL , SIZE=51712
  461. 20,LMMIB2.DLL , SIZE=61952
  462. 21, SNMP.EXE, SIZE=44032
  463. [LanguagesSupported]
  464.     ENG
  465. [OptionsTextENG]
  466.     SNMP     = "SNMP Service"
  467. [FileConstantsENG]
  468. ProCaption   = "Windows NT Setup"
  469. ProCancel    = "Cancel"
  470. ProCancelMsg = "Windows NT Networking is not correctly installed.  "+
  471.                "Are you sure you want to cancel copying files?"
  472. ProCancelCap = "Network Setup Message"
  473. ProText1     = "Copying:"
  474. ProText2     = "To:"
  475. FunctionTitle   = "SNMP Setup"
  476. ProductSoftwareDescription      = "SNMP Net Management Service"
  477. ProductSoftwareDisplayName      = "SNMP Service"
  478. ProductSoftwareTitle    = "SNMP Service"
  479. ShellCodeErrorTitle     = "Error: "$(FunctionTitle)
  480. ShellCodeErrorText      = "Shell Code Error."
  481. [DialogConstantsENG]
  482. Help        = "&Help"
  483. Exit        = "Cancel"
  484. OK          = "OK"
  485. HelpContext = ""
  486. Continue    = "Continue"
  487. Cancel      = "Cancel"
  488. [FileDependentDlgENG]
  489.  
  490.  
  491.  
  492.