0

I have two drives in my Hyper-V 2012 R2 Core server. C drive is a boot drive and C:\RAID is a mount point to a RAID array. I want to change C:\RAID to be D:

Should I update my configs and storage paths in powershell before I change the mount points or after? What would be the best method to do it?

Mark Allison
  • 2,188
  • 7
  • 26
  • 45

1 Answers1

0

I want to change C:\RAID to be D:

If you just need to rename "RAID" to "D" , it may work .

ren c:\RAID D

"D:" won't work , because folder name can not contain character ":" .

Windows Mount Point Folder

You can use "diskpart" to create a new mount point (d:\test) for volume (7), then remove the old mount point (c:\test) .

md d:\test

diskpart

select volume 7

assign mount="d:\test"

remove mount="c:\test"
Elton Ji - MSFT
  • 281
  • 1
  • 3