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

  1. ;/*++
  2. ;
  3. ;Copyright (c) Microsoft Corporation
  4. ;
  5. ;Module Name:
  6. ;
  7. ;    VMBusVideo.inf
  8. ;
  9. ;Abstract:
  10. ;
  11. ;    This file is the installation information file for the 
  12. ;    SynthVid driver pair.
  13. ;
  14. ;
  15. ;Environment:
  16. ;
  17. ;    Driver installation
  18. ;
  19. ;--*/
  20.  
  21. [Version]
  22. Signature="$Windows NT$"
  23. Class=Display
  24. ClassGUID={4D36E968-E325-11CE-BFC1-08002BE10318}
  25. Provider=%MSFT%
  26. DriverVer=06/21/2006,6.0.6001.18000
  27. ;CatalogFile=vmdrivers.cat
  28.  
  29.  
  30. [DestinationDirs]
  31. DefaultDestDir  = 11
  32. SynthVid.Miniport           = 12  ; drivers
  33. SynthVid.Display            = 11  ; system32
  34.  
  35. [ControlFlags]
  36. ExcludeFromSelect=*
  37.  
  38. ;
  39. ; Driver information
  40. ;
  41.  
  42. [Manufacturer]
  43. %StdMfg% = Standard,NTamd64
  44.  
  45. [Standard]
  46. %SynthVid.DeviceDesc% = SynthVid, VMBUS\{C9A9B73F-F83D-4b62-A656-FA907223D437}
  47.  
  48. [Standard.NTamd64]
  49. %SynthVid.DeviceDesc% = SynthVid, VMBUS\{C9A9B73F-F83D-4b62-A656-FA907223D437}
  50.  
  51. ;
  52. ; General installation section
  53. ;
  54.  
  55. [SynthVid]
  56. Include=msdv.inf
  57. FeatureScore=40
  58. CopyFiles=SynthVid.Miniport, SynthVid.Display
  59. AddReg = SynthVid_SoftwareDeviceSettings
  60. DelReg = SynthVid_RemoveDeviceSettings
  61.  
  62. [SynthVid.GeneralConfigData]
  63. MaximumDeviceMemoryConfiguration=128
  64.  
  65. [SynthVid.SoftwareSettings]
  66. AddReg = SynthVid_SoftwareDeviceSettings
  67. DelReg = SynthVid_RemoveDeviceSettings
  68.  
  69. ;
  70. ; File sections
  71. ;
  72.  
  73. [SourceDisksNames]
  74. 1 = %DiskId1%,,,""
  75.  
  76. [SourceDisksFiles]
  77. VMBusVideoM.sys = 1,,
  78. VMBusVideoD.dll = 1,,
  79.  
  80. [SynthVid.Miniport]
  81. VMBusVideoM.sys
  82.  
  83. [SynthVid.Display]
  84. VMBusVideoD.dll
  85.  
  86. ;
  87. ; Service Installation
  88. ;
  89.  
  90.  
  91. [SynthVid.Services]
  92. AddService = SynthVid, 0x00000002, SynthVid_Service_Inst
  93.  
  94. ;
  95. ; Service Installation Section
  96. ;
  97.  
  98. [SynthVid_Service_Inst]
  99. ServiceType    = 1                  ; SERVICE_KERNEL_DRIVER
  100. StartType      = 3                  ; SERVICE_DEMAND_START
  101. ErrorControl   = 0                  ; SERVICE_ERROR_IGNORE
  102. LoadOrderGroup = Video
  103. ServiceBinary  = %12%\VMBusVideoM.sys
  104.  
  105.  
  106. ;
  107. ; Registry Entries
  108. ;
  109.  
  110.  
  111. [SynthVid_SoftwareDeviceSettings]
  112. HKR,, InstalledDisplayDrivers,     %REG_MULTI_SZ%, VMBusVideoD
  113. HKR,, VgaCompatible,               %REG_DWORD%,    0
  114. HKR,, Acceleration.Level,          %REG_DWORD%,    0
  115.  
  116. [SynthVid_RemoveDeviceSettings]
  117. HKR,, VgaCompatible
  118. HKR,, InstalledDisplayDrivers
  119. HKR,, CapabilityOverride
  120. HKR,, Acceleration.Level
  121.  
  122. ;
  123. ; Uninstallation sections
  124. ;
  125.  
  126. [DefaultUninstall.Services]
  127. DelService = SynthVid,0x00000200
  128.  
  129. [DefaultUninstall]
  130. DelFiles = SynthVid.Miniport
  131. DelFiles = SynthVid.Display
  132.  
  133. ;
  134. ; String Section
  135. ;
  136.  
  137. [Strings]
  138.  
  139. ;
  140. ; Non-Localizable Strings
  141. ;
  142.  
  143. REG_SZ         = 0x00000000
  144. REG_MULTI_SZ   = 0x00010000
  145. REG_EXPAND_SZ  = 0x00020000
  146. REG_BINARY     = 0x00000001
  147. REG_DWORD      = 0x00010001
  148. SERVICEROOT    = "System\CurrentControlSet\Services"
  149.  
  150. ;
  151. ; Localizable Strings
  152. ;
  153.  
  154. DiskId1             = "Microsoft VMBus Video Device Installation Disk #1"
  155. MSFT                = "Microsoft"
  156. StdMfg              = "Microsoft"
  157. SynthVid.DeviceDesc = "Microsoft VMBus Video Device"
  158.  
  159.