-1

I have two hard drives C: solid state with the operating system installed and D: for back up. I would like to move my User profile from C: to D: to free up space on C:
Can anyone tell me how to do this?

1 Answers1

0

I think... you can move the entire Users folder from the C: drive to the D: drive, and create a 'symbolic link'.

I suggest taking a system restore image before hand.

To copy the files...

robocopy /copyall /mir /xj C:\Users D:\Users

To create the link...

mklink /D /J C:\Users D:\Users
EdG
  • 614
  • 1
  • 5
  • 17