<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Move the Public Folder in Windows Vista</title>
	<atom:link href="http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/</link>
	<description>Computer Help from your Friendly How-To Geek</description>
	<lastBuildDate>Sun, 08 Nov 2009 07:56:33 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Herculesvq</title>
		<link>http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/comment-page-1/#comment-78700</link>
		<dc:creator>Herculesvq</dc:creator>
		<pubDate>Sat, 31 Oct 2009 17:43:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/#comment-78700</guid>
		<description>SAFE WAY TO DO IT!!!
I don&#039;t like to mess around with registry keys. I think that all that is working in a high layer, and probably hard to know all the undocumented pointer to the Public folder. Instead I decide to change things at a lower layer, what it to do a symbolic link (soft link for Unix) that point to the folder in the drive that I whant it to be.
So here are the steps:
1. - Restart windows and push F8 to open the menu to start in SAFE MODE with Command Line Window. After entering you password you will see the command line window.

2. - Copy the Public folder to you destination folder: U:\Public

XCOPY C:\User\Public u:\Public /E /F /G /H /K /O /X /B

This will copy all files with all the ACL rights
 
3.- Create a backup folder:

MKDIR c:\Backup

4. - Move the Public folder to backup folder

MOVE c:\Users\Public c:\Backup\Public

5.- Create a symbolic link to the new destination

MKLINK /D c:\Users\Public u:\Public

6.- Restart windows un normal mode.

Now all the high layer pointer still are pointing to c:\Users\Public that is really a link to the new destination.</description>
		<content:encoded><![CDATA[<p>SAFE WAY TO DO IT!!!<br />
I don&#8217;t like to mess around with registry keys. I think that all that is working in a high layer, and probably hard to know all the undocumented pointer to the Public folder. Instead I decide to change things at a lower layer, what it to do a symbolic link (soft link for Unix) that point to the folder in the drive that I whant it to be.<br />
So here are the steps:<br />
1. &#8211; Restart windows and push F8 to open the menu to start in SAFE MODE with Command Line Window. After entering you password you will see the command line window.</p>
<p>2. &#8211; Copy the Public folder to you destination folder: U:\Public</p>
<p>XCOPY C:\User\Public u:\Public /E /F /G /H /K /O /X /B</p>
<p>This will copy all files with all the ACL rights</p>
<p>3.- Create a backup folder:</p>
<p>MKDIR c:\Backup</p>
<p>4. &#8211; Move the Public folder to backup folder</p>
<p>MOVE c:\Users\Public c:\Backup\Public</p>
<p>5.- Create a symbolic link to the new destination</p>
<p>MKLINK /D c:\Users\Public u:\Public</p>
<p>6.- Restart windows un normal mode.</p>
<p>Now all the high layer pointer still are pointing to c:\Users\Public that is really a link to the new destination.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GiSWiG</title>
		<link>http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/comment-page-1/#comment-74733</link>
		<dc:creator>GiSWiG</dc:creator>
		<pubDate>Tue, 28 Jul 2009 01:44:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/#comment-74733</guid>
		<description>Just another tip. Try this before changing reg key and rebooting

Open cmd and be sure to &#039;Run as Administrator&#039;

xcopy C:\Users\Public U:\UserData\Public /e /h /o

Copies all the files and folders with the proper permissions, which could be why users had problems. So here I created &#039;U:\UserData&#039; and this command created and copied all of the Public folder.</description>
		<content:encoded><![CDATA[<p>Just another tip. Try this before changing reg key and rebooting</p>
<p>Open cmd and be sure to &#8216;Run as Administrator&#8217;</p>
<p>xcopy C:\Users\Public U:\UserData\Public /e /h /o</p>
<p>Copies all the files and folders with the proper permissions, which could be why users had problems. So here I created &#8216;U:\UserData&#8217; and this command created and copied all of the Public folder.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reed</title>
		<link>http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/comment-page-1/#comment-73873</link>
		<dc:creator>Reed</dc:creator>
		<pubDate>Tue, 30 Jun 2009 23:14:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/#comment-73873</guid>
		<description>Great hack! Just tried it with Windows 7 RC and it works the same way as described here.

By the way. Instead of making hidden files visible and copying the Public folders with the explorer, I use Robocopy which is part of Windows since Vista. Just make sure you open a command window as administrator - it&#039;s not sufficient to start the command window as a user with admin rights, you have to right click cmd and choose to start as administrator! Then enter the following command according to the example above:

robocopy C:\Users\Public\ D:\Public /E /COPYALL /ZB /XJ 

Then you may be sure everything is copied and you don&#039;t miss anything after changing the path.

Have fun and bye!
Reed</description>
		<content:encoded><![CDATA[<p>Great hack! Just tried it with Windows 7 RC and it works the same way as described here.</p>
<p>By the way. Instead of making hidden files visible and copying the Public folders with the explorer, I use Robocopy which is part of Windows since Vista. Just make sure you open a command window as administrator &#8211; it&#8217;s not sufficient to start the command window as a user with admin rights, you have to right click cmd and choose to start as administrator! Then enter the following command according to the example above:</p>
<p>robocopy C:\Users\Public\ D:\Public /E /COPYALL /ZB /XJ </p>
<p>Then you may be sure everything is copied and you don&#8217;t miss anything after changing the path.</p>
<p>Have fun and bye!<br />
Reed</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dc</title>
		<link>http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/comment-page-1/#comment-71409</link>
		<dc:creator>dc</dc:creator>
		<pubDate>Mon, 04 May 2009 20:25:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/#comment-71409</guid>
		<description>Before you start investing serious time in pursuing this hack, consider the following:

While it isn&#039;t the most clean, create you own shared folders and don&#039;t bother with this hack. I started down the path of making the suggested changes, but one thing lead to hte next that points back to C:\USERS\PUBLIC - and &quot;no&quot; you can&#039;t simply create a link called &quot;Public&quot; that points to D:\PUBLIC  (that would be too easy). Just don&#039;t store too much stuff into public which fills up your default drive and instead create a share, like D_PUBLIC to store your big files.

Good luck!</description>
		<content:encoded><![CDATA[<p>Before you start investing serious time in pursuing this hack, consider the following:</p>
<p>While it isn&#8217;t the most clean, create you own shared folders and don&#8217;t bother with this hack. I started down the path of making the suggested changes, but one thing lead to hte next that points back to C:\USERS\PUBLIC &#8211; and &#8220;no&#8221; you can&#8217;t simply create a link called &#8220;Public&#8221; that points to D:\PUBLIC  (that would be too easy). Just don&#8217;t store too much stuff into public which fills up your default drive and instead create a share, like D_PUBLIC to store your big files.</p>
<p>Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Len</title>
		<link>http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/comment-page-1/#comment-70903</link>
		<dc:creator>Len</dc:creator>
		<pubDate>Sun, 26 Apr 2009 12:53:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/#comment-70903</guid>
		<description>I used the move /Public folders to new drive procedure.  I eventually got it.  So for those of you having difficulty...my demise.   I know I did not add a space afer s:Public; there is no way I put a space there; I could not tell a space was there.  BUT SOMEHOW I PUT A SPACE AFTER Public in my HKEY....\Profile list.   This left a space between folder and subfolders.   Example    &quot;/public /pictures: was bad,  instead of /public/pictures pointers like I needed.
Good Luck.  Works great now.</description>
		<content:encoded><![CDATA[<p>I used the move /Public folders to new drive procedure.  I eventually got it.  So for those of you having difficulty&#8230;my demise.   I know I did not add a space afer s:Public; there is no way I put a space there; I could not tell a space was there.  BUT SOMEHOW I PUT A SPACE AFTER Public in my HKEY&#8230;.\Profile list.   This left a space between folder and subfolders.   Example    &#8220;/public /pictures: was bad,  instead of /public/pictures pointers like I needed.<br />
Good Luck.  Works great now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/comment-page-1/#comment-68910</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Fri, 20 Mar 2009 20:15:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/#comment-68910</guid>
		<description>@Rich: That is because the File Sharing service is still pointing to the old directory, one way to fix this is:
1. Click the Start button.
2. Right click on Computer and click Manage.
3. Click Continue.
4. On the left double click &quot;Shared Folders&quot; and click &quot;Shares&quot;.
5. Double click the share named &quot;Public&quot;.
6. Under &quot;Folder Path&quot; put in the new Public directory path.
7. Click ok.
Now all the other computers will point to the new directory.</description>
		<content:encoded><![CDATA[<p>@Rich: That is because the File Sharing service is still pointing to the old directory, one way to fix this is:<br />
1. Click the Start button.<br />
2. Right click on Computer and click Manage.<br />
3. Click Continue.<br />
4. On the left double click &#8220;Shared Folders&#8221; and click &#8220;Shares&#8221;.<br />
5. Double click the share named &#8220;Public&#8221;.<br />
6. Under &#8220;Folder Path&#8221; put in the new Public directory path.<br />
7. Click ok.<br />
Now all the other computers will point to the new directory.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich</title>
		<link>http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/comment-page-1/#comment-68833</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Thu, 19 Mar 2009 13:28:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/#comment-68833</guid>
		<description>Surprise me...
All went well as could be hoped for on public move in Vista...
However, all (vista/xp/ dare i say mac) machines on my network still looking at  old c:\users\public directory. Locally it takes me to the new directory....</description>
		<content:encoded><![CDATA[<p>Surprise me&#8230;<br />
All went well as could be hoped for on public move in Vista&#8230;<br />
However, all (vista/xp/ dare i say mac) machines on my network still looking at  old c:\users\public directory. Locally it takes me to the new directory&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/comment-page-1/#comment-67653</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Thu, 26 Feb 2009 12:05:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/#comment-67653</guid>
		<description>Wow, I am amazed at the level of confusion around the Public folder.
The Public folder is just a new name for the &quot;C:\Documents and Settings\All Users&quot; directory in Windows 2000/XP and should never be changed without proper planning.
The same with the User Profile folder, &quot;C:\Documents and Settings\[UserName]&quot; in Windows XP and &quot;C:\Users\[UserName]&quot; in Windows Vista.
Microsoft included a very easy way to move the special folders like Public in Windows Vista.
The problem is that the user interface to set them has a few bugs like not working with User Account Control (UAC) when setting per-machine folders.
There is a way to change all the per-machine and per-user folders though and that way is to use the program &quot;Known Folders Browser&quot; ( http://weblogs.asp.net/kennykerr/archive/2006/11/02/Known-Folders-Browser-1.0-_2800_for-Vista-and-Beyond_2900_.aspx ) to set them.
The program &quot;Known Folders Browser&quot; uses the new &quot;Known Folder&quot; APIs in Windows Vista to list every &quot;Known Folder&quot; and let you change them if you want to.
I have no idea why Microsoft didn&#039;t include a program like &quot;Known Folders Browser&quot; in Windows Vista or at least release one as a power toy instead of the very limited user interface Windows Explorer provides though.

The Known Folders in Windows Vista like PROGRAMFILES, PUBLIC and PROFILE are listed as fixed folders even though they can be changed with simple registry edits as without knowing exactly what you are doing, you can really screw things up.

The biggest problem with the registry tweak listed on this page is that when you update the Public folder location, it affects all the Known Folders below it like Desktop and Common Favorites.
Should you not copy all the Public folders to the new location, you will get a lot of strange behavior.
Also should you have changed one of the Known Folders under Public like Desktop to be &quot;C:\Users\Public\Desktop&quot; then changing this setting will not affect that change.

It seems to me that Microsft should not have even added a registry value to control a location like &quot;Public&quot; that is &quot;Fixed&quot; to a location where power users were bound to mess with it.
Instead of &quot;\Windows NT\CurrentVersion\ProfileList&quot;, it should have been put under &quot;\Going-Down-The-Rabbithole\No-Turning-Back-Now\No-Really\You-Have-Picked-The-Red-Pill\You-Have-Left-The-Matrix\FixedFolderList&quot; :D</description>
		<content:encoded><![CDATA[<p>Wow, I am amazed at the level of confusion around the Public folder.<br />
The Public folder is just a new name for the &#8220;C:\Documents and Settings\All Users&#8221; directory in Windows 2000/XP and should never be changed without proper planning.<br />
The same with the User Profile folder, &#8220;C:\Documents and Settings\[UserName]&#8221; in Windows XP and &#8220;C:\Users\[UserName]&#8221; in Windows Vista.<br />
Microsoft included a very easy way to move the special folders like Public in Windows Vista.<br />
The problem is that the user interface to set them has a few bugs like not working with User Account Control (UAC) when setting per-machine folders.<br />
There is a way to change all the per-machine and per-user folders though and that way is to use the program &#8220;Known Folders Browser&#8221; ( <a href="http://weblogs.asp.net/kennykerr/archive/2006/11/02/Known-Folders-Browser-1.0-_2800_for-Vista-and-Beyond_2900_.aspx" rel="nofollow">http://weblogs.asp.net/kennyke.....2900_.aspx</a> ) to set them.<br />
The program &#8220;Known Folders Browser&#8221; uses the new &#8220;Known Folder&#8221; APIs in Windows Vista to list every &#8220;Known Folder&#8221; and let you change them if you want to.<br />
I have no idea why Microsoft didn&#8217;t include a program like &#8220;Known Folders Browser&#8221; in Windows Vista or at least release one as a power toy instead of the very limited user interface Windows Explorer provides though.</p>
<p>The Known Folders in Windows Vista like PROGRAMFILES, PUBLIC and PROFILE are listed as fixed folders even though they can be changed with simple registry edits as without knowing exactly what you are doing, you can really screw things up.</p>
<p>The biggest problem with the registry tweak listed on this page is that when you update the Public folder location, it affects all the Known Folders below it like Desktop and Common Favorites.<br />
Should you not copy all the Public folders to the new location, you will get a lot of strange behavior.<br />
Also should you have changed one of the Known Folders under Public like Desktop to be &#8220;C:\Users\Public\Desktop&#8221; then changing this setting will not affect that change.</p>
<p>It seems to me that Microsft should not have even added a registry value to control a location like &#8220;Public&#8221; that is &#8220;Fixed&#8221; to a location where power users were bound to mess with it.<br />
Instead of &#8220;\Windows NT\CurrentVersion\ProfileList&#8221;, it should have been put under &#8220;\Going-Down-The-Rabbithole\No-Turning-Back-Now\No-Really\You-Have-Picked-The-Red-Pill\You-Have-Left-The-Matrix\FixedFolderList&#8221; <img src='http://www.howtogeek.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lauro</title>
		<link>http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/comment-page-1/#comment-64615</link>
		<dc:creator>Lauro</dc:creator>
		<pubDate>Sat, 10 Jan 2009 22:35:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/#comment-64615</guid>
		<description>Thanks for your useful suggestion!
I did the Regedit change and it worked.
But now when I see my Network under my computer name there are 2 public folder: &quot;Public&quot; (the old one) and &quot;Public2&quot; (the new one).
Why? How I can get rid of the old one?
It seems that there is some other registry setting that need to be changed.

Thanks, Lauro</description>
		<content:encoded><![CDATA[<p>Thanks for your useful suggestion!<br />
I did the Regedit change and it worked.<br />
But now when I see my Network under my computer name there are 2 public folder: &#8220;Public&#8221; (the old one) and &#8220;Public2&#8243; (the new one).<br />
Why? How I can get rid of the old one?<br />
It seems that there is some other registry setting that need to be changed.</p>
<p>Thanks, Lauro</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DraftyBeer</title>
		<link>http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/comment-page-1/#comment-59275</link>
		<dc:creator>DraftyBeer</dc:creator>
		<pubDate>Wed, 15 Oct 2008 19:13:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/windows-vista/move-the-public-folder-in-windows-vista/#comment-59275</guid>
		<description>I use win vista.
When I move the cursor or do anything like fill out a form or play a game,a small scrolling tool displays next to the cursor and scrolls the page everytime I move the cursor.
Is there anyway to stop this action with the cursor?
Big Thanx if you know how to fix this.</description>
		<content:encoded><![CDATA[<p>I use win vista.<br />
When I move the cursor or do anything like fill out a form or play a game,a small scrolling tool displays next to the cursor and scrolls the page everytime I move the cursor.<br />
Is there anyway to stop this action with the cursor?<br />
Big Thanx if you know how to fix this.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
