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

  1. ;++
  2. ;
  3. ; Copyright (c) 2004  Microsoft Corporation
  4. ;
  5. ; Module Name:
  6. ;
  7. ;     netft.inf
  8. ;
  9. ; Abstract:
  10. ;
  11. ;     This module contains the INF file for the miniport interface of the 
  12. ;     Microsoft Failover Cluster Virtual Driver.
  13. ;
  14. ;--
  15.  
  16. [version]
  17. Signature   = "$Windows NT$"
  18. Class       = Net
  19. ClassGUID   = {4d36e972-e325-11ce-bfc1-08002be10318}
  20. Provider    = %Msft%
  21. DriverVer=06/21/2006,6.0.6001.18000
  22.  
  23. ;++
  24. ;
  25. ; The ...2 and ...3 parts indicate that we should only install on domain
  26. ; controllers (2) and servers (3), meaning that we should not install on clients
  27. ;
  28. ;--
  29.  
  30. [Manufacturer]
  31. %Msft% = Msft,NTx86...2,NTx86...3,NTia64...2,NTia64...3,NTamd64...2,NTamd64...3
  32.  
  33. [Msft.NTx86...2]
  34. %Netft.DeviceDesc%    = Netft.ndi, root\Netft ; Root enumerated 
  35.  
  36. [Msft.NTx86...3]
  37. %Netft.DeviceDesc%    = Netft.ndi, root\Netft ; Root enumerated 
  38.  
  39. [Msft.NTia64...2]
  40. %Netft.DeviceDesc%    = Netft.ndi, root\Netft ; Root enumerated 
  41.  
  42. [Msft.NTia64...3]
  43. %Netft.DeviceDesc%    = Netft.ndi, root\Netft ; Root enumerated 
  44.  
  45. [Msft.NTamd64...2]
  46. %Netft.DeviceDesc%    = Netft.ndi, root\Netft ; Root enumerated 
  47.  
  48. [Msft.NTamd64...3]
  49. %Netft.DeviceDesc%    = Netft.ndi, root\Netft ; Root enumerated 
  50.  
  51. ;++
  52. ;
  53. ; Microsoft Virtual Ethernet Adapter
  54. ;
  55. ;--
  56.  
  57. [Netft.ndi]
  58. Characteristics = 0x9 ; NCF_VIRTUAL | NCF_HIDDEN
  59. AddReg          = Netft.Reg
  60. CopyFiles       = Netft.CopyFiles
  61.  
  62. [Netft.ndi.Services]
  63. AddService      = Netft, 2, Netft.Service
  64.  
  65. ;++
  66. ;
  67. ; Microsoft Virtual Miniport Common
  68. ;
  69. ;--
  70.  
  71. [Netft.Reg]
  72. HKR,    ,                         BusNumber,           0, "0" 
  73. HKR, Ndi,                         Service,             0, "Netft"
  74. HKR, Ndi\Interfaces,              UpperRange,          0, "ndis5"
  75. HKR, Ndi\Interfaces,              LowerRange,          0, "ethernet"
  76.  
  77. ;++
  78. ;
  79. ; Driver and Service Section
  80. ;
  81. ;--
  82.  
  83. [Netft.CopyFiles]
  84. Netft.sys,,,2
  85.  
  86. [Netft.Service]
  87. DisplayName     = %Netft.Service.DispName%
  88. ServiceType     = 1 ;%SERVICE_KERNEL_DRIVER%
  89. StartType       = 3 ;%SERVICE_DEMAND_START%
  90. ErrorControl    = 1 ;%SERVICE_ERROR_NORMAL%
  91. ServiceBinary   = %12%\netft.sys
  92. LoadOrderGroup  = NDIS
  93. AddReg          = TextModeFlags.Reg
  94.  
  95. [TextModeFlags.Reg]
  96. HKR, , TextModeFlags,    0x00010001, 0x0001
  97.  
  98. [SourceDisksNames]
  99. 1 = %DiskId1%,,,""
  100.  
  101. [SourceDisksFiles]
  102. netft.sys  = 1,,
  103.  
  104. ;++
  105. ;
  106. ; DestinationDirs
  107. ;
  108. ;--
  109.  
  110. [DestinationDirs]
  111. Netft.CopyFiles = 12
  112.  
  113. ;++
  114. ;
  115. ; Localizable Strings
  116. ;
  117. ;--
  118.  
  119. [Strings]
  120. Msft                    = "Microsoft"                      
  121. Netft.DeviceDesc        = "Microsoft Failover Cluster Virtual Adapter"
  122. Netft.Service.DispName  = "Cluster Virtual Miniport Driver"
  123. DiskId1 = "Microsoft Failover Cluster Virtual Miniport Device Installation Disk #1"
  124.  
  125.