
Originally Posted by
aalryn
just remember to switch your download, documents, pictures, and video links to a different drive
Code:
xcopy /E /H /O /X /Y /I C:\Users D:\Users
rmdir /S /Q C:\Users
rmdir "C:\Documents and Settings"
mklink /J C:\Users D:\Users
mklink /J "C:\Documents and Settings" D:\Users
doing this will erase the special icons of these folders, but it's the fastest way to do this under vista/7. i've read robocopy will preserve the icons, but don't know the correct syntax
in english:
1) copy data from c:\users to d:\users
2) remove c:\users
3) remove c:\Documents and Settings (this is just a link to c:\users)
4) recreate c:\users as a redirect link to d:\users
5) recreate c:\Documents and Settings as a redirect link to d:\users