I was trying to relocate my user profiles, so that they are not affected by any problems occuring in the drive on which the operating system is stored. I've managed to move user profiles using Robocopy and then used junction points:
Robocopy C:\Users\user1 E:\Directory\user1 /E /R:0 /DCOPY:T
mklink /J C:\Users\user1 E:\Directory\user1
If, for some reason, I had to reformat my C:\ drive, would that affect the junction points created? If so, what do you recommend I do?