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

  1. ; storflt.inf
  2. ;
  3. ; Installation inf for the Disk Performance Monitor Filter driver [ DDK Sample ]
  4. ;
  5. ; Copyright (c) Microsoft Corporation
  6. ;
  7.  
  8. [Version]
  9. Signature = "$Windows NT$"
  10. Class = System
  11. ClassGuid = {4d36e97d-e325-11ce-bfc1-08002be10318}
  12. ;CatalogFile=vmdrivers.cat
  13.  
  14. Provider  = %msft%
  15. DriverVer=06/21/2006,6.0.6001.18000
  16.  
  17.  
  18. ;
  19. ; General installation section
  20. ;
  21.  
  22. [Manufacturer]
  23. %msft%=Standard,NTamd64
  24.  
  25. [Standard]
  26. %service_desc%=DefaultInstall, vmbus\{32412632-86cb-44a2-9b5c-50d1417354f5}
  27.  
  28. [Standard.NTamd64]
  29. %service_desc%=DefaultInstall, vmbus\{32412632-86cb-44a2-9b5c-50d1417354f5}
  30.  
  31. [DefaultInstall.NT]
  32. CopyFiles = storflt.CopyFiles
  33. Addreg    = storflt.AddReg
  34.  
  35. [DestinationDirs]
  36. DefaultDestDir = 12
  37.  
  38. [storflt.CopyFiles]
  39. storflt.sys
  40.  
  41. [storflt.AddReg]
  42. HKLM, System\CurrentControlSet\Control\Class\{4d36e967-e325-11ce-bfc1-08002be10318}, LowerFilters, 0x00010008, storflt
  43. HKLM, System\CurrentControlSet\Services\storflt,Enabled, 0x00010001, 1
  44.  
  45. ;
  46. ; Coinstaller section
  47. ;
  48.  
  49. [DestinationDirs]
  50. CoInstaller_CopyFiles = 11
  51.  
  52. [CoInstaller_CopyFiles]
  53. VmdCoinstall.dll
  54.  
  55. [CoInstaller_AddReg]
  56. HKR,,CoInstallers32,0x00010000, "VmdCoinstall.dll,VmdCoinstaller"
  57.  
  58.  
  59. ;
  60. ; Service installation section
  61. ;
  62.  
  63. [DefaultInstall.NT.Services]
  64. AddService = ,%SPSVCINST_ASSOCSERVICE%  ; null service install
  65. AddService = storflt, , storflt.Service.Install, storflt.EventLog.Install
  66.  
  67. [DefaultInstall.NT.CoInstallers]
  68. AddReg = CoInstaller_AddReg
  69. CopyFiles = CoInstaller_CopyFiles
  70.  
  71. [storflt.Service.Install]
  72. DisplayName    = %service_desc%
  73. ServiceType    = 1
  74. StartType      = 0
  75. ErrorControl   = 1
  76. ServiceBinary  = %12%\storflt.sys
  77. LoadOrderGroup = Extended Base
  78.  
  79. [storflt.EventLog.Install]
  80. AddReg         = storflt.EventLog.AddReg
  81.  
  82. [storflt.EventLog.AddReg]
  83. HKR,,EventMessageFile,0x00020000,"%%SystemRoot%%\System32\IoLogMsg.dll;%%SystemRoot%%\System32\drivers\storflt.sys"
  84. HKR,,TypesSupported,0x00010001,7
  85.  
  86. [SourceDisksFiles]
  87. storflt.sys=1
  88. VmdCoinstall.dll=1
  89.  
  90. [SourceDisksNames]
  91. 1=%DiskId%
  92.  
  93.  
  94. ;
  95. ; Uninstallation sections
  96. ;
  97.  
  98. [DefaultUninstall.Services]
  99. DelService = storflt,0x00000200
  100.  
  101. [DefaultUninstall]
  102. DelFiles = storflt.CopyFiles
  103. DelReg = storflt.DelReg
  104.  
  105. [storflt.DelReg]
  106. HKLM, System\CurrentControlSet\Control\Class\{4d36e967-e325-11ce-bfc1-08002be10318}, LowerFilters, 0x00018002, storflt
  107.  
  108.  
  109. ;
  110. ; Localizable Strings
  111. ;
  112.  
  113. [Strings]
  114. SPSVCINST_ASSOCSERVICE = 0x00000002
  115. msft         = "Microsoft Corporation"
  116. service_desc = "Disk VMBUS Acceleration Filter Driver"
  117. DiskId       = "Microsoft Corp. Installation Disk #1 "
  118.  
  119.