OS: Windows 7
假設:
原來的使用者目錄:c:\Users\myTestUser
新的使用者目錄:d:\Profile
- 以本機或域的管理員帳號登入系統
- 打開 Command Prompt (Win+R -> cmd )
- 執行以下指令複製使用都資料到新目錄
robocopy c:\Users\myTestUser d:\Profile /B /E /COPYALL /XJ
- 把原來的使用都目錄改名(e.g. c:\Users\myTestUser => c:\Users\myTestUser_ )
- 執行以下指令建立連結把原來的目錄連結到新目錄
mklink /j c:\Users\myTestUser d:\Profile