Thanks for the reply. I am deleting the mappings each time before mapping them again. This appears to be a known issue with Win7, where the drive mappings are read and processed before the network connection is completely established. I've made all the MS-recommended changes in group policy processing, etc. but with no effect. I'm hoping for an option in the script where I could enumerate the drive or such that would activate the connection before the user had time to open an application.

Here's the sanitized version of my script:
 Code:
;Drive mapping script for the IS department

USE G: /DEL
USE G: @HOMESHR ;Map G: to the users home directory

USE H: /DEL
USE H: "\\Server2\IS"

USE T: /DEL
USE T: "\\Server8\df"

USE X: /DEL
USE X: "\\Server2\SNOOPY" /persistent:yes

USE W: /DEL  ; disconnect W:  TS.2 WINTEG

Color y+/n
AT ( 9,40) @userid
AT (10,40) @fullname
AT (11,40) @priv
AT (12,40) @wksta
AT (13,40) @domain
AT (14,40) @lserver
Color w/n


RETURN

Thanks,
Joe


Edited by Mart (2012-08-23 04:05 PM)
Edit Reason: Please use code tags when posting code.