Re: prevent users from saving to local profile
- From: lforbes <UseLinkToEmail@xxxxxxxxxxxxxxxxx>
- Date: 18 May 2005 16:35:39 -0400
"tony" wrote:
> I am using document, desktop, application, start menu
> redirection. for all
> users however the user can still navigate to
> their own profile under the local machine
>
> c:Documents and SettingsUsername and save stuff there.
>
> what do I have to do to restrict them from writing to this
> profile?
>
> I really dont want them to create any local profile on the
> local machine as
> these are lab machines and dont want them to be
> cluttered with stuff.
Hi,
First of all, Hide Drives in My Computer Group Policy will stop the
navigation. There is no way to prevent the profile downloading as the
OS is built that way. There are, however, ways to have the profile
deleted on logoff. It works "most" of the time so I also have a
startup script that cleans out everything in the C:\Documents and
Settings except the Default and All Users.
1> Group Policy done on COMPUTER OU (not at the Domain GP).
Computer Config- Windows Settings - Security Settings - Local Policies
- Security Options - "Interactive Logon: Number of previous logons to
cache = 0
2> This setting can be done on Domain GP.
Computer Config - Admin Templates - System - User Profiles - "Delete
cached copies of roaming profiles" = Enabled.
Batch file I use as a startup script on my Computers (In group policy)
<start script>
@echo off
pushd "C:\Documents and Settings"
set Exempt=*Administrator* *All Users* *Default User* *LocalService*
*NetworkService*
for /d %%a in (*.*) do echo %Exempt% | find /i "*%%a*" > nul ||
rmdir /s /q "%%a"
popd
<end script>
Cheers,
Lara
--
Posted using the http://www.windowsforumz.com interface, at author's request
Articles individually checked for conformance to usenet standards
Topic URL: http://www.windowsforumz.com/Group-Policy-prevent-users-saving-local-profile-ftopict374438.html
Visit Topic URL to contact author (reg. req'd). Report abuse: http://www.windowsforumz.com/eform.php?p=1216580
.
- Follow-Ups:
- Re: prevent users from saving to local profile
- From: Bruce Sanderson
- Re: prevent users from saving to local profile
- From: tony
- Re: prevent users from saving to local profile
- References:
- prevent users from saving to local profile
- From: tony
- prevent users from saving to local profile
- Prev by Date: Re: login script with spaces in share name do not map
- Next by Date: Re: How to create group policy without affecting administrator
- Previous by thread: prevent users from saving to local profile
- Next by thread: Re: prevent users from saving to local profile
- Index(es):
Relevant Pages
|