I’m trying to have my users connect automatically to 2 directories on the same server. I’m attempting to do this through a logon script. Currently I’m attempting to use Kixtart, but I’m open to other options. My logon script looks like this:
SETCONSOLE(“HIDE”)
; This keeps the domain on the same time, based on system Silver1
settime “\\SILVER1”
; Make sure the S drive isn’t mapped
use S: /delete
use H: /delete
; Now map it to PUBLIC share on SILVER1
use S: “\\SILVER1\Public”
USE Z: “\\SILVER1\%username%
endif
Currently the users are able to connect to the Public share, but not to their personal folders (the Z drive). Any suggestions?