home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / install.wim / 5 / Windows / inf / ws3cap.inf < prev    next >
Encoding:
Text (UTF-16)  |  2008-01-19  |  4.0 KB  |  107 lines

  1. ;/*++
  2. ;
  3. ;Copyright (c) Microsoft Corporation
  4. ;
  5. ;Module Name:
  6. ;
  7. ;    s3cap.inf
  8. ;
  9. ;Abstract:
  10. ;
  11. ;    This is the INF file for installing the Hyper-V S3 Cap driver
  12. ;    
  13. ;Environment:
  14. ;
  15. ;    Driver installation
  16. ;
  17. ;--*/
  18.  
  19. [Version]
  20. Signature="$WINDOWS NT$"
  21. Provider=%MSFT%
  22. ClassGuid={4d36e97d-e325-11ce-bfc1-08002be10318}
  23. Class=System
  24. DriverVer=06/21/2006,6.0.6001.18000
  25. LayoutFile=layout.inf
  26. ;CatalogFile=vmdrivers.cat
  27.  
  28. [DestinationDirs]
  29. DefaultDestDir = 12
  30. S3Cap.Copy = 12
  31.  
  32. [ControlFlags]
  33. ExcludeFromSelect=*
  34.  
  35. ;
  36. ; S3 Cap Device Install Section
  37. ;
  38.  
  39. [Manufacturer]
  40. %StdMfg% = Standard, NTx86
  41.  
  42. [Standard]
  43. %S3CapDevice.DeviceDesc% = S3Cap, PCI\VEN_1414&DEV_5353&SUBSYS_00000000&REV_00
  44.  
  45. [Standard.NTx86]
  46. %S3CapDevice.DeviceDesc% = S3Cap, PCI\VEN_1414&DEV_5353&SUBSYS_00000000&REV_00
  47.  
  48. [S3Cap]
  49. FeatureScore=80
  50. CopyFiles=S3Cap.Copy
  51.  
  52. ;
  53. ; File sections
  54. ;
  55.  
  56. [SourceDisksNames]
  57. 1 = %DiskId1%,,,""
  58.  
  59. [SourceDisksFiles]
  60. s3cap.sys  = 1,,
  61.  
  62. [S3Cap.Copy]
  63. s3cap.sys
  64.  
  65. ;
  66. ; Service installation
  67. ;
  68.  
  69. [S3Cap.Services]
  70. AddService = s3cap, %SPSVCINST_ASSOCSERVICE%, s3cap_Service_Inst
  71.  
  72. [s3cap_Service_Inst]
  73. DisplayName    = %S3CAP.SVCDESC%
  74. ServiceType    = 1               ; SERVICE_KERNEL_DRIVER
  75. StartType      = 3               ; SERVICE_DEMAND_START
  76. ErrorControl   = 1               ; SERVICE_ERROR_NORMAL
  77. ServiceBinary  = %12%\s3cap.sys
  78. LoadOrderGroup = Video
  79. AddReg         = s3cap_Parameters_AddReg
  80.  
  81. [s3cap_Parameters_AddReg]
  82. HKR, Parameters\Wdf, DbgPrintOn,      0x00010001, 0
  83. HKR, Parameters\Wdf, DbgBreakOnError, 0x00010001, 0
  84.  
  85. ;
  86. ; Uninstallation sections
  87. ;
  88.  
  89. [DefaultUninstall.Services]
  90. DelService = s3cap,0x00000200
  91.  
  92. [DefaultUninstall]
  93. DelFiles = S3Cap.Copy
  94.  
  95. ;
  96. ; Strings
  97. ;
  98.  
  99. [Strings]
  100. SPSVCINST_ASSOCSERVICE= 0x00000002
  101. MSFT = "Microsoft"
  102. StdMfg = "(Standard system devices)"
  103. ClassName = "S3 Cap"
  104. DiskId1 = "S3 Cap Device Installation Disk #1"
  105. S3CapDevice.DeviceDesc = "Microsoft Emulated S3 Device Cap"
  106. S3CAP.SVCDESC = "Microsoft Emulated S3 Device Cap Driver"
  107.