tony said:
ok. I have lab machines that I want all users to be able to
access. But I do
not want any local profiles created. So I think mandatory
profiles will work
here. But these users also have their local machines they log
onto and I do
not want them to get a mandatory profile.
both lab machines and user machines are on the same domain.
any help appreciated
> > Is there anyway I can set a mandatory profile for a
user to
> > only a certain
> > machine?
Hi,
Do your users use Roaming Profiles at all or do they just use local
ones for their own machine? I would recommend just switching to
Roaming for all (regular roaming) and set Group Policy to delete
roaming profiles on logoff and not to cache roaming profiles.
You can then set restrictions with Group Policy for those machines.
Basically Mandatory Profiles are roaming but they are per user so once
a user has one, it goes everywhere.
Why are you worried about local profiles being created? If you have a
lab setting where do they save?
If you are worried about the local profiles taking up space you need
to know that even mandatory profiles cache locally even with all the
settings telling it not to. I was given the following batch file to
delete all local profiles except the ones I want. However it needs to
be a startup script.
For spacing. The new lines start at "set" and "for" with
everything else just wrapping.
@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
Cheers,
Lara