본문 바로가기

Memo

Moving Win 7 User Directory to a 2nd HDD


http://forums.whirlpool.net.au/forum-replies-archive.cfm/1309345.html

 

Moving User Profiles:
During Windows 7 install, you will be prompted to enter your user name. At this point, DO NOT ENTER anything yet. Bring up a command prompt (Shift – F10).

 

In the command prompt, copy the user directory from your OS HDD (C: I assume) to your storage drive (D: I assume). Then delete the original directory.

 

robocopy "C:\Users" "D:\Users" /E /COPYALL /XJ
rmdir "C:\users" /S /Q

 

Then make a symbolic link.

mklink /J "C:\Users" "D:\Users"