标签:储存池
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调整
本文出自 “宁宁的技术日志” 博客,请务必保留此出处http://yutang.blog.51cto.com/9977138/1733037
标签:储存池
原文地址:http://yutang.blog.51cto.com/9977138/1733037