A Windows XP help forum. PCbanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PCbanter forum » Microsoft Windows XP » Security and Administration with Windows XP
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Default profile by Workstation



 
 
Thread Tools Display Modes
  #1  
Old February 1st 10, 07:02 PM posted to microsoft.public.windowsxp.security_admin
TM
external usenet poster
 
Posts: 10
Default Default profile by Workstation

Can you force a default profile by workstation? In other words, can you
ignore a user's profile for a particular workstation, but still allow the
user to log on?
Ads
  #2  
Old February 4th 10, 06:57 PM posted to microsoft.public.windowsxp.security_admin
Anteaus
external usenet poster
 
Posts: 1,330
Default Default profile by Workstation

http://efn.hud.ac.uk/studyskills/grammar.html

Clichés

Clichés are phrases and expressions which are so commonly used that they
have begun to "wear out". Avoiding clichés like the plague, and ensuring a
level-playing field will help you get ahead and prevent you from going belly
up.
Don't expect to find a definitive list of clichés which you can consult.
Deciding whether a phrase is a cliché or not is very much an individual
judgement.
You can follow a couple of simple rules though.
When you check your work be on the look out for phrases which sound too
informal. If you've used a cliché now is the time to rewrite the sentence and
find a more original and eloquent way of expressing yourself.
For example, you may have written:
Many teachers when faced with a disruptive pupil will not see their way
clear to removing him or her from the classroom straight away.
This could be rewritten as
Many teachers when faced with a disruptive pupil will not immediately decide
to exclude that student from the class.
The clichéd phrase "see their way clear" has been replaced by a form of
words which is both clearer in meaning and easier to read.
If you take care with your writing and aim for maximum clarity then you
won't have a problem with clichés.

No-one has answered your question because it is impossible to tell what you
are trying to achieve, nor what the configuration is.

"TM" wrote:

Can you force a default profile by workstation? In other words, can you
ignore a user's profile for a particular workstation, but still allow the
user to log on?

  #3  
Old February 5th 10, 08:48 PM posted to microsoft.public.windowsxp.security_admin
json
external usenet poster
 
Posts: 3
Default Default profile by Workstation

To set up a "Default profile":

1.Configure one particular model user account completely and exactly as you
wish. (This might be easier if you use a local [not domain] user such as "Any
User" or "Template", particularly if the machine hasn't joined a domain yet.)
The user account for this purpose shouldn't be used normally and should be a
local user. Sometimes you'll need to create a brand new user (ex: "Model")
for this.
2.Reboot, then log in as some user with Administrator rights but not the
user you configured. (If the user you configured is logged in, or even if
that user isn't logged in any more but you haven't rebooted, some files will
be "locked" and you will not be able to copy them.)
3.With Explorer navigate into \Documents and Settings\username-you-configured
4.Edit-SelectAll and Edit-Copy
5.Navigate to \Documents and Settings\Default User
â—¦Navigate back up to \Documents and Settings
â—¦Using Tools-Options turn on display of "hidden" files and folders if it
isn't already turned on for the local Administrator (Default User does exist,
but usually isn't seen because it's marked "hidden".)
â—¦Navigate back down inside .\Default User
6.Edit-Paste
7.Navigate back up to \Documents and Settings
8.If you don't have a special user account set aside for Administration,
take this opportunity to turn display of "hidden" files and folders back off
Using Tools-Options.
Once the "Default User" template is set up the way you want it, delete all
the other user profiles (except "All Users" and "Administrator" and any other
fixed local users and of course your model user). This will force all users
to be treated as "new" users and given a copy of the Default User template
the next time they login.

You can even force every user to get a fresh copy of the Default User
template on every login by arranging that their profile disappears before
they login again. You might do this with a "reboot to restore clean" utility
such as DeepFreeze. Or you might do this with a logout script. But don't do
it unless you've provided users with some other place to store their files
and ensured they're using it. Deleting a user's profile will also delete
their My Documents folder and all its contents, which will cause great upset
among users unless they store their files somewhere else.

Note well that if a user profile already exists (either as [possibly cached]
local files, or as a "roaming" profile), it will supercede your Default User
settings. In fact if roaming profiles are enabled and you test with a user
account for which a profile already exists on the network, your tests will
seem to indicate that Default User doesn't work at all.


batch file:

@echo off
set /P user=Please enter username:
net user %user /DOMAIN|findstr "Group"|findstr "Basic Users" NUL
If %ERRORLEVEL% EQU 0 goto BasicUsers
net user %user /DOMAIN|findstr "Group"|findstr "Advanced Users" NUL
If %ERRORLEVEL% EQU 0 goto AdvancedUsers
net user %user /DOMAIN|findstr "Group"|findstr "Haxors" NUL
If %ERRORLEVEL% EQU 0 goto Haxors

REM add/remove as needed here for your purposes
:BasicUsers
net use z: \\serverone\folder1\subfolder2 /user:HardCOdedDomainName\%user
/persistent:no
goto end
:AdvancedUsers
net use z: \\servertwo\folderx\subfolderz /user:HardCOdedDomainName\%user
/persistent:no
goto end
:Haxors
net use z: \\serverthree\xfiles\subfolder2 /user:HardCOdedDomainName\%user
/persistent:no
goto end
:end

Hope this helps you as the previous one wasn't really of any worth, don't
think he/she read your question.


"TM" wrote:
Can you force a default profile by workstation? In other words, can you
ignore a user's profile for a particular workstation, but still allow the
user to log on?

  #4  
Old February 11th 10, 09:02 PM posted to microsoft.public.windowsxp.security_admin
TM
external usenet poster
 
Posts: 10
Default Default profile by Workstation

json,

Thank you for the detailed response. Is there any solution to prevent
pulling roaming profiles if they exist?

Thanks again,
Tim

"json" wrote:

To set up a "Default profile":

1.Configure one particular model user account completely and exactly as you
wish. (This might be easier if you use a local [not domain] user such as "Any
User" or "Template", particularly if the machine hasn't joined a domain yet.)
The user account for this purpose shouldn't be used normally and should be a
local user. Sometimes you'll need to create a brand new user (ex: "Model")
for this.
2.Reboot, then log in as some user with Administrator rights but not the
user you configured. (If the user you configured is logged in, or even if
that user isn't logged in any more but you haven't rebooted, some files will
be "locked" and you will not be able to copy them.)
3.With Explorer navigate into \Documents and Settings\username-you-configured
4.Edit-SelectAll and Edit-Copy
5.Navigate to \Documents and Settings\Default User
â—¦Navigate back up to \Documents and Settings
â—¦Using Tools-Options turn on display of "hidden" files and folders if it
isn't already turned on for the local Administrator (Default User does exist,
but usually isn't seen because it's marked "hidden".)
â—¦Navigate back down inside .\Default User
6.Edit-Paste
7.Navigate back up to \Documents and Settings
8.If you don't have a special user account set aside for Administration,
take this opportunity to turn display of "hidden" files and folders back off
Using Tools-Options.
Once the "Default User" template is set up the way you want it, delete all
the other user profiles (except "All Users" and "Administrator" and any other
fixed local users and of course your model user). This will force all users
to be treated as "new" users and given a copy of the Default User template
the next time they login.

You can even force every user to get a fresh copy of the Default User
template on every login by arranging that their profile disappears before
they login again. You might do this with a "reboot to restore clean" utility
such as DeepFreeze. Or you might do this with a logout script. But don't do
it unless you've provided users with some other place to store their files
and ensured they're using it. Deleting a user's profile will also delete
their My Documents folder and all its contents, which will cause great upset
among users unless they store their files somewhere else.

Note well that if a user profile already exists (either as [possibly cached]
local files, or as a "roaming" profile), it will supercede your Default User
settings. In fact if roaming profiles are enabled and you test with a user
account for which a profile already exists on the network, your tests will
seem to indicate that Default User doesn't work at all.


batch file:

@echo off
set /P user=Please enter username:
net user %user /DOMAIN|findstr "Group"|findstr "Basic Users" NUL
If %ERRORLEVEL% EQU 0 goto BasicUsers
net user %user /DOMAIN|findstr "Group"|findstr "Advanced Users" NUL
If %ERRORLEVEL% EQU 0 goto AdvancedUsers
net user %user /DOMAIN|findstr "Group"|findstr "Haxors" NUL
If %ERRORLEVEL% EQU 0 goto Haxors

REM add/remove as needed here for your purposes
:BasicUsers
net use z: \\serverone\folder1\subfolder2 /user:HardCOdedDomainName\%user
/persistent:no
goto end
:AdvancedUsers
net use z: \\servertwo\folderx\subfolderz /user:HardCOdedDomainName\%user
/persistent:no
goto end
:Haxors
net use z: \\serverthree\xfiles\subfolder2 /user:HardCOdedDomainName\%user
/persistent:no
goto end
:end

Hope this helps you as the previous one wasn't really of any worth, don't
think he/she read your question.


"TM" wrote:
Can you force a default profile by workstation? In other words, can you
ignore a user's profile for a particular workstation, but still allow the
user to log on?

 




Thread Tools
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 Off
HTML code is Off






All times are GMT +1. The time now is 01:47 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PCbanter.
The comments are property of their posters.