How do you move your profile folder in Windows XP?

3

Is it possible to move completely you profile folder in Windows XP (Pro) to a new location?

I'm talking about %USERPROFILE%, not the My Documents folder.

guillermooo

Posted 2009-07-16T14:34:50.563

Reputation: 2 093

Answers

2

There are many places on the Internet with instructions. I dabbled a little bit with this sort of stuff once upon a time and ended up causing myself more grief than good.

Scott

Posted 2009-07-16T14:34:50.563

Reputation: 1 143

2

Log in as an admin and using a profile other than the one you want to copy. Go to System Properties (Ctrl-Break), Advanced tab, then click the Settings button in the User Profiles section. From there you can copy profiles and set the Default User profile (to be inherited by all new profiles).

My memory is too rusty to convey all caveats and limitations, but I have used this method extensively and it works very well. I think this should get you going down the right road. HTH.

theog

Posted 2009-07-16T14:34:50.563

Reputation: 181

1

You can use directory junctions/hard links (available in Windows since Windows 2000) to do this. There are a few gotchas you need to watch out for (especially if you move it to a new physical drive, as permissions do not always propagate across junctions like that), but it can be done - and if done carefully, it does work very nicely and totally transparently. (I use it myself, as you might have guessed.)

Basically, you need to log on under a different user account (since you can't move the one you're currently using!) and move your profile folder to it's new location, and then (from a command prompt) use this sort of command:

mklink /J C:\Documents and Settings\UserName D:\DestinationDirectory

Be sure to double check afterwards that if you browse to C:\Documents and Settings\UserName that you end up in your DestinationDirectory. Assuming you copied ALL the files (including hidden and system files) you should be all set to log back on using your original account.

Vista actually uses this same sort of thing to redirect access to "C:\Documents and Settings" to "C:\Users" (to help programs that hard-code that path, rather than using the %USERPROFILE% environment variable).

The alternative method (if you can call it that) is to re-install Windows using an unattended setup script to set the location for your user profile folder. Kind of draconian, I know, but at least that method is "officially" blessed by Microsoft.

Keithius

Posted 2009-07-16T14:34:50.563

Reputation: 411

I've heard about the unattended installation method, but how'd you do that? – guillermooo – 2009-07-16T20:41:22.830

It involves setting up an "answers" file that has all the choices you make during Windows setup, along with some other customized settings. I actually don't know the exact steps to do it; I know that it is rather complicated and involved... but the exact steps are pretty easy to come by - just google for "windows unattended setup" – Keithius – 2009-07-17T17:13:01.670

0

You can use the User State Migration Tool.

JP Alioto

Posted 2009-07-16T14:34:50.563

Reputation: 6 278

0

Use this software:

http://download.cnet.com/ForensiT-User-Profile-Wizard/3000-2094_4-10189551.html

It is called Profile wizard. I have never had a problem with it and all the profile migrations have worked well.

Molex

Posted 2009-07-16T14:34:50.563

Reputation: 304