Adding journal drives to Windows Storage Spaces 2012

After reading several pages including this great writeup on improving windows storage spaces speeds, I found myself needing to add some SSD journal drives after the fact (after the spaces had already been created). For anyone else looking to do the same, here’s the powershell commands needed to do so.

1. Get the ‘friendly name’ of the disks you’ll be using for journaling, they should be something like ‘PhysicalDisk123’

Get-PhysicalDisk

2. Add the new disks to the storage pool. Under server manager, under file and storage services, under storage pools, right click on the storage pool you want to add journaled disks too and select ‘add physical disk’

3. Set the new disks as journaled in the pool, in powershell enter the below command, replacing the friendlyname with the one you got earlier, do this one disk at a time.

Set-PhysicalDisk –Usage Journal –FriendlyName PhysicalDisk1

4. Set the new disks as SSD if they are not already:

Set-PhysicalDisk –MediaType SSD –FriendlyName PhysicalDisk1

5. Done! A reboot is recommended before using your new journaled disks in the pool.


Posted

in

by

Tags:

Comments

3 responses to “Adding journal drives to Windows Storage Spaces 2012”

  1. Mark Torng Avatar
    Mark Torng

    If this isn’t working for you, try something like specifying the storage pool first 😉

    Add-PhysicalDisk -StoragePoolFriendlyName “Storage Pool Name” -PhysicalDisks (Get-PhysicalDisk -FriendlyName PhysicalDisk##, PhysicalDisk##) -Usage Journal

    Thanks!

  2. […] Adding journal drives to Windows Storage Spaces 2012 […]

  3. […] Adding journal drives to Windows Storage Spaces 2012 […]

Leave a Reply

Your email address will not be published. Required fields are marked *