home *** CD-ROM | disk | FTP | other *** search
/ ftp.networkinstruments.com / 2015-02-04.ftp.networkinstruments.com.tar / ftp.networkinstruments.com / pub / demos / ObserverSetup.exe / Win32 / Drivers / NiFr1S.inf < prev    next >
Windows Setup INFormation  |  2013-01-17  |  3KB  |  118 lines

  1. ;; NiFr1S.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="$Chicago$"
  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. ;NiFr1S.sys = 1,,
  34.  
  35. ;--------- ClassInstall/ClassInstall32 Section -------------------------------
  36.  
  37. ; Not necessary if using a standard class
  38.  
  39. ; 9X Style
  40. [ClassInstall]
  41. Addreg=Class_AddReg
  42.  
  43. ; NT Style
  44. [ClassInstall32]
  45. Addreg=Class_AddReg
  46.  
  47. [Class_AddReg]
  48. HKR,,,,%DeviceClassName%
  49. HKR,,Icon,,"-5"
  50.  
  51. ;--------- DestinationDirs Section -------------------------------------------
  52.  
  53. [DestinationDirs]
  54. NiFr1S_Files_Driver = 10,System32\Drivers
  55.  
  56. ;--------- Manufacturer and Models Sections ----------------------------------
  57.  
  58. [Manufacturer]
  59. %MfgName%=Mfg0
  60.  
  61. [Mfg0]
  62.  
  63. ; PCI hardware IDs use the form
  64. ;   PCI\VEN_aaaa&DEV_bbbb&SUBSYS_cccccccc&REV_dd
  65. ;
  66. %DeviceDesc%=NiFr1S_DDI, PCI\VEN_12aa&DEV_5568
  67. ;&SUBSYS_00000000&REV_00
  68.  
  69. ;---------- DDInstall Sections -----------------------------------------------
  70. ; --------- Windows 9X -----------------
  71.  
  72. ; Experimentation has shown that DDInstall root names greater than 19 characters
  73. ; cause problems in Windows 98
  74.  
  75. [NiFr1S_DDI]
  76. CopyFiles=NiFr1S_Files_Driver
  77. AddReg=NiFr1S_9X_AddReg
  78.  
  79. [NiFr1S_9X_AddReg]
  80. HKR,,DevLoader,,*ntkern
  81. HKR,,NTMPDriver,,NiFr1S.sys
  82. HKR, "Parameters", "BreakOnEntry", 0x00010001, 0
  83.  
  84. ; --------- Windows NT -----------------
  85.  
  86. [NiFr1S_DDI.NT]
  87. CopyFiles=NiFr1S_Files_Driver
  88. AddReg=NiFr1S_NT_AddReg
  89.  
  90. [NiFr1S_DDI.NT.Services]
  91. Addservice = NiFr1S, 0x00000002, NiFr1S_AddService
  92.  
  93. [NiFr1S_AddService]
  94. DisplayName    = %SvcDesc%
  95. ServiceType    = 1                  ; SERVICE_KERNEL_DRIVER
  96. StartType      = 3                  ; SERVICE_DEMAND_START
  97. ErrorControl   = 1                  ; SERVICE_ERROR_NORMAL
  98. ServiceBinary  = %10%\System32\Drivers\NiFr1S.sys
  99.  
  100. [NiFr1S_NT_AddReg]
  101. HKLM, "System\CurrentControlSet\Services\NiFr1S\Parameters",\
  102.     "BreakOnEntry", 0x00010001, 0
  103.  
  104.  
  105. ; --------- Files (common) -------------
  106.  
  107. [NiFr1S_Files_Driver]
  108. NiFr1S.sys
  109.  
  110. ;--------- Strings Section ---------------------------------------------------
  111.  
  112. [Strings]
  113. ProviderName="Network Instruments, LLC"
  114. MfgName="Network Instruments, LLC"
  115. DeviceDesc="T1/E1 WAN Analyzer (Serial)"
  116. DeviceClassName="NI Protocol Analyzers"
  117. SvcDesc="T1/E1 WAN Analyzer (Serial)"
  118.