Link to home
Start Free TrialLog in
Avatar of tometh
tometh

asked on

How can I prevent folder redirection from copying every user that's ever logged on a particular machine.

Here's the setup:
Currently I have a DFS share setup within our 2003 domain for the purpose of redirecting all of the users my documents folders through a GOP setting. This works just fine.

Heres the problem:
Lets say I have to go to Jon Does computer to perform some local maintenance. So I log onto his machine using my administrative account. When Im done, I log off and go about my work elsewhere. However from that point on, every time Jon logs off of his machine, it synchronizes not only his my documents folder, but the one from my admin account as well. Which then causes synchronization errors because Jon doesnt have the appropriate permissions to my my documents folder on the DFS share.

Is there a way to force folder redirection to only synchronize the current user that is logging off?
ASKER CERTIFIED SOLUTION
Avatar of slam69
slam69
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
As described in http://support.microsoft.com/kb/811660

[HKLM\Software\Microsoft\Windows\CurrentVersion\NetCache\PrimaryUsers]
(PrimaryUsers nead to be created)
Add DWORD-values named "domain\username" for each user that shall be classified as primary user.

[HKLM\Software\Microsoft\Windows\CurrentVersion\NetCache]
Add DWORD-value named PurgeNonPrimaryUserFilesAtLogoff and set it to 1.
Avatar of tometh
tometh

ASKER

That did the trick. Thank you. I figured it would be comething simple.