如何获取 IBM 服务器上的 raid 控制器品牌和型号?

如何获取 IBM 服务器上的 raid 控制器品牌和型号?

我目前有一台装有 Windows Server 的 IBM IBM eserver xSeries 346,根据设备管理器显示,它有一个 IBM eserver xSeries 346 IBM ServerRaid 7k 控制器。我如何才能获得品牌和型号?以查看它支持多少个 raid。有人能告诉我如何获取此信息吗?

答案1

您可以使用 Powershell 在服务器上或远程执行此操作:

Get-WmiObject Win32_DiskDrive -ComputerName server01

Partitions : 4
DeviceID   : \\.\PHYSICALDRIVE0
Model      : DELL PERC 6/i SCSI Disk Device
Size       : 2097150289920
Caption    : DELL PERC 6/i SCSI Disk Device

Partitions : 1
DeviceID   : \\.\PHYSICALDRIVE1
Model      : DELL PERC 6/i SCSI Disk Device
Size       : 301045248000
Caption    : DELL PERC 6/i SCSI Disk Device

相关内容