Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > Windows Server

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-01-2008, 10:50 AM
Alex
 
Posts: n/a
Delete cached local copy of mandatory profile and non roaming domain user profiles ?

Hi. We are currently looking to deploy some Windows XP workstations on a
2003 Domain for development purposes. We are using a mix of mandatory
profiles and general domain users that have NO roaming or mandatory profile.
We are finding that the XP workstations are storing a local copy of the
mandatory profiles and the gerneral domain user accounts as well.

Can anyone confirm whether Windows should automatically remove Mandatory
profiles when the user logs off, and if so can anyone suggest why a copy of
the profiles are being left behind ?

Similarly can anyone recommend how we can allow users with a basic domain
user account (no roaming or mandatory profile) to logon to our XP
workstations such that their locally created profile is automatically
deleted when they logoff ? i.e. no matter the user type (even domain admin
if possible) we would like to remove any locally stored user profiles.

Thanks,
Alex.



Reply With Quote
  #2 (permalink)  
Old 05-01-2008, 12:57 PM
Lanwench [MVP - Exchange]
 
Posts: n/a
Re: Delete cached local copy of mandatory profile and non roaming domain user profiles ?

Alex <email@microsoft.newsgroups> wrote:
> Hi. We are currently looking to deploy some Windows XP workstations
> on a 2003 Domain for development purposes. We are using a mix of
> mandatory profiles and general domain users that have NO roaming or
> mandatory profile. We are finding that the XP workstations are
> storing a local copy of the mandatory profiles and the gerneral
> domain user accounts as well.


Yep - that's normal.
>
> Can anyone confirm whether Windows should automatically remove
> Mandatory profiles when the user logs off,


Nope.

> and if so can anyone
> suggest why a copy of the profiles are being left behind ?


It's by design, as they say.
>
> Similarly can anyone recommend how we can allow users with a basic
> domain user account (no roaming or mandatory profile) to logon to our
> XP workstations such that their locally created profile is
> automatically deleted when they logoff ? i.e. no matter the user type
> (even domain admin if possible) we would like to remove any locally
> stored user profiles.
> Thanks,
> Alex.


For roaming profiles, this can be done in your group policy settings -
http://support.microsoft.com/kb/274152
For non-roaming, I'm not sure there's a policy option for it. However,
delprof certainly works -
http://windowsitpro.com/articles/pri...rticleid=48249

Personally - I always use roaming profiles (and folder redirection,so the
profiles stay tiny) and I also *want* a local copy cached on the machine to
eliminate the delay between a user logging in, and a user getting to work.
Just my $.02 and your environment may well be different.


Reply With Quote
  #3 (permalink)  
Old 05-04-2008, 02:45 AM
S. Pidgorny
 
Posts: n/a
Re: Delete cached local copy of mandatory profile and non roaming domain user profiles ?

Create a computer startup script that deletes the local profiles if they are
of a concern to you. Users won't be able to delete profiles as a part of
logoff process.

--
Svyatoslav Pidgorny, MS MVP - Security, MCSE
-= F1 is the key =-

* http://sl.mvps.org * http://msmvps.com/blogs/sp *

"Alex" <email@microsoft.newsgroups> wrote in message
news:%23WdbaD3qIHA.1436@TK2MSFTNGP05.phx.gbl...
> Hi. We are currently looking to deploy some Windows XP workstations on a
> 2003 Domain for development purposes. We are using a mix of mandatory
> profiles and general domain users that have NO roaming or mandatory
> profile. We are finding that the XP workstations are storing a local copy
> of the mandatory profiles and the gerneral domain user accounts as well.
>
> Can anyone confirm whether Windows should automatically remove Mandatory
> profiles when the user logs off, and if so can anyone suggest why a copy
> of the profiles are being left behind ?
>
> Similarly can anyone recommend how we can allow users with a basic domain
> user account (no roaming or mandatory profile) to logon to our XP
> workstations such that their locally created profile is automatically
> deleted when they logoff ? i.e. no matter the user type (even domain admin
> if possible) we would like to remove any locally stored user profiles.
>
> Thanks,
> Alex.
>
>
>



Reply With Quote
  #4 (permalink)  
Old 05-04-2008, 06:05 PM
Herb Martin
 
Posts: n/a
Re: Delete cached local copy of mandatory profile and non roaming domain user profiles ?


"S. Pidgorny <MVP>" <slavickp@yahoo.com> wrote in message
news:%23gJ1UiYrIHA.3616@TK2MSFTNGP06.phx.gbl...
> Create a computer startup script that deletes the local profiles if they
> are of a concern to you. Users won't be able to delete profiles as a part
> of logoff process.


One of the fastest methods to (permanently) delete a directory
tree is: "del /s /q PATH"

/s = subdirectory /q = quite (no warnings)

This is VERY dangerous as it will (usually*) delete everything in it
without further warning so get the PATH correct. * Unless files
are locked but at startup that is unlikely.

A "for /d" (directories) loop can get all directories but be careful
not to delete the Default (or other profiles you wish to keep.)

> --
> Svyatoslav Pidgorny, MS MVP - Security, MCSE
> -= F1 is the key =-
>
> * http://sl.mvps.org * http://msmvps.com/blogs/sp *
>
> "Alex" <email@microsoft.newsgroups> wrote in message
> news:%23WdbaD3qIHA.1436@TK2MSFTNGP05.phx.gbl...
>> Hi. We are currently looking to deploy some Windows XP workstations on a
>> 2003 Domain for development purposes. We are using a mix of mandatory
>> profiles and general domain users that have NO roaming or mandatory
>> profile. We are finding that the XP workstations are storing a local copy
>> of the mandatory profiles and the gerneral domain user accounts as well.
>>
>> Can anyone confirm whether Windows should automatically remove Mandatory
>> profiles when the user logs off, and if so can anyone suggest why a copy
>> of the profiles are being left behind ?
>>
>> Similarly can anyone recommend how we can allow users with a basic domain
>> user account (no roaming or mandatory profile) to logon to our XP
>> workstations such that their locally created profile is automatically
>> deleted when they logoff ? i.e. no matter the user type (even domain
>> admin if possible) we would like to remove any locally stored user
>> profiles.
>>
>> Thanks,
>> Alex.
>>
>>
>>

>
>



Reply With Quote
  #5 (permalink)  
Old 05-04-2008, 06:56 PM
Lanwench [MVP - Exchange]
 
Posts: n/a
Re: Delete cached local copy of mandatory profile and non roaming domain user profiles ?

Herb Martin <news@learnquick.com> wrote:
> "S. Pidgorny <MVP>" <slavickp@yahoo.com> wrote in message
> news:%23gJ1UiYrIHA.3616@TK2MSFTNGP06.phx.gbl...
>> Create a computer startup script that deletes the local profiles if
>> they are of a concern to you. Users won't be able to delete profiles
>> as a part of logoff process.

>
> One of the fastest methods to (permanently) delete a directory
> tree is: "del /s /q PATH"
>
> /s = subdirectory /q = quite (no warnings)
>
> This is VERY dangerous as it will (usually*) delete everything in it
> without further warning so get the PATH correct. * Unless files
> are locked but at startup that is unlikely.
>
> A "for /d" (directories) loop can get all directories but be careful
> not to delete the Default (or other profiles you wish to keep.)


Hence, using delprof instead would be a very simple alternative :-)
>
>> --
>> Svyatoslav Pidgorny, MS MVP - Security, MCSE
>> -= F1 is the key =-
>>
>> * http://sl.mvps.org * http://msmvps.com/blogs/sp *
>>
>> "Alex" <email@microsoft.newsgroups> wrote in message
>> news:%23WdbaD3qIHA.1436@TK2MSFTNGP05.phx.gbl...
>>> Hi. We are currently looking to deploy some Windows XP
>>> workstations on a 2003 Domain for development purposes. We are
>>> using a mix of mandatory profiles and general domain users that
>>> have NO roaming or mandatory profile. We are finding that the XP
>>> workstations are storing a local copy of the mandatory profiles and
>>> the gerneral domain user accounts as well. Can anyone confirm whether
>>> Windows should automatically remove
>>> Mandatory profiles when the user logs off, and if so can anyone
>>> suggest why a copy of the profiles are being left behind ?
>>>
>>> Similarly can anyone recommend how we can allow users with a basic
>>> domain user account (no roaming or mandatory profile) to logon to
>>> our XP workstations such that their locally created profile is
>>> automatically deleted when they logoff ? i.e. no matter the user
>>> type (even domain admin if possible) we would like to remove any
>>> locally stored user profiles.
>>>
>>> Thanks,
>>> Alex.




Reply With Quote
  #6 (permalink)  
Old 05-04-2008, 08:54 PM
Al Dunbar
 
Posts: n/a
Re: Delete cached local copy of mandatory profile and non roaming domain user profiles ?


"Lanwench [MVP - Exchange]"
<lanwench@heybuddy.donotsendme.unsolicitedmailatya hoo.com> wrote in message
news:eo7h2ChrIHA.4788@TK2MSFTNGP03.phx.gbl...
> Herb Martin <news@learnquick.com> wrote:
>> "S. Pidgorny <MVP>" <slavickp@yahoo.com> wrote in message
>> news:%23gJ1UiYrIHA.3616@TK2MSFTNGP06.phx.gbl...
>>> Create a computer startup script that deletes the local profiles if
>>> they are of a concern to you. Users won't be able to delete profiles
>>> as a part of logoff process.

>>
>> One of the fastest methods to (permanently) delete a directory
>> tree is: "del /s /q PATH"
>>
>> /s = subdirectory /q = quite (no warnings)
>>
>> This is VERY dangerous as it will (usually*) delete everything in it
>> without further warning so get the PATH correct. * Unless files
>> are locked but at startup that is unlikely.
>>
>> A "for /d" (directories) loop can get all directories but be careful
>> not to delete the Default (or other profiles you wish to keep.)

>
> Hence, using delprof instead would be a very simple alternative :-)


That's not the only reason, as references to the profiles would still appear
in the registry once the profile folder was deleted.

/Al

>>
>>> --
>>> Svyatoslav Pidgorny, MS MVP - Security, MCSE
>>> -= F1 is the key =-
>>>
>>> * http://sl.mvps.org * http://msmvps.com/blogs/sp *
>>>
>>> "Alex" <email@microsoft.newsgroups> wrote in message
>>> news:%23WdbaD3qIHA.1436@TK2MSFTNGP05.phx.gbl...
>>>> Hi. We are currently looking to deploy some Windows XP
>>>> workstations on a 2003 Domain for development purposes. We are
>>>> using a mix of mandatory profiles and general domain users that
>>>> have NO roaming or mandatory profile. We are finding that the XP
>>>> workstations are storing a local copy of the mandatory profiles and
>>>> the gerneral domain user accounts as well. Can anyone confirm whether
>>>> Windows should automatically remove
>>>> Mandatory profiles when the user logs off, and if so can anyone
>>>> suggest why a copy of the profiles are being left behind ?
>>>>
>>>> Similarly can anyone recommend how we can allow users with a basic
>>>> domain user account (no roaming or mandatory profile) to logon to
>>>> our XP workstations such that their locally created profile is
>>>> automatically deleted when they logoff ? i.e. no matter the user
>>>> type (even domain admin if possible) we would like to remove any
>>>> locally stored user profiles.
>>>>
>>>> Thanks,
>>>> Alex.

>
>
>



Reply With Quote
  #7 (permalink)  
Old 05-04-2008, 08:59 PM
Lanwench [MVP - Exchange]
 
Posts: n/a
Re: Delete cached local copy of mandatory profile and non roaming domain user profiles ?

Al Dunbar <AlanDrub@hotmail.com.nospaam> wrote:
> "Lanwench [MVP - Exchange]"
> <lanwench@heybuddy.donotsendme.unsolicitedmailatya hoo.com> wrote in
> message news:eo7h2ChrIHA.4788@TK2MSFTNGP03.phx.gbl...
>> Herb Martin <news@learnquick.com> wrote:
>>> "S. Pidgorny <MVP>" <slavickp@yahoo.com> wrote in message
>>> news:%23gJ1UiYrIHA.3616@TK2MSFTNGP06.phx.gbl...
>>>> Create a computer startup script that deletes the local profiles if
>>>> they are of a concern to you. Users won't be able to delete
>>>> profiles as a part of logoff process.
>>>
>>> One of the fastest methods to (permanently) delete a directory
>>> tree is: "del /s /q PATH"
>>>
>>> /s = subdirectory /q = quite (no warnings)
>>>
>>> This is VERY dangerous as it will (usually*) delete everything in it
>>> without further warning so get the PATH correct. * Unless files
>>> are locked but at startup that is unlikely.
>>>
>>> A "for /d" (directories) loop can get all directories but be careful
>>> not to delete the Default (or other profiles you wish to keep.)

>>
>> Hence, using delprof instead would be a very simple alternative :-)

>
> That's not the only reason, as references to the profiles would still
> appear in the registry once the profile folder was deleted.
>
> /Al


Yep, that too.

>
>>>
>>>> --
>>>> Svyatoslav Pidgorny, MS MVP - Security, MCSE
>>>> -= F1 is the key =-
>>>>
>>>> * http://sl.mvps.org * http://msmvps.com/blogs/sp *
>>>>
>>>> "Alex" <email@microsoft.newsgroups> wrote in message
>>>> news:%23WdbaD3qIHA.1436@TK2MSFTNGP05.phx.gbl...
>>>>> Hi. We are currently looking to deploy some Windows XP
>>>>> workstations on a 2003 Domain for development purposes. We are
>>>>> using a mix of mandatory profiles and general domain users that
>>>>> have NO roaming or mandatory profile. We are finding that the XP
>>>>> workstations are storing a local copy of the mandatory profiles
>>>>> and the gerneral domain user accounts as well. Can anyone confirm
>>>>> whether Windows should automatically remove
>>>>> Mandatory profiles when the user logs off, and if so can anyone
>>>>> suggest why a copy of the profiles are being left behind ?
>>>>>
>>>>> Similarly can anyone recommend how we can allow users with a basic
>>>>> domain user account (no roaming or mandatory profile) to logon to
>>>>> our XP workstations such that their locally created profile is
>>>>> automatically deleted when they logoff ? i.e. no matter the user
>>>>> type (even domain admin if possible) we would like to remove any
>>>>> locally stored user profiles.
>>>>>
>>>>> Thanks,
>>>>> Alex.




Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > Windows Server


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 01:27 PM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Debt Help | Myspace Layouts | Gas Suppliers | Myspace Codes | Remortgages



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114