home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / install.wim / 1 / Windows / inf / netnlb.inf < prev    next >
Encoding:
Text (UTF-16)  |  2008-01-19  |  6.6 KB  |  97 lines

  1. ;-------------------------------------------------------------------------
  2. ; netNLB.INF -- Network Load Balancing kernel-mode driver
  3. ;
  4. ; Copyright (c) Microsoft Corporation.  All rights reserved.
  5. ;-------------------------------------------------------------------------
  6. ;;++-- AddSDisk.cmd said no CopyFiles
  7.  
  8.  
  9. [version]
  10. Signature = "$Windows NT$"
  11. Class     = NetService
  12. ClassGUID = {4D36E974-E325-11CE-BFC1-08002BE10318}
  13. Provider  = %Msft%
  14. DriverVer=06/21/2006,6.0.6001.18000
  15.  
  16. [Manufacturer]
  17. %Msft% = Msft,NTx86...2,NTx86...3,NTia64...2,NTia64...3,NTamd64...2,NTamd64...3
  18.  
  19. [Msft.NTx86...2]
  20. %NLB_Desc% = Install, MS_WLBS
  21.  
  22. [Msft.NTx86...3]
  23. %NLB_Desc% = Install, MS_WLBS
  24.  
  25. [Msft.NTia64...2]
  26. %NLB_Desc% = Install, MS_WLBS
  27.  
  28. [Msft.NTia64...3]
  29. %NLB_Desc% = Install, MS_WLBS
  30.  
  31. [Msft.NTamd64...2]
  32. %NLB_Desc% = Install, MS_WLBS
  33.  
  34. [Msft.NTamd64...3]
  35. %NLB_Desc% = Install, MS_WLBS
  36.  
  37. [ControlFlags]
  38. ExcludeFromSelect = MS_WLBS
  39.  
  40. ;-------------------------------------------------------------------------
  41. ; Installation Section
  42. ;-------------------------------------------------------------------------
  43. [Install]
  44. AddReg           = Inst_Ndi
  45. Characteristics  = 0x40020 ; NCF_LW_FILTER | NCF_NOT_USER_REMOVABLE
  46. NetcfgInstanceId = "{bf0eaea8-c122-11d2-94f4-00c04f72d8c4}"
  47.  
  48. ;-------------------------------------------------------------------------
  49. ; Ndi installation support
  50. ;-------------------------------------------------------------------------
  51. [Inst_Ndi]
  52. HKR, Ndi,            Service,          ,           "WLBS"
  53. HKR, Ndi,            CoServices,       0x00010000, "WLBS"
  54. HKR, Ndi,            ClsID,            ,           "{bf0eaea8-c122-11d2-94f4-00c04f72d8c4}"
  55. HKR, Ndi,            ComponentDll,     ,           "nlbcfg.dll"
  56. HKR, Ndi,            HelpText,         ,           "@nlbcfg.dll,-5000"
  57. HKR, Ndi,            FilterClass,      ,           loadbalance
  58. HKR, Ndi,            FilterType,       0x00010001, 0x00000002
  59. HKR, Ndi,            FilterRunType,    0x00010001, 0x00000001   ;Mandatory filter
  60. HKR, Ndi\Interfaces, UpperRange,       ,           "noupper"
  61. HKR, Ndi\Interfaces, LowerRange,       ,           "nolower"
  62. HKR, Ndi\Interfaces, FilterMediaTypes, ,           "ethernet"
  63.  
  64. ;-------------------------------------------------------------------------
  65. ; Service installation support
  66. ;-------------------------------------------------------------------------
  67. [Install.Services]
  68. AddService = WLBS, , NLB_Service_Inst, NLB_EventLog_Inst
  69.  
  70. [NLB_Service_Inst]
  71. DisplayName     = %NLB_Desc%
  72. ServiceType     = 1 ;SERVICE_KERNEL_DRIVER
  73. StartType       = 3 ;SERVICE_DEMAND_START
  74. ErrorControl    = 1 ;SERVICE_ERROR_NORMAL
  75. ServiceBinary   = %12%\NLB.sys
  76. LoadOrderGroup  = NDIS
  77. Description     = %NLB_Desc%
  78.  
  79. [NLB_EventLog_Inst]
  80. AddReg = NLB_EventLog
  81.  
  82. [NLB_EventLog]
  83. ; The provider GUID below is taken from the provider's definition in the 
  84. ; NLB core events manifest (these GUIDs must be identical).
  85. HKR, , providerGuid, 0x20000, "{F22AF71F-C4C3-425D-9653-B2F47B85DD30}"
  86.  
  87. ;-------------------------------------------------------------------------
  88. ; Service de-installation support
  89. ;-------------------------------------------------------------------------
  90. [Install.Remove.Services]
  91. DelService = WLBS,0x200
  92.  
  93. [Strings]
  94. ; localizable
  95. Msft         = "Microsoft"
  96. NLB_Desc     = "Network Load Balancing (NLB)"
  97.