home *** CD-ROM | disk | FTP | other *** search
/ ftp.networkinstruments.com / 2015-02-04.ftp.networkinstruments.com.tar / ftp.networkinstruments.com / pub / demos / ObserverSetup.exe / Win64 / Drivers / NiFr1D.INF < prev    next >
Windows Setup INFormation  |  2013-01-15  |  3KB  |  117 lines

  1. ;; NiFr1D.inf
  2.  
  3. ;; *********  PLEASE READ ***********
  4. ;; The wizard cannot create exact INF files for all buses and device types.
  5. ;; You may have to make changes to this file in order to get your device to
  6. ;; install. In particular, hardware IDs and logical configurations require
  7. ;; intervention.
  8. ;;
  9. ;; The Win2K DDK documentation contains an excellent INF reference.
  10.  
  11. ;--------- Version Section ---------------------------------------------------
  12.  
  13. [Version]
  14. Signature="$Windows NT$"
  15. Provider=%ProviderName%
  16.  
  17. ; If device fits one of the standard classes, use the name and GUID here,
  18. ; otherwise create your own device class and GUID as this example shows.
  19.  
  20. Class=NewDeviceClass
  21. ClassGUID={ff646f80-8def-11d2-9449-00105a075f6b}
  22. DriverVer=12/05/2012,16.0.0000
  23.  
  24. ;--------- SourceDiskNames and SourceDiskFiles Section -----------------------
  25.  
  26. ; These sections identify source disks and files for installation.  They are
  27. ; shown here as an example, but commented out.
  28.  
  29. ;[SourceDisksNames]
  30. ;1 = "Install Disk",Disk1,,
  31.  
  32. ;[SourceDisksFiles]
  33. ;NiFr1D.sys = 1,,
  34.  
  35. ;--------- ClassInstall/ClassInstall32 Section -------------------------------
  36.  
  37. ; Not necessary if using a standard class
  38.  
  39. ; NT Style
  40. [ClassInstall32]
  41. Addreg=Class_AddReg
  42.  
  43. [Class_AddReg]
  44. HKR,,,,%DeviceClassName%
  45. HKR,,Icon,,"-5"
  46.  
  47. ;--------- DestinationDirs Section -------------------------------------------
  48.  
  49. [DestinationDirs]
  50. NiFr1D_Files_Driver = 10,System32\Drivers
  51.  
  52. ;--------- Manufacturer and Models Sections ----------------------------------
  53.  
  54. [Manufacturer]
  55. %MfgName%=Mfg0,NTx86,NTamd64
  56.  
  57. [Mfg0.NTx86]
  58.  
  59. ; PCI hardware IDs use the form
  60. ;   PCI\VEN_aaaa&DEV_bbbb&SUBSYS_cccccccc&REV_dd
  61. ;
  62. %DeviceDesc%=NiFr1D_DDI, PCI\VEN_11F8&DEV_7364
  63. ;&SUBSYS_00000000&REV_00
  64.  
  65. [Mfg0.NTamd64]
  66.  
  67. ; PCI hardware IDs use the form
  68. ;   PCI\VEN_aaaa&DEV_bbbb&SUBSYS_cccccccc&REV_dd
  69. ;
  70. %DeviceDesc%=NiFr1D_DDI, PCI\VEN_11F8&DEV_7364
  71. ;&SUBSYS_00000000&REV_00
  72.  
  73. ;---------- DDInstall Sections -----------------------------------------------
  74. ; --------- Windows NT -----------------
  75.  
  76. [NiFr1D_DDI.NTx86]
  77. CopyFiles=NiFr1D_Files_Driver
  78. AddReg=NiFr1D_NT_AddReg
  79. Reboot
  80.  
  81. [NiFr1D_DDI.NTx86.Services]
  82. Addservice = NiFr1D, 0x00000002, NiFr1D_AddService
  83.  
  84. [NiFr1D_DDI.NTamd64]
  85. CopyFiles=NiFr1D_Files_Driver
  86. AddReg=NiFr1D_NT_AddReg
  87. Reboot
  88.  
  89. [NiFr1D_DDI.NTamd64.Services]
  90. Addservice = NiFr1D, 0x00000002, NiFr1D_AddService
  91.  
  92. [NiFr1D_AddService]
  93. DisplayName    = %SvcDesc%
  94. ServiceType    = 1                  ; SERVICE_KERNEL_DRIVER
  95. StartType      = 3                  ; SERVICE_DEMAND_START
  96. ErrorControl   = 1                  ; SERVICE_ERROR_NORMAL
  97. ServiceBinary  = %10%\System32\Drivers\NiFr1D.sys
  98.  
  99. [NiFr1D_NT_AddReg]
  100. HKLM, "System\CurrentControlSet\Services\NiFr1D\Parameters",\
  101.     "BreakOnEntry", 0x00010001, 0
  102.  
  103.  
  104. ; --------- Files (common) -------------
  105.  
  106. [NiFr1D_Files_Driver]
  107. NiFr1D.sys
  108.  
  109. ;--------- Strings Section ---------------------------------------------------
  110.  
  111. [Strings]
  112. ProviderName="Network Instruments, LLC"
  113. MfgName="Network Instruments, LLC"
  114. DeviceDesc="T1/E1 Frame Relay Analyzer (Digital)"
  115. DeviceClassName="NI Protocol Analyzers"
  116. SvcDesc="T1/E1 Frame Relay Analyzer (Digital)"
  117.