Mover o perfil e os dados do programa
inicie a partir do DVD do Windows 7 e escolha reparar o Windows, abra o prompt de comando (CMD) e digite:
move the "Users" folder to the second partition by this command.
- ROBOCOPY "C: \ Usuários" "D: \ Usuários" / COPYALL / MIR / XJ.
move the "ProgramData" folder to the second partition by this command.
- ROBOCOPY "C: \ ProgramData" "D: \ ProgramData" / E / COPYALL / MIR / XJ.
delete the "Users" folder from C: partition.
- RMDIR "C: \ Usuários" / S / Q
make Junction link to Profile folder in second partition.
- MKLINK / J "C: \ Usuários" "D: \ Usuários"
delete C:\ProgramData (ignore any failed massage)
- RMDIR "C: \ ProgramData" / S / Q
open the Registry Editor and change the profile values to the new path.
- REGEDIT.
navigate to this path: HKEY_LOCAL_MACHINE -SOFTWARE -Microsoft -Windows NT -CurrentVersion -ProfileList and change the values to the new path.
after windows restart open CMD as Administrator and delete C:\ProgramData
- RMDIR "C: \ ProgramData" / S / Q
make Junction link to ProgramData folder in second partition.
- MKLINK / J "C: \ ProgramData" "D: \ ProgramData"