Link to home
Start Free TrialLog in
Avatar of zenworksb
zenworksb

asked on

logon script per user

Hello I have a company that uses the main logon script, but I hace a group of uses that need a specific mapping to a server on the netowrk. What I would like to do is create a group and put them in that group, and then give everyone in that group a mapping to the location, I still want them to use the main logon script how would I do this?
ASKER CERTIFIED SOLUTION
Avatar of Rob Williams
Rob Williams
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of blin2000
blin2000

This example may help,

Example of VBScript - Mapping a network drive based on the group Example of batch file - make a network drive The logon script maps only some network drives ...
http://www.chicagotech.net/logonscript.htm 
Kixtart is one my facorite scripting solutions.  

You can use the following:

If in group ("groupname")
Use X: \\server\share
end if

you can call the kixtart script from the main logon script and only users in that group will get the drive mapped.
Thanks zenworksb,
--Rob