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

  1. ;
  2. ; storvsc .INF file
  3. ;
  4.  
  5. [Version]
  6. signature="$WINDOWS NT$"
  7.  
  8. ;Class = HDC 
  9. ;ClassGuid = {4d36e96a-e325-11ce-bfc1-08002be10318}
  10.  
  11. Class=SCSIAdapter
  12. ClassGuid={4d36e97b-e325-11ce-bfc1-08002be10318} 
  13. Provider=%Mfg%
  14.  
  15. ;CatalogFile=vmdrivers.cat
  16. DriverVer=06/21/2006,6.0.6001.18000
  17.  
  18. [SourceDisksNames]
  19. 1=%DiskId%
  20.  
  21. [SourceDisksFiles]
  22. storvsc.sys = 1
  23. ;iscsiprt.sys = 1
  24. storport.sys = 1
  25.  
  26. [DestinationDirs]
  27. DefaultDestDir = 12 ; system32\drivers
  28.  
  29. [Manufacturer]
  30. %Mfg%=Microsoft,NTamd64
  31.  
  32. [Microsoft]
  33. %DeviceDesc% = storvscDriveInstall, VMBUS\{ba6163d9-04a1-4d29-b605-72e2ffb1dc7f}
  34.  
  35. [Microsoft.NTamd64]
  36. %DeviceDesc% = storvscDriveInstall, VMBUS\{ba6163d9-04a1-4d29-b605-72e2ffb1dc7f}
  37.  
  38. [storvscDriveInstall]
  39. CopyFiles=SYS.CopyList
  40. AddReg=storvsc.RegistryKeys
  41.  
  42. [storvsc.RegistryKeys]
  43. HKLM, System\CurrentControlSet\Services\storvsc, BusType, 0x00010001, 1
  44.  
  45. [SYS.CopyList]
  46. storvsc.sys
  47. ;iscsiprt.sys 
  48. ;storport.sys
  49.  
  50. [storvscDriveInstall.Services]
  51. AddService = "storvsc",%SPSVCINST_ASSOCSERVICE%,storvsc_Service_Inst
  52.  
  53. [storvsc_Service_Inst]
  54. ServiceType   = %SERVICE_KERNEL_DRIVER%
  55. StartType     = %SERVICE_DEMAND_START%
  56. ErrorControl  = %SERVICE_ERROR_NORMAL%
  57. LoadOrderGroup = "Base"
  58. ServiceBinary = %12%\storvsc.sys 
  59.  
  60. [Strings]
  61. Mfg = "Microsoft."
  62. DeviceDesc = "storvsc miniport"
  63. DiskId = "Install disk (1)"
  64. ClassName = "Virtual Adapter"
  65.  
  66. ;
  67. ; The "standard" defines
  68. ;
  69. SPSVCINST_TAGTOFRONT               = 0x00000001
  70. SPSVCINST_ASSOCSERVICE             = 0x00000002
  71. SPSVCINST_DELETEEVENTLOGENTRY      = 0x00000004
  72. SPSVCINST_NOCLOBBER_DISPLAYNAME    = 0x00000008
  73. SPSVCINST_NOCLOBBER_STARTTYPE      = 0x00000010
  74. SPSVCINST_NOCLOBBER_ERRORCONTROL   = 0x00000020
  75. SPSVCINST_NOCLOBBER_LOADORDERGROUP = 0x00000040
  76. SPSVCINST_NOCLOBBER_DEPENDENCIES   = 0x00000080
  77. SPSVCINST_NOCLOBBER_DESCRIPTION    = 0x00000100
  78.  
  79. COPYFLG_WARN_IF_SKIP         = 0x00000001
  80. COPYFLG_NOSKIP               = 0x00000002
  81. COPYFLG_NOVERSIONCHECK       = 0x00000004
  82. COPYFLG_FORCE_FILE_IN_USE    = 0x00000008
  83. COPYFLG_NO_OVERWRITE         = 0x00000010
  84. COPYFLG_NO_VERSION_DIALOG    = 0x00000020
  85. COPYFLG_OVERWRITE_OLDER_ONLY = 0x00000040
  86. COPYFLG_REPLACEONLY          = 0x00000400
  87. COPYFLG_REPLACE_BOOT_FILE    = 0x00001000
  88. COPYFLG_NOPRUNE              = 0x00002000
  89.  
  90. SERVICE_KERNEL_DRIVER      = 0x00000001
  91. SERVICE_FILE_SYSTEM_DRIVER = 0x00000002
  92.  
  93. SERVICE_BOOT_START   = 0x00000000
  94. SERVICE_SYSTEM_START = 0x00000001
  95. SERVICE_AUTO_START   = 0x00000002
  96. SERVICE_DEMAND_START = 0x00000003
  97. SERVICE_DISABLED     = 0x00000004
  98.  
  99. SERVICE_ERROR_IGNORE   = 0x00000000
  100. SERVICE_ERROR_NORMAL   = 0x00000001
  101. SERVICE_ERROR_SEVERE   = 0x00000002
  102. SERVICE_ERROR_CRITICAL = 0x00000003
  103.  
  104.