init
This commit is contained in:
248
DataPRO/DataPRO Installer/Source Files/Driver/DTS_USB.inf
Normal file
248
DataPRO/DataPRO Installer/Source Files/Driver/DTS_USB.inf
Normal file
@@ -0,0 +1,248 @@
|
||||
; DTS TSR2/Slice Recorder WinUSB driver inf
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
Class = USB
|
||||
ClassGUID={36FC9E60-C465-11CF-8056-444553540000}
|
||||
Provider = %ProviderName%
|
||||
DriverVer=06/23/2020,1.1.0.0
|
||||
CatalogFile=DTS_USB.cat
|
||||
PnpLockdown=1
|
||||
; ========== Manufacturer/Models sections ===========
|
||||
|
||||
[Manufacturer]
|
||||
%ProviderName% = MyDevice_WinUSB,NTx86,NTamd64,NTia64
|
||||
|
||||
[MyDevice_WinUSB.NTx86]
|
||||
%USB\MyDevice.DeviceDescSLICE% = USB_Install_SLICE, USB\VID_1CB9&PID_0008
|
||||
%USB\MyDevice.DeviceDescTSR2% = USB_Install_TSR2, USB\VID_1CB9&PID_000A
|
||||
%USB\MyDevice.DeviceDescSLICE20% = USB_Install_SLICE20, USB\VID_1CB9&PID_001B
|
||||
%USB\MyDevice.DeviceDescSLICE15% = USB_Install_SLICE15, USB\VID_1CB9&PID_001C
|
||||
%USB\MyDevice.DeviceDescSLICET% = USB_Install_SLICET, USB\VID_1CB9&PID_000F
|
||||
|
||||
[MyDevice_WinUSB.NTamd64]
|
||||
%USB\MyDevice.DeviceDescSLICE% = USB_Install_SLICE, USB\VID_1CB9&PID_0008
|
||||
%USB\MyDevice.DeviceDescTSR2% = USB_Install_TSR2, USB\VID_1CB9&PID_000A
|
||||
%USB\MyDevice.DeviceDescSLICE20% = USB_Install_SLICE20, USB\VID_1CB9&PID_001B
|
||||
%USB\MyDevice.DeviceDescSLICE15% = USB_Install_SLICE15, USB\VID_1CB9&PID_001C
|
||||
%USB\MyDevice.DeviceDescSLICET% = USB_Install_SLICET, USB\VID_1CB9&PID_000F
|
||||
|
||||
[MyDevice_WinUSB.NTia64]
|
||||
%USB\MyDevice.DeviceDescSLICE% = USB_Install_SLICE, USB\VID_1CB9&PID_0008
|
||||
%USB\MyDevice.DeviceDescTSR2% = USB_Install_TSR2, USB\VID_1CB9&PID_000A
|
||||
%USB\MyDevice.DeviceDescSLICE20% = USB_Install_SLICE20, USB\VID_1CB9&PID_001B
|
||||
%USB\MyDevice.DeviceDescSLICE15% = USB_Install_SLICE15, USB\VID_1CB9&PID_001C
|
||||
%USB\MyDevice.DeviceDescSLICET% = USB_Install_SLICET, USB\VID_1CB9&PID_000F
|
||||
|
||||
; =================== Installation ===================
|
||||
|
||||
[USB_Install_TSR2]
|
||||
Include=winusb.inf
|
||||
Needs=WINUSB.NT
|
||||
|
||||
[USB_Install_SLICE]
|
||||
Include=winusb.inf
|
||||
Needs=WINUSB.NT
|
||||
|
||||
[USB_Install_SLICE20]
|
||||
Include=winusb.inf
|
||||
Needs=WINUSB.NT
|
||||
|
||||
[USB_Install_SLICE15]
|
||||
Include=winusb.inf
|
||||
Needs=WINUSB.NT
|
||||
|
||||
[USB_Install_SLICET]
|
||||
Include=winusb.inf
|
||||
Needs=WINUSB.NT
|
||||
|
||||
[USB_Install_TSR2.Services]
|
||||
Include=winusb.inf
|
||||
AddService=WinUSB,0x00000002,WinUSB_ServiceInstall_TSR2
|
||||
|
||||
[USB_Install_SLICE.Services]
|
||||
Include=winusb.inf
|
||||
AddService=WinUSB,0x00000002,WinUSB_ServiceInstall_SLICE
|
||||
|
||||
[USB_Install_SLICE20.Services]
|
||||
Include=winusb.inf
|
||||
AddService=WinUSB,0x00000002,WinUSB_ServiceInstall_SLICE20
|
||||
|
||||
[USB_Install_SLICE15.Services]
|
||||
Include=winusb.inf
|
||||
AddService=WinUSB,0x00000002,WinUSB_ServiceInstall_SLICE15
|
||||
|
||||
[USB_Install_SLICET.Services]
|
||||
Include=winusb.inf
|
||||
AddService=WinUSB,0x00000002,WinUSB_ServiceInstall_SLICET
|
||||
|
||||
[WinUSB_ServiceInstall_TSR2]
|
||||
DisplayName = %WinUSB_SvcDesc_TSR2%
|
||||
ServiceType = 1
|
||||
StartType = 3
|
||||
ErrorControl = 1
|
||||
ServiceBinary = %12%\WinUSB.sys
|
||||
|
||||
[WinUSB_ServiceInstall_SLICE]
|
||||
DisplayName = %WinUSB_SvcDesc_SLICE%
|
||||
ServiceType = 1
|
||||
StartType = 3
|
||||
ErrorControl = 1
|
||||
ServiceBinary = %12%\WinUSB.sys
|
||||
|
||||
[WinUSB_ServiceInstall_SLICE20]
|
||||
DisplayName = %WinUSB_SvcDesc_SLICE20%
|
||||
ServiceType = 1
|
||||
StartType = 3
|
||||
ErrorControl = 1
|
||||
ServiceBinary = %12%\WinUSB.sys
|
||||
|
||||
[WinUSB_ServiceInstall_SLICE15]
|
||||
DisplayName = %WinUSB_SvcDesc_SLICE15%
|
||||
ServiceType = 1
|
||||
StartType = 3
|
||||
ErrorControl = 1
|
||||
ServiceBinary = %12%\WinUSB.sys
|
||||
|
||||
[WinUSB_ServiceInstall_SLICET]
|
||||
DisplayName = %WinUSB_SvcDesc_SLICET%
|
||||
ServiceType = 1
|
||||
StartType = 3
|
||||
ErrorControl = 1
|
||||
ServiceBinary = %12%\WinUSB.sys
|
||||
|
||||
[USB_Install_TSR2.Wdf]
|
||||
KmdfService=WINUSB, WinUsb_Install
|
||||
UmdfServiceOrder=WINUSB
|
||||
|
||||
[USB_Install_SLICE.Wdf]
|
||||
KmdfService=WINUSB, WinUsb_Install
|
||||
UmdfServiceOrder=WINUSB
|
||||
|
||||
[USB_Install_SLICE20.Wdf]
|
||||
KmdfService=WINUSB, WinUsb_Install
|
||||
UmdfServiceOrder=WINUSB
|
||||
|
||||
[USB_Install_SLICE15.Wdf]
|
||||
KmdfService=WINUSB, WinUsb_Install
|
||||
UmdfServiceOrder=WINUSB
|
||||
|
||||
[USB_Install_SLICET.Wdf]
|
||||
KmdfService=WINUSB, WinUsb_Install
|
||||
UmdfServiceOrder=WINUSB
|
||||
|
||||
[WinUSB_Install]
|
||||
KmdfLibraryVersion=1.7
|
||||
|
||||
[USB_Install_TSR2.HW]
|
||||
AddReg=Dev_AddReg_TSR2
|
||||
|
||||
[USB_Install_SLICE.HW]
|
||||
AddReg=Dev_AddReg_SLICE
|
||||
|
||||
[USB_Install_SLICE20.HW]
|
||||
AddReg=Dev_AddReg_SLICE20
|
||||
|
||||
[USB_Install_SLICE15.HW]
|
||||
AddReg=Dev_AddReg_SLICE15
|
||||
|
||||
[USB_Install_SLICET.HW]
|
||||
AddReg=Dev_AddReg_SLICET
|
||||
|
||||
[Dev_AddReg_TSR2]
|
||||
HKR,,DeviceInterfaceGUIDs,0x10000,"{8d365820-a2e0-4129-971a-980b1c7052ac}"
|
||||
|
||||
[Dev_AddReg_SLICE]
|
||||
HKR,,DeviceInterfaceGUIDs,0x10000,"{f99ef36a-85f6-4042-9416-e05527c43a35}"
|
||||
|
||||
[Dev_AddReg_SLICE20]
|
||||
HKR,,DeviceInterfaceGUIDs,0x10000,"{fb10e3ff-ece3-410e-beeb-719096813fb9}"
|
||||
|
||||
[Dev_AddReg_SLICE15]
|
||||
HKR,,DeviceInterfaceGUIDs,0x10000,"{d80bb9a9-2879-4d40-af1c-794b1e7956e4}"
|
||||
|
||||
[Dev_AddReg_SLICET]
|
||||
HKR,,DeviceInterfaceGUIDs,0x10000,"{ce2ed31a-2b65-4bae-826b-caf5e3120649}"
|
||||
|
||||
[USB_Install_TSR2.CoInstallers]
|
||||
AddReg=CoInstallers_AddReg
|
||||
CopyFiles=CoInstallers_CopyFiles
|
||||
|
||||
[USB_Install_SLICE.CoInstallers]
|
||||
AddReg=CoInstallers_AddReg
|
||||
CopyFiles=CoInstallers_CopyFiles
|
||||
|
||||
[USB_Install_SLICE20.CoInstallers]
|
||||
AddReg=CoInstallers_AddReg
|
||||
CopyFiles=CoInstallers_CopyFiles
|
||||
|
||||
[USB_Install_SLICE15.CoInstallers]
|
||||
AddReg=CoInstallers_AddReg
|
||||
CopyFiles=CoInstallers_CopyFiles
|
||||
|
||||
[CoInstallers_AddReg]
|
||||
HKR,,CoInstallers32,0x00010000,"WinUSBCoInstaller.dll","WUDFUpdate_01007.dll","WdfCoInstaller01007.dll,WdfCoInstaller"
|
||||
|
||||
[CoInstallers_CopyFiles]
|
||||
WinUSBCoInstaller.dll
|
||||
WdfCoInstaller01007.dll
|
||||
WUDFUpdate_01007.dll
|
||||
|
||||
[DestinationDirs]
|
||||
CoInstallers_CopyFiles=11
|
||||
|
||||
; ================= Source Media Section =====================
|
||||
|
||||
[SourceDisksNames.x86]
|
||||
1 = %DISK_NAME%,,,\x86
|
||||
|
||||
[SourceDisksNames.amd64]
|
||||
2 = %DISK_NAME%,,,\amd64
|
||||
|
||||
[SourceDisksNames.ia64]
|
||||
3 = %DISK_NAME%,,,\ia64
|
||||
|
||||
[SourceDisksFiles.x86]
|
||||
WinUSBCoInstaller.dll=1
|
||||
WdfCoInstaller01007.dll=1
|
||||
WUDFUpdate_01007.dll=1
|
||||
|
||||
[SourceDisksFiles.amd64]
|
||||
WinUSBCoInstaller.dll=2
|
||||
WdfCoInstaller01007.dll=2
|
||||
WUDFUpdate_01007.dll=2
|
||||
|
||||
[SourceDisksFiles.ia64]
|
||||
WinUSBCoInstaller.dll=3
|
||||
WdfCoInstaller01007.dll=3
|
||||
WUDFUpdate_01007.dll=3
|
||||
|
||||
|
||||
; Copy Files section
|
||||
;------------------------------------------------------------------------------
|
||||
[_CopyFiles_sys]
|
||||
winusb.sys
|
||||
|
||||
;************************************************* *****************************
|
||||
; Destination Directories
|
||||
;------------------------------------------------------------------------------
|
||||
[DestinationDirs]
|
||||
DefaultDestDir = 12 ; %SystemRoot%\system32\drivers
|
||||
_CopyFiles_sys = 12
|
||||
|
||||
; =================== Strings ===================
|
||||
|
||||
[Strings]
|
||||
ProviderName="Diversified Technical Systems, Inc."
|
||||
USB\MyDevice.DeviceDescTSR2 = "TSR2"
|
||||
USB\MyDevice.DeviceDescSLICE = "DTS SLICE Recorder"
|
||||
USB\MyDevice.DeviceDescSLICE20= "DTS SLICE 2.0 Recorder"
|
||||
USB\MyDevice.DeviceDescSLICE15= "DTS SLICE 1.5 Recorder"
|
||||
USB\MyDevice.DeviceDescSLICET = "DTS DKR/DIR"
|
||||
WinUSB_SvcDesc_TSR2= "TSR2"
|
||||
WinUSB_SvcDesc_SLICE= "DTS SLICE Recorder"
|
||||
WinUSB_SvcDesc_SLICE20="DTS SLICE 2.0 Recorder"
|
||||
WinUSB_SvcDesc_SLICE15="DTS SLICE 1.5 Recorder"
|
||||
WinUSB_SvcDesc_SLICET= "DTS DKR/DIR"
|
||||
DISK_NAME="DTS Install Disk"
|
||||
|
||||
Reference in New Issue
Block a user