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

  1. ;
  2. ; Copyright (c) Microsoft Corporation.  All rights reserved.
  3. ;
  4.  
  5. [Version]
  6. Signature   = "$WINDOWS NT$"
  7. Class       = System
  8. ClassGuid   = {4D36E97D-E325-11CE-BFC1-08002BE10318}
  9. Provider    = %MSFT%
  10. DriverVer=06/21/2006,6.0.6001.18000
  11.  
  12. [Manufacturer]
  13. %MSFT% = Microsoft,NTx86
  14.  
  15. [Microsoft]
  16. %Msdsm% = Msdsm_Install, Root\MSDSM
  17.  
  18. [Microsoft.NTx86]
  19. %Msdsm% = Msdsm_Install, Root\MSDSM
  20.  
  21. [DestinationDirs]
  22. DefaultDestDir = 12         ; system32\drivers
  23.  
  24. [SourceDisksNames]
  25. 3426=windows cd
  26.  
  27. [SourceDisksFiles]
  28. msdsm.sys               = 3426
  29.  
  30. ;
  31. ; Multi-Path Device-Specific Module
  32. ;
  33.  
  34. [Msdsm_Install]
  35. Copyfiles = Msdsm_Copyfiles
  36.  
  37. [Msdsm_Copyfiles]
  38. msdsm.sys,,,0x100
  39.  
  40. [Msdsm_Install.Services]
  41. AddService = msdsm, %SPSVCINST_ASSOCSERVICE%, Msdsm_Service
  42.  
  43. [Msdsm_Service]
  44. DisplayName    = %Msdsm%
  45. ServiceType    = %SERVICE_KERNEL_DRIVER%
  46. StartType      = %SERVICE_BOOT_START%
  47. ErrorControl   = %SERVICE_ERROR_NORMAL%
  48. ServiceBinary  = %12%\msdsm.sys
  49. LoadOrderGroup = "System Bus Extender"
  50. AddReg         = Msdsm_Addreg
  51.  
  52. [Msdsm_Addreg]
  53. HKR, Parameters, DsmSupportedDeviceList, %REG_MULTI_SZ%,\
  54. "Vendor 8Product       16"
  55.  
  56. ;
  57. ; The following cannot be grouped (as above)
  58. ;
  59.  
  60. HKLM, SYSTEM\CurrentControlSet\Control\MPDEV, MPIOSupportedDeviceList, %REG_MULTI_SZ_APPEND%, "Vendor 8Product       16"
  61.  
  62. ;
  63. ; Uninstall Section
  64. ;
  65.  
  66. [DefaultUninstall]
  67. DelReg = Msdsm_Delreg
  68.  
  69. [DefaultUninstall.Services]
  70. DelService = msdsm
  71.  
  72. [Msdsm_Delreg]
  73. HKLM, SYSTEM\CurrentControlSet\Control\MPDEV, MPIOSupportedDeviceList, %REG_MULTI_SZ_DELETE%, "Vendor 8Product       16"
  74.  
  75.  
  76. [Strings]
  77. ; localizable
  78. MSFT            = "Microsoft"
  79. Msdsm           = "Microsoft Multi-Path Device Specific Module"
  80.  
  81. ;
  82. ; Handy macro substitutions (non-localizable)
  83. ;
  84.  
  85. SERVICE_KERNEL_DRIVER  = 1
  86.  
  87. SERVICE_BOOT_START     = 0
  88. SERVICE_SYSTEM_START   = 1
  89. SERVICE_DEMAND_START   = 3
  90.  
  91. SERVICE_ERROR_IGNORE   = 0
  92. SERVICE_ERROR_NORMAL   = 1
  93. SERVICE_ERROR_CRITICAL = 3
  94.  
  95. SPSVCINST_ASSOCSERVICE = 2
  96.  
  97. REG_MULTI_SZ           = 0x00010000
  98. REG_MULTI_SZ_APPEND    = 0x00010008
  99. REG_MULTI_SZ_DELETE    = 0x00018002
  100. REG_EXPAND_SZ          = 0x00020000
  101. REG_DWORD              = 0x00010001
  102. REG_BINARY_NOCLOBBER   = 0x00030003
  103.  
  104.