home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 February / maximum-cd-2011-02.iso / DiscContents / ConnectifyInstaller.exe / drivers / x86 / connctfy.inf < prev    next >
Encoding:
Windows Setup INFormation  |  2010-08-11  |  3.6 KB  |  131 lines

  1. ; -- connctfy.INF --
  2. ;
  3. ; This file is based on Passthru driver INF file - this is the INF for the
  4. ; service (protocol) part
  5. ;
  6. ; Copyright (c) 2000-2009, NT Kernel Resources
  7. ;
  8. ; ----------------------------------------------------------------------
  9.  
  10. [Version]
  11. Signature  = "$Windows NT$"
  12. Class      = NetService
  13. ClassGUID  = {4D36E974-E325-11CE-BFC1-08002BE10318}
  14. Provider   = %Ntkr%
  15. DriverVer  = 08/27/2009,3.00.7.1
  16. CatalogFile = connctfy.cat
  17.  
  18.  
  19. [Manufacturer]
  20. %Ntkr% = NTKR,NTx86,NTia64,NTamd64
  21.  
  22. [ControlFlags]
  23.  
  24. ;=========================================================================
  25. ;
  26. ;=========================================================================
  27. ;For Win2K
  28.  
  29. [NTKR]
  30. %connctfy_Desc% = connctfy.ndi, nt_connctfy
  31.  
  32. ;For WinXP and later
  33.  
  34. [NTKR.NTx86]
  35. %connctfy_Desc% = connctfy.ndi, nt_connctfy
  36.  
  37. [NTKR.NTia64]
  38. %connctfy_Desc% = connctfy.ndi, nt_connctfy
  39.  
  40. [NTKR.NTamd64]
  41. %connctfy_Desc% = connctfy.ndi, nt_connctfy
  42.  
  43.  
  44. [connctfy.ndi]
  45. AddReg          = connctfy.ndi.AddReg, connctfy.AddReg
  46. Characteristics = 0x4410 ;  NCF_FILTER | NCF_NDIS_PROTOCOL !--Filter Specific--!!
  47. CopyFiles       = connctfy.Files.Sys
  48. CopyInf         = connctfy_m.inf
  49.  
  50. [connctfy.ndi.Remove]
  51. DelFiles = connctfy.Files.Sys
  52.  
  53. [connctfy.ndi.Services]
  54. AddService = connctfy,, connctfy.AddService
  55.  
  56. [connctfy.AddService]
  57. DisplayName    = %connctfyService_Desc%
  58. ServiceType    = 1 ;SERVICE_KERNEL_DRIVER
  59. StartType      = 3 ;SERVICE_DEMAND_START
  60. ErrorControl   = 1 ;SERVICE_ERROR_NORMAL
  61. ServiceBinary  = %12%\connctfy.sys
  62. AddReg         = connctfy.AddService.AddReg
  63.  
  64.  
  65. [connctfy.AddService.AddReg]
  66. ; ----------------------------------------------------------------------
  67. ; Add any miniport-specific parameters here.  These are params that your
  68. ; filter device is going to use.
  69. ;
  70. ;HKR, Parameters, ParameterName,  0x10000, "MultiSz", "Parameter", "Value"
  71. ;HKR, Parameters, ParameterName2, 0x10001, 4
  72.  
  73.  
  74. ; ----------------------------------------------------------------------
  75. ; File copy
  76. ;
  77. [SourceDisksNames]
  78. 1=%DiskDescription%,"",,
  79.  
  80. [SourceDisksFiles]
  81. connctfy.sys=1
  82.  
  83. [DestinationDirs]
  84. DefaultDestDir = 12
  85. connctfy.Files.Sys   = 12   ; %windir%\System32\drivers
  86.  
  87. [connctfy.Files.Sys]
  88. connctfy.sys,,,2
  89.  
  90. ; ----------------------------------------------------------------------
  91. ; Filter Install
  92. ;
  93.  
  94. [connctfy.ndi.AddReg]
  95. HKR, Ndi, HelpText, , %connctfy_HELP%
  96.  
  97. ; ----------------------------------------------------------------------
  98. ; !!--Filter Specific--!!
  99. ;
  100. ; Note:
  101. ; 1. Other components may also have UpperRange/LowerRange but for filters
  102. ;    the value of both of them must be noupper/nolower
  103. ; 2. The value FilterClass is required.
  104. ; 3. The value Service is required
  105. ; 4. FilterDeviceInfId is the InfId of the filter device (miniport) that will
  106. ;    be installed for each filtered adapter.
  107. ;    In this case this is nt_connctfymp (refer to connctfy_m.inf)
  108. ;
  109. HKR, Ndi,            FilterClass,         , failover
  110. HKR, Ndi,            FilterDeviceInfId,   , nt_connctfymp
  111. HKR, Ndi,            Service,             , connctfy
  112. HKR, Ndi\Interfaces, UpperRange,          , noupper
  113. HKR, Ndi\Interfaces, LowerRange,          , nolower
  114. HKR, Ndi\Interfaces, FilterMediaTypes,    , "ethernet, wan"
  115.  
  116. [connctfy.AddReg]
  117. ; The following key is Required
  118. ; The following key is connctfy specific
  119. HKR, Parameters, Param1, 0, 4
  120.  
  121. ; ----------------------------------------------------------------------
  122. [Strings]
  123. Ntkr = "Connectify"
  124. DiskDescription = "Connectify Driver Disk"
  125.  
  126. connctfy_Desc = "Connectify Driver"
  127. connctfy_HELP = "Connectify Driver"
  128. connctfyService_Desc = "Connectify Service"
  129.  
  130.  
  131.