Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Add more disks to a Storage Pool
May 20, 2015
Q. How do I add more disks to a Storage Pool?
A. If you have an existing Storage Pool and want to add additional disks, use the following PowerShell. It automatically adds all poolable disks available.
Add-PhysicalDisk -PhysicalDisks (Get-StorageSubSystem -Name savtstfcspcdir.savilltech.net | Get-PhysicalDisk |? CanPool -ne $false) -StoragePoolFriendlyName StorSpaceDirectPool
You May Also Like