Microsoft Windows Vista Community Forums - Vistaheads
Recommended Download - Clean, repair and optimize your system



Welcome to the Microsoft Windows Vista Community Forums - Vistaheads, YOUR Largest Resource for Windows Vista related information.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so , join our community today!

If you have any problems with the registration process or your account login, please contact us.

Driver Scanner 2009 - Free Scan Now

How to move "Program Files" to another drive/partition

microsoft.public.windows.vista.installation setup




Recommended Fix - Fix Vista Errors and Optimize Performance

Click On Your Flag for Translation
Simplified Chinese French Spanish Italian Portugeuse Japanese German Dutch
Driver Scanner 2009 - Free Scan Now
Reply
  #1 (permalink)  
Old 12-21-2006
=?Utf-8?B?UHVk?=
 

Posts: n/a
How to move "Program Files" to another drive/partition
The way I have had my past several machines configured is to have a number of
different drives/partitions configured eg 'System' (C, 'Programs (P,
Files (F which contains 'My Documents', downloads, Setup and other files etc

On XP this was achieved by the brute force method - boot to 'Safe Mode',
move the 'Program Files' folder from C: to P: and then edit the registry,
changing every occurence of 'C:\Pro' to 'P:\Pro'. After this and rebooting
the machine worked fine and all new programs installed to the new drive.

I've recently downloaded 'Vista Ultimate' and have attempted to do the same
as formerly on XP as detailed, but after rebooting many programs will not
work, and running a Setup file from CD throws up an error.

Is there a means by which this can be achieved as it does make backup of the
System drive (C somewhat quicker.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 12-21-2006
Bill Frisbee
 

Posts: n/a
Re: How to move "Program Files" to another drive/partition
You can move the profiles via Local Policy via the MMC. It takes a little
work, but it does indeed work.


Bill F.



"Pud" <Pud@discussions.microsoft.com> wrote in message
news:AE458B70-D2F1-4CA9-9C68-A33341722057@microsoft.com...
> The way I have had my past several machines configured is to have a number
> of
> different drives/partitions configured eg 'System' (C, 'Programs (P,
> Files (F which contains 'My Documents', downloads, Setup and other files
> etc
>
> On XP this was achieved by the brute force method - boot to 'Safe Mode',
> move the 'Program Files' folder from C: to P: and then edit the registry,
> changing every occurence of 'C:\Pro' to 'P:\Pro'. After this and
> rebooting
> the machine worked fine and all new programs installed to the new drive.
>
> I've recently downloaded 'Vista Ultimate' and have attempted to do the
> same
> as formerly on XP as detailed, but after rebooting many programs will not
> work, and running a Setup file from CD throws up an error.
>
> Is there a means by which this can be achieved as it does make backup of
> the
> System drive (C somewhat quicker.
>


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 05-30-2008
 

Join Date: May 2008
Posts: 2
reinux is on a distinguished road
Thanks: 0
Thanked 0 Times in 0 Posts
Really easy, robust way to move the Program Files and Users folders
Hey people, I figured out a good way to do this.

Start the computer with the Vista installer CD and run the system recovery tool -- specifically, the command prompt. Windows will have some files in the Users and Program Files folders locked, so it has to be done from another OS instance.

First we xcopy the Users and Program Files folders to the destination drive; then we rename (or remove) the original folders and replace them with junctions (EDIT: use symbolic links instead!) pointing to the copied folders. For all intents and purposes, Vista becomes oblivious to the fact that anything had moved. You don't have to tinker with the registry.

I think this trick would probably work for Windows XP as well.

I've made a .bat script that does this; you can either use this or punch everything in in the command prompt yourself. %1 is assumed to be the source drive and %2 is assumed to be the destination drive. Be sure to specify these parameters before you run the script.

Code:
%2 cd \ mkdir "Program Files" cd "Program Files" %1 xcopy "%1\Program Files" %2 /s /h rename "Program Files" "Program Files_" mklink /d "Program Files" "%2\Program Files" %2 cd \ mkdir "Users" cd "Users" %1 xcopy "%1\Users" %2 /s /h rename "Users" "Users_" mklink /d "Users" "%2\Users"
Sample usage would be as follows:
Code:
movefolders.bat c: b:
Hope this helps,

Rei


Edit: Looks like this causes some complications with certain updates. The workaround here: Vista: Windows Update Error 80070011 Semi-Automated Fix - Moblog[csuccess]=moderate

Edit 2: Don't use junctions; use symbolic links instead. That seems to work flawlessly. When you call mklink, use /d instead of /j.

Edit 3: Nevermind, that got me a little further but still doesn't work completely. It might be better to move just the Users folder and leave the Program Files folder as it is; just install new apps to the other volume.

Edit 4: I ended up just copying the Program Files folder back to let the updates run.

Last edited by reinux : 06-01-2008 at 22:22. Reason: Switched to using symbolic links
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 05-30-2008
Mick Murphy
 

Posts: n/a
Re: How to move "Program Files" to another drive/partition
WHY?
--
Mick Murphy - Qld - Australia


"reinux" wrote:

>
> Hey people, I figured out a good way to do this.
>
> Start the computer with the Vista installer CD and run the system
> recovery tool -- specifically, the command prompt. Windows will have
> some files in the Users and Program Files folders locked, so it has to
> be done from another OS instance.
>
> First we xcopy the Users and Program Files folders to the destination
> drive; then we rename (or remove) the original folders and replace them
> with 'junctions' (http://en.wikipedia.org/wiki/NTFS_junction_point)
> pointing to the copied folders. For all intents and purposes, Vista
> becomes oblivious to the fact that anything had moved. You don't have to
> tinker with the registry.
>
> I think this trick would probably work for Windows XP as well.
>
> I've made a .bat script that does this; you can either use this or
> punch everything in in the command prompt yourself. %1 is assumed to be
> the source drive and %2 is assumed to be the destination drive. Be sure
> to specify these parameters before you run the script.
>
>
> Code:
> --------------------
>
> %2
> cd \
> mkdir "Program Files"
> cd "Program Files"
> %1
> xcopy "%1\Program Files" %2 /s /h
> rename "Program Files" "Program Files_"
> mklink /j "Program Files" "%2\Program Files"
>
> %2
> cd \
> mkdir "Users"
> cd "Users"
> %1
> xcopy "%1\Users" %2 /s /h
> rename "Users" "Users_"
> mklink /j "Users" "%2\Users"
>
> --------------------
>
>
> Sample usage would be as follows:
>
> Code:
> --------------------
> movefolders.bat c: b:
> --------------------
>
>
> Hope this helps,
>
> Rei
>
>
> --
> reinux
> Posted via http://www.vistaheads.com
>
>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 05-30-2008
 

Join Date: May 2008
Posts: 2
reinux is on a distinguished road
Thanks: 0
Thanked 0 Times in 0 Posts
Because I want my Program Files and User profiles on my software RAID. Windows can't be installed to a software RAID.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
"copy to folder" and "move to folder" buttons =?Utf-8?B?b3pibG9rZTE5NTU=?= microsoft.public.windows.vista.general 5 03-01-2007 05:13
Is it possible to disable "Calculating time to copy/move file..." Baron microsoft.public.windows.vista.general 23 02-28-2007 23:22
How to modify "Program Files" from the command prompt with UAC on? Steve Maser microsoft.public.windows.vista.general 3 02-28-2007 23:08
Can't assign partition letter, get error "directory not empty" =?Utf-8?B?Qy4gQnJpdHRvbg==?= microsoft.public.windows.vista.general 3 02-18-2007 16:50
WM5 Sync with Vista "Windows Calender", "Contacts", and "Mail" =?Utf-8?B?VG9ueQ==?= microsoft.public.windows.vista.general 1 02-17-2007 01:20




All times are GMT +1. The time now is 20:27.




Driver Scanner - Free Scan Now

Vistaheads.com is part of the Heads Network. See also XPHeads.com and Win7Heads.com.


Funny Commercials to make you laugh :-)

Design by Vjacheslav Trushkin for phpBBStyles.com.
Powered by vBulletin® Version 3.6.7
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119