Can I use the PowerShell command Resize-Partition
within a RAID 1 volume to move space between two partitions (the size of the volume itself is not changing) without any adverse side effects? If not, is there some other way to do this without wiping the volume out and starting over from scratch?
Details
I have two Windows 2012R2 servers each with two hard drives in a RAID 1 configuration. The RAID volumes are already using the full disk space available; however, they have two partitions: C for system files and D for shared files. What I would like to do is use the PowerShell command Resize-Partition
to remove some extra, unneeded space from the C partition and then add it to the D partition. That said, I have been unable to find any specific documentation indicating that I can do this within a RAID 1 volume. It appears that I should be able to; however, since these are production servers and I have no way to test this myself, I am extremely reluctant to try it and risk having to restore the server from a backup.
(As a note, those in charge are unwilling to spend money to add additional storage that would let me move the shared files off of these volumes. So here I am, doing my best to squeeze out as much space as possible.)