Advertisement
Guest User

New inf file

a guest
May 24th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. ;
  2. ; MyDriver1.inf
  3. ;
  4.  
  5. [Version]
  6. Signature="$WINDOWS NT$"
  7. Class=System
  8. ClassGuid={4d36e97d-e325-11ce-bfc1-08002be10318}
  9. Provider=%ManufacturerName%
  10. DriverVer=05/24/2019,10.0.17134.766
  11. CatalogFile=MyDriver1.cat
  12.  
  13. [DefaultInstall.NT]
  14. CopyFiles = DriverCopy
  15.  
  16. [DefaultInstall.NT.Services]
  17. AddService = mydrvsrv,0,ServiceInstall
  18.  
  19. [DriverCopy]
  20. MyDriver1.sys
  21.  
  22. [ServiceInstall]
  23. ;DisplayName = %ServiceDesc%
  24. ServiceType = 1
  25. StartType = 1
  26. ErrorControl = 1
  27. ServiceBinary = %12%/MyDriver1.sys
  28.  
  29. [DestinationDirs]
  30. DefaultDestDir = 12
  31.  
  32. [SourceDisksNames]
  33. 1 = %DiskName%,,,""
  34.  
  35. [SourceDisksFiles]
  36. MyDriver1.sys = 1
  37.  
  38. [Strings]
  39. ServiceDesc = "This is the service for the MyDriver1 source"
  40. main_install_disk = "Main installation disk"
  41. dev1="Device 1"
  42. ManufacturerName="Manufacturer of MyDevice1" ;TODO: Replace with your manufacturer name
  43. ClassName=""
  44. DiskName="MyDriver1 Source Disk"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement