odd behaviour
Not sure about that, I'll have a play and see if I can find anything. For
now though, I would recommend moving your users into OUs and assigning
different logon scripts to each OU. I would also personally opt for
vbscripts rather than batch files.
A batch file to map drive N to 'share' on 'server' and drive V to 'wibble'
on 'ned':
@echo off
net use n: \\server\share
net use v: \\ned\wibble
A vbscript to do the same (file extension .vbs):
Dim wshNetwork
Set wshNetwork = CreateObject("Wscript.Network")
wshNetwork.MapNetworkDrive "n:", "\\server\share"
wshNetwork.MapNetworkDrive "v:", \\ned\wibble
WSCript.Quit
See if that solves your problem, if not post back and I'll dig a bit deeper.
Gareth
|