Hi,
Logon scripts can do alot of things, but I'm only going to cover mapping a
drive, since that's what you mentioned.
The net use command is for mapping a drive: NET USE DriveLetter:
\\ServerName\ShareName
I generally tag a /persistent:no >nul on the end to. This tells windows not
to show the results of the command, and to unmap the drive on logoff. For
example, to map U: to ShareABC on FileServerZ, I'd do:
NET USE U: \\FileServerZ\ShareABC /persistent:no >nul
For your logon script, you want to create a text file with a .bat extension
and drop your commands in. Afterwards, open up the netlogon share on a
domain controller, and drop the batch file you just made in.
Finally, open the users account in AD USers & Comps, goto Profile, and put
the name of hte batch file under logon script (i.e. myscript.bat).
--
--
Brian Desmond
Windows Server MVP
(e-mail address removed)12.il.us
Http://www.briandesmond.com
add