|
OK... you guys helped me out a month or so ago and did such a fantastic job... I can't thank you enough. BUT I find myself in a quandrum once again... and need the advice of the experts...
What I have is.. 3 schools I have active directory replicating with a wireless conection... the following login script worked to log them into the local server and worked just fine until I added a mail server at one site.
Now at this site the users are loging into the wrong server.. or they're losing drives that are mapped ??? The issue (I think) is the mail server is named IM and the main server is named MS-SRV.. and it's finding IM first and screwing things up.
Could anyone steer me in the right direction on this issue???
Here is the script I am using now...
@lserver
use list USE G: /d USE H: /d USE G: "@lserver\apps" USE H: "@lserver\@userid$$" if ingroup("cs-office") use I: "@lserver\common$$" endif if ingroup("ws-office") use I: "@lserver\common$$" endif if ingroup("ms-office") use I: "@lserver\common$$" endif if ingroup("ms-students") use I: "@lserver\classes$$" endif if @userid = "smcmorris" use I: "@lserver\classes$$" endif
|