ExamNotes.net  -  IT certification portal

ForumsCertResearchTop sitesNewslettersFree email
HomeRegister
Exams Notes
Practice exams
Exam games
Questions by email
Online training
Training videos
College degrees
Boot camps
Book store
Links directory
Tell a friend
For webmasters

CompTIA Exam Vouchers
Save money on CompTIA exams
Question of the day
Sign up to receive
interactive practice questions
for MCSE, CompTIA
Cisco and other exams
TestKing
Get MCSE, MCSD, CCNA, CCNP,A+, N+ and many more

* ExamSheets *
Guide for Success!
Actual Questions & Answers
MCSE, MCSD, A+ ,CCNA, CCNP
Oracle 8i, Oracle 9i

Online practice tests

Certification sites

Online university

Online college

Online education

Distance learning

Software forum

Server administration forum

Programming resources






This is interesting: Free IT Magazines | Databases help forum



Microsoft (MCSE, MCSD, MOUS, MCAD) > 70-210 > Logon Scripts

Show a Printable Version
Email This Page to Someone!
Receive updates to this thread


Featured site: Online 70-210 practice exams from Cert21.com



Pages (2): [1] 2 »

Author Logon Scripts
trebor
Senior Member




Registered: Sep 2000
Location: Kiel
Country: Germany
State:
Certifications:
Working on:

Total Posts: 412
Post

Simple question. What are they? Why would one use them?

My 70-210 books assume I already know.

trebor

Report this post to a moderator

Old Post 02-07-01 01:35 PM
trebor is offline Click Here to See the Profile for trebor Click here to Send trebor a Private Message Add trebor to your buddy list Find more posts by trebor Reply w/Quote Edit/Delete Message IP: Logged
Yeti-GBR1
A Complete Twit




Registered: Oct 2000
Location: Yeti Town, Yetiville, UK
Country: UK
State:
Certifications: Too many to list.
Working on: Getting a real life outside IT.

Total Posts: 1105
Exclamation

Ok if you have lets say 2000 users and they all use the same shared areas on several servers and you would like to map drive letters to them, you could either manually add them to each client machine (rather dumb option and time consuming) or you could use logon scripts.

Basically a logon script is a batch file or .cmd file that contains a list of commands which enable you to automate various processes.

In this case where you have 2000 users using the same shares on several servers you would use them to map drives automatically based on their groupings within the NT Group policies (this is the same as in NT4 assuming you have covered the NT4 track if not I suggest you read up on the Group Policies & Users sections in most windows 2000 books) them to map common drive shares so that they all receive the same.

I hope this clarifies your confusion and sheds some light on what they are as well.

Yeti the Helpful
------------------
MCNE, MCPx5, SCO ACE, LCP, Compaq ASE, CCIE Wannabe (part of the Wannabe Boffin Club).
http://www.yetigbr1.plus.com or http://www.mcse2000.plus.com or http://www.mcse-2000.org & http://www.mcse-2k.co.uk

MCSE2000 Forum http://pub34.ezboard.com/bmcse200067298

Mailto: yeti@zerg.com

Report this post to a moderator

Old Post 02-07-01 02:51 PM
Yeti-GBR1 is offline Click Here to See the Profile for Yeti-GBR1 Click here to Send Yeti-GBR1 a Private Message Visit Yeti-GBR1's homepage! Add Yeti-GBR1 to your buddy list Find more posts by Yeti-GBR1    Yeti-GBR1's ICQ status    Reply w/Quote Edit/Delete Message IP: Logged
trebor
Senior Member




Registered: Sep 2000
Location: Kiel
Country: Germany
State:
Certifications:
Working on:

Total Posts: 412
Post

Yeti the truly helpful, yes that (as you say) clarifies my confusion.

It is really simple when you put it like that.

What might a logon script look like that could map a drive at logon?

trebor

Report this post to a moderator

Old Post 02-07-01 04:36 PM
trebor is offline Click Here to See the Profile for trebor Click here to Send trebor a Private Message Add trebor to your buddy list Find more posts by trebor Reply w/Quote Edit/Delete Message IP: Logged
Yeti-GBR1
A Complete Twit




Registered: Oct 2000
Location: Yeti Town, Yetiville, UK
Country: UK
State:
Certifications: Too many to list.
Working on: Getting a real life outside IT.

Total Posts: 1105
Exclamation

Here this should help you:
http://www.microsoft.com/TechNet/wi...ep/logscrpt.asp or http://www.microsoft.com/TechNet/winnt/grlogon.asp

Yeti the MS Resource
----------------------
MCNE, MCPx5, SCO ACE, LCP, Compaq ASE, CCIE Wannabe (part of the Wannabe Boffin Club).
http://www.yetigbr1.plus.com or http://www.mcse2000.plus.com or http://www.mcse-2000.org & http://www.mcse-2k.co.uk

MCSE2000 Forum http://pub34.ezboard.com/bmcse200067298

Mailto: yeti@zerg.com

[This message has been edited by Yeti-GBR1 (edited 02-07-2001).]

Report this post to a moderator

Old Post 02-07-01 05:11 PM
Yeti-GBR1 is offline Click Here to See the Profile for Yeti-GBR1 Click here to Send Yeti-GBR1 a Private Message Visit Yeti-GBR1's homepage! Add Yeti-GBR1 to your buddy list Find more posts by Yeti-GBR1    Yeti-GBR1's ICQ status    Reply w/Quote Edit/Delete Message IP: Logged
jguy
M$ Master 2 B
M




Registered: Jul 2000
Location: Tuscaloosa, AL, USA
Country: USA
State: AL
Certifications: A+,MCP(Win2K),Network+
Working on: CCNA,MCSA

Total Posts: 73
Cool

Here's some example text for a .bat file used as a script to map drives that I like to use.
net use f: servername\share1
net use g: servername\share2
net use m: servername\share3
Be sure to save this as a .bat file. I use notepad and/or the "edit" command on the cmd line.

Now the fun stuff!

To use in a Win2k Domain W/ Active Directory, you first place this script in the \\servername\sysvol\domain\scr
ipts share on the network. Then you go to AD and "point" the users to this script(s). This is the totally cool way if you have a very large network.

Locally, you have two ways to utilize scripts. This has more administrative overhead if you have a lot of stations throughout the office. Anyway, once the scripts are created, you can assign them by running MMC. Add the Local Computer Policy snap-in to the console. Once there, go to the windows settings folder under computer config. Expand it, and you will see in the right plane "Scripts (startup/shutdown)". In the right plane, doubleclick "scripts". Now you should see "startup" and "shutdown". You can add your scripts to starup and/or shutdown by simply double clicking the appropriate icon. If you know the path to the scripts (surely you do!), you can click the add button to give the script name and parameters. You can also browse the startup by clicking the show files button.

To manually add the scripts to the directory using Winnt Explorer, go to %systemroot%/System32/GroupPolicy/Machine/Scripts
Here you can place the custom scripts in either the shutdown or startup directories.

You don't have to just use .bat files for scripts, you can use Jscript and/or VBscript too! I love scripting, and learn more about it every day. You can cut down on some of the administrative tasks by utilizing them.

I sure hope this helps and that I didn't run around too much!

------------------
Joe W. Guy
A+ Certified Tech.
Tuscaloosa, Alabama
----------------------
"A mind is a terrible thing to waste...."

[This message has been edited by jguy (edited 02-07-2001).]

Report this post to a moderator

Old Post 02-07-01 05:18 PM
jguy is offline Click Here to See the Profile for jguy Click here to Send jguy a Private Message Visit jguy's homepage! Add jguy to your buddy list Find more posts by jguy Reply w/Quote Edit/Delete Message IP: Logged
Yeti-GBR1
A Complete Twit




Registered: Oct 2000
Location: Yeti Town, Yetiville, UK
Country: UK
State:
Certifications: Too many to list.
Working on: Getting a real life outside IT.

Total Posts: 1105
Wink

Jguy,

servernamesysvoldomainscripts???? only joking...damnd good explination there mate, way way better than mine

Yeti the Non-Win2K Proficient

[This message has been edited by Yeti-GBR1 (edited 02-07-2001).]

Report this post to a moderator

Old Post 02-07-01 05:32 PM
Yeti-GBR1 is offline Click Here to See the Profile for Yeti-GBR1 Click here to Send Yeti-GBR1 a Private Message Visit Yeti-GBR1's homepage! Add Yeti-GBR1 to your buddy list Find more posts by Yeti-GBR1    Yeti-GBR1's ICQ status    Reply w/Quote Edit/Delete Message IP: Logged
Yeti-GBR1
A Complete Twit




Registered: Oct 2000
Location: Yeti Town, Yetiville, UK
Country: UK
State:
Certifications: Too many to list.
Working on: Getting a real life outside IT.

Total Posts: 1105
Post

I found these as well:

1. http://windows.microsoft.com/window...concepts_07.htm

2. http://windows.microsoft.com/window...g_devicelog.htm

3. <A HREF="http://windows.microsoft.com/windows2000/en/server/help/gptext_assignlogonscripts.htm" TARGET=_blank>http://windows.microsoft.com/windows2000/en/server/help/gptext_assignlogonscripts.htm[/UR L]

4. http://windows.microsoft.com/windows2000/en/server/help/sag_lsconcepts_0.htm</A>

5. [url="http://windows.microsoft.com/windows2000/en/server/help/sag_lsconcepts_1.htm"]http://windows.microsoft.com/windows2000/en/server/help/sag_lsconcepts_1.htm


Yeti the Verbose

[This message has been edited by Yeti-GBR1 (edited 02-07-2001).]

Report this post to a moderator

Old Post 02-07-01 05:36 PM
Yeti-GBR1 is offline Click Here to See the Profile for Yeti-GBR1 Click here to Send Yeti-GBR1 a Private Message Visit Yeti-GBR1's homepage! Add Yeti-GBR1 to your buddy list Find more posts by Yeti-GBR1    Yeti-GBR1's ICQ status    Reply w/Quote Edit/Delete Message IP: Logged
freak
Moderator
M




Registered: Aug 2000
Location:
Country: USA
State:
Certifications: MA, M.Ed., Net+,I-Net+, Security+, CEH, CEI, CCA, CCNA, MCP+I, MCSA, MCSE NT 4.0, MCSE 2000, MCT
Working on: MCSE 2K3, Linux+, CISSP

Total Posts: 9688
Talking

Yeti, good to have you back

------------------
Freak, MA, M.Ed., Net+,I-Net+, MCP+I, MCSE NT 4.0, MCSE 2000, MCT
ICQ: 100744839

http://www.mcsefreak.com
Industry News - Free Prep Tests - Study Guides - Exam Drill - Choices - Forum

http://www.WebMaineacs.com
Web Hosting - web design - Web Strategies - Networking - hosting from only $8 a month!

Report this post to a moderator

Old Post 02-07-01 05:48 PM
freak is offline Click Here to See the Profile for freak Click here to Send freak a Private Message Visit freak's homepage! Add freak to your buddy list Find more posts by freak Reply w/Quote Edit/Delete Message IP: Logged
trebor
Senior Member




Registered: Sep 2000
Location: Kiel
Country: Germany
State:
Certifications:
Working on:

Total Posts: 412
Post

That is great Jguy and Yeti. That should keep me busy for a while.

I am sure after digesting that info I will have a few other questions.

Trebor the grateful

Report this post to a moderator

Old Post 02-07-01 06:40 PM
trebor is offline Click Here to See the Profile for trebor Click here to Send trebor a Private Message Add trebor to your buddy list Find more posts by trebor Reply w/Quote Edit/Delete Message IP: Logged
jguy
M$ Master 2 B
M




Registered: Jul 2000
Location: Tuscaloosa, AL, USA
Country: USA
State: AL
Certifications: A+,MCP(Win2K),Network+
Working on: CCNA,MCSA

Total Posts: 73
Talking

I fixed the mistakes in the above post! I must have been pretending to be on "Who want's to be a Millionaire!" You know, trying to have the "fastest fingers"!

Anyway, sometimes I tend to get too excited and my typing goes nutz! Anyway, the possibilities are endless with scripting!

Also to note: You can use PERL scripts too! WSH does a lot for MSNerdz.

Script On!

------------------
Joe W. Guy
A+ Certified Tech.
Tuscaloosa, Alabama
----------------------
"A mind is a terrible thing to waste...."

Report this post to a moderator

Old Post 02-07-01 07:45 PM
jguy is offline Click Here to See the Profile for jguy Click here to Send jguy a Private Message Visit jguy's homepage! Add jguy to your buddy list Find more posts by jguy Reply w/Quote Edit/Delete Message IP: Logged
All times are GMT.
Pages (2): [1] 2 » Post new thread   Post reply

Click here for the list of 70-210 study guides

MCSE exam notes

70-210 exam details



Forum Jump:
Rate This Thread:
Forum Rules:
Who Can Read The Forum? Any registered user or guest.
Who Can Post New Topics? Any registered user.
Who Can Post Replies? Any registered user.
Changes: Messages can be edited by their author.
Posts: HTML code is OFF. Smilies are ON. vB code is ON. [IMG] code is ON.
 

ExamNotes forum archive


Powered by: vBulletin 2.2.8
Copyright ©2000, Jelsoft Enterprises Limited.

  Free Braindumps | mcse braindumps