I’ve been involved recently in rolling out Windows XP Pro to several medium-sized pilot groups. Our servers are all Windows 2000 and we’re using logon scripts to map network drives – with each department having their own, slightly customized version of essentially the same script. Most of the mappings occur as a result of any IF…THEN, like so:
IFMEMBER EOTB_SHARE_GRP
IF NOT ERRORLEVEL 1 GOTO :QUIT
NET USE K: SRVMAINEOTB /persistent:no
:QUIT
We’ve never encountered any problems with our Windows NT 4.0 Sp6 or Windows 2000 Pro PCs mapping drives. But some of the Windows XP Pro workstations are experiencing intermittent drive mapping failures.
I’m guessing that share rights shouldn’t be the problem or else the drive mapping would always fail, instead of only occasionally failing.
Any suggestions?