; ; testdrv.inf ; [Version] Signature="$WINDOWS NT$" Class=System ; TODO: specify appropriate Class ClassGuid={4d36e97d-e325-11ce-bfc1-08002be10318} ; TODO: specify appropriate ClassGuid Provider=%ManufacturerName% CatalogFile=testdrv.cat DriverVer= ; TODO: set DriverVer in stampinf property pages PnpLockdown=1 [DestinationDirs] DefaultDestDir = 12 testdrv_Device_CoInstaller_CopyFiles = 11 [SourceDisksNames] 1 = %DiskName%,,,"" [SourceDisksFiles] testdrv.sys = 1,, WdfCoInstaller$KMDFCOINSTALLERVERSION$.dll=1 ; make sure the number matches with SourceDisksNames ;***************************************** ; Install Section ;***************************************** [Manufacturer] %ManufacturerName%=Standard,NT$ARCH$ [Standard.NT$ARCH$] %testdrv.DeviceDesc%=testdrv_Device, Root\testdrv ; TODO: edit hw-id [testdrv_Device.NT] CopyFiles=Drivers_Dir [Drivers_Dir] testdrv.sys ;-------------- Service installation [testdrv_Device.NT.Services] AddService = testdrv,%SPSVCINST_ASSOCSERVICE%, testdrv_Service_Inst ; -------------- testdrv driver install sections [testdrv_Service_Inst] DisplayName = %testdrv.SVCDESC% ServiceType = 1 ; SERVICE_KERNEL_DRIVER StartType = 3 ; SERVICE_DEMAND_START ErrorControl = 1 ; SERVICE_ERROR_NORMAL ServiceBinary = %12%\testdrv.sys ; ;--- testdrv_Device Coinstaller installation ------ ; [testdrv_Device.NT.CoInstallers] AddReg=testdrv_Device_CoInstaller_AddReg CopyFiles=testdrv_Device_CoInstaller_CopyFiles [testdrv_Device_CoInstaller_AddReg] HKR,,CoInstallers32,0x00010000, "WdfCoInstaller$KMDFCOINSTALLERVERSION$.dll,WdfCoInstaller" [testdrv_Device_CoInstaller_CopyFiles] WdfCoInstaller$KMDFCOINSTALLERVERSION$.dll [testdrv_Device.NT.Wdf] KmdfService = testdrv, testdrv_wdfsect [testdrv_wdfsect] KmdfLibraryVersion = $KMDFVERSION$ [Strings] SPSVCINST_ASSOCSERVICE= 0x00000002 ManufacturerName="" ;TODO: Replace with your manufacturer name DiskName = "testdrv Installation Disk" testdrv.DeviceDesc = "testdrv Device" testdrv.SVCDESC = "testdrv Service"