鸦鸦 发表于 2018-6-20 11:19:10

物理机上搭建2012R2储存池

  I3-6100
  B150
  8G内存
  HDD 2T
  SSD 120
  安装windows2012 r2 DC
  创建储存池遇到了系统识别为未知的问题
  一番搜寻后在微软官网找到解决方案
  PS C:\Windows\system32> $disks = Get-PhysicalDisk |? {$_.CanPool -eq $true}
  PS C:\Windows\system32> New-StoragePool -StorageSubSystemFriendlyName *Spaces* -FriendlyName TieredPool -PhysicalDisks $disks
  FriendlyName                                          OperationalStatus                                       HealthStatus                                           IsPrimordial                                           IsReadOnly
  ------------                                          -----------------                                       ------------                                           ------------                                           ----------
  TieredPool                                              OK                                                      Healthy                                                False                                                False
  PS C:\Windows\system32> Get-StoragePool -FriendlyName TieredPool | Get-PhysicalDisk | Select FriendlyName, MediaType
  FriendlyName                                                                                                                               MediaType
  ------------                                                                                                                               ---------
  PhysicalDisk2                                                                                                                              UnSpecified
  PhysicalDisk3                                                                                                                              SSD
  PS C:\Windows\system32> Set-PhysicalDisk -FriendlyName PhysicalDisk2 -MediaType HDD
  PS C:\Windows\system32> Get-StoragePool -FriendlyName TieredPool | Get-PhysicalDisk | Select FriendlyName, MediaType
  FriendlyName                                                                                                                               MediaType
  ------------                                                                                                                               ---------
  PhysicalDisk2                                                                                                                              HDD
  PhysicalDisk3                                                                                                                              SSD
  然后又遇到了自定义回写缓存需要用powershell调整
页: [1]
查看完整版本: 物理机上搭建2012R2储存池