Link to home
Start Free TrialLog in
Avatar of mputnam31
mputnam31

asked on

Disable Roaming Profiles in Windows Server 2003

We have a medium size network (100) and we are trying to delete roaming profiles from the server. However, when we try it we get an error message "access denied." We've tried taking ownership of the folder and adding Administrator to Roaming profiles in the group policy management but it doesn't work. Is there any other way to delete Roaming Profiles completely? How can we disable roaming profiles completely in the server?
Avatar of victornegri
victornegri

Roaming profiles are configured in the user's properites. You just remove the entry in the "Profile Path" box on the Profiles tab.

In order to delete the profiles, you first have to take ownership of the folder AND ALL FILES AND FOLDERS UNDER THAT. Then Grant the Administrators group Full Control of that folder AND ALL FILES AND FOLDERS UNDER THAT. Then you can delete them.

After you take ownership of all files in your profiles share, you can run this command in DOS while you're in the root of the profiles share:

for /d %%I in (*) do cacls %%I /T /C /G "domain admins":F %%I:F >> cacls.log

That will reset all permissions on all folders so that Domain Admins will have full control and the user will have full control. This way you don't interrupt business at all and you can delete the folders at your leisure.
ASKER CERTIFIED SOLUTION
Avatar of Jay_Jay70
Jay_Jay70
Flag of Australia 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
Avatar of mputnam31

ASKER

They have folder redirection already.
sooo.....just remove as shown above