What's the best way to move c:\users to d:\users under vista/W7
Posted
by Scott
on Server Fault
See other posts from Server Fault
or by Scott
Published on 2009-05-14T13:57:10Z
Indexed on
2010/04/22
2:34 UTC
Read the original article
Hit count: 508
I just installed Windows 7 RC1 and want to move c:\users to d:\users.
What's the best way to do this?
Due to the fact that Windows 7 creates a reserved partition that is mounted as C: in the recovery console, I had to use the following commands
robocopy /mir /xj D:\Users E:\Users
mklink D:\Users D:\Users /j
Both D's in the mklink command are correct. When the system reboots, the drive that was D in the recovery console becomes the C drive.
© Server Fault or respective owner