Hello everybody,
I've just started using kixtart (in the test phase to be precise). So far I can't seem to map the users specific share e.g if the users login name is EHarris then his U:\ drive should have the following share mapping:- \\pdc\EHarris
What am I doing wrong?
Here is a copy of my login script. Login.bat is called when the user logs on.
:Login.bat
@echo off
%0\..\Kix32.exe script1.scr
exit
:Script1.scr
? "Setting DOS variables..."
SHELL "winset.exe USERNAME=@USERID"
SHELL "Winset.exe ADDRESS=@ADDRESS"
SHELL "Winset.exe COMPUTER=@WKSTA"
SHELL "Winset.exe DOMAIN=@DOMAIN"
SHELL "Winset.exe COMMENT=@COMMENT"
SHELL "Winset.exe FULLNAME=@FULLNAME"
SHELL "Winset.exe HOMEDIR=@HOMEDIR"
SHELL "Winset.exe HOMESHR=@HOMESHR"
SHELL "Winset.exe LSERVER=@LSERVER"
SHELL "Winset.exe PRIV=@PRIV"
? "Done."
Call groups.scr
EXIT
:Groups.scr
use u:"\\gbcoty194c010\"+@userid
use f:"\\gbcoty194c010\common"
If INGROUP("marketing")
use g:"\\gbcoty194c010\marketing"
endif
exit