home *** CD-ROM | disk | FTP | other *** search
/ ftp.networkinstruments.com / 2015-02-04.ftp.networkinstruments.com.tar / ftp.networkinstruments.com / pub / demos / ObsInfrSetup.exe / Win32 / drivers / netsf_m.inf next >
Windows Setup INFormation  |  2012-12-05  |  3KB  |  85 lines

  1. ; -- NETSF_M.INF --
  2. ;
  3. ; NetworkDriverLA Miniport INF file
  4. ;
  5. ; Copyright (c) 1993-1999, Microsoft Corporation
  6.  
  7. ; ----------------------------------------------------------------------
  8. ; Notes:
  9. ; 0. The term "filter" is used here to refer to an NDIS IM driver that
  10. ;    implements a 1:1 relationship between upper and lower bindings.
  11. ; 1. Items specifically required for a filter have been marked with
  12. ;    "!!--Filter Specific--!!" keyword
  13. ; 2. A filter DOES NOT require a notify object for proper installation.
  14. ;    A notify object is only required if one wants to have better control
  15. ;    over binding operations or if one wants to receive notifications
  16. ;    when other components get installed/removed/bound/unbound.
  17. ;    This sample uses a notify object as an example only. If you do not
  18. ;    want to use a notify object, please comment out the lines that add
  19. ;    ClsId and ComponentDll registry keys.
  20. ; ----------------------------------------------------------------------
  21.  
  22. [Version]
  23. signature  = "$Windows NT$"
  24. Class      = Net
  25. ClassGUID  = {4D36E972-E325-11CE-BFC1-08002BE10318}
  26. Provider   = %NetInst%
  27. DriverVer  = 11/01/2012,4.1.0.0
  28. CatalogFile = NetworkDriverLA.cat
  29.  
  30. [ControlFlags]
  31. ExcludeFromSelect = ms_NetworkDriverLAmp
  32.  
  33. [DestinationDirs]
  34. DefaultDestDir=12
  35. ; No files to copy 
  36.  
  37. [Manufacturer]
  38. %NetInst% = MSFT,NTx86,NTia64,NTamd64
  39.  
  40. ; For Win2K
  41. [MSFT]
  42. %NetworkDriverLAMP_Desc% = NetworkDriverLAMP.ndi, ms_NetworkDriverLAmp
  43.  
  44. ; For XP and later
  45. [MSFT.NTx86]
  46. %NetworkDriverLAMP_Desc% = NetworkDriverLAMP.ndi, ms_NetworkDriverLAmp
  47.  
  48. [MSFT.NTamd64]
  49. %NetworkDriverLAMP_Desc% = NetworkDriverLAMP.ndi, ms_NetworkDriverLAmp
  50.  
  51. [NetworkDriverLAMP.ndi]
  52. Characteristics = 0x29 ;NCF_NOT_USER_REMOVABLE | NCF_VIRTUAL | NCF_HIDDEN
  53. CopyFiles = 
  54.  
  55. [NetworkDriverLAMP.ndi.Services]
  56. AddService = NetworkDriverLA, 0x2, NetworkDriverLAMP.AddService
  57.  
  58.  
  59. [NetworkDriverLAMP.AddService]
  60. ServiceType    = 1 ;SERVICE_KERNEL_DRIVER
  61. StartType      = 3 ;SERVICE_DEMAND_START
  62. ErrorControl   = 1 ;SERVICE_ERROR_NORMAL
  63. ServiceBinary  = %12%\NetworkDriverLA.sys
  64.  
  65.  
  66. [NetworkDriverLAMP.AddService.AddReg]
  67. ; ----------------------------------------------------------------------
  68. ; Add any miniport-specific parameters here.  These are params that your
  69. ; filter device is going to use.
  70. ;
  71. ;HKR, Parameters, ParameterName,  0x10000, "MultiSz", "Parameter", "Value"
  72. ;HKR, Parameters, ParameterName2, 0x10001, 4
  73.  
  74. [Strings]
  75. NetInst = "Network Instruments, LLC"
  76. NetworkDriverLAMP_Desc = "NetworkDriverLA: Observer Infrastructure Miniport Driver"
  77.  
  78. [SourceDisksNames]
  79. ;None 
  80.  
  81. [SourceDisksFiles]
  82. ;None
  83.  
  84.  
  85.