Well, what we usually do is something like this (this will map the E: drive):

Code:

break on

USE E: /DELETE /PERSISTENT
USE E: "\\SERVER\PUBLIC"

exit 0



Now, if your user's are grouped by convenient global groups, then one can also do this:

Code:

break on

IF INGROUP("Accounting")

USE E: /DELETE /PERSISTENT
USE E: "\\SERVER\PUBLIC"

ENDIF

exit 0



-Shawn