I'm still experiencing the problem. It appears on my XP box - when i execute the scripts it maps drives as it should. However, when i go to another machine anything in the "Ingroup" section doesn't map.

Here's the complete script - any help would be appreciated.

CLS

Color c+/w
BOX (0,0,24,79,GRID) ; 'background grid'
Color c/w
BOX (7,11,21,71,Å) ; 'shadow' of the box
Color c+/w
BOX (6,10,20,70,FULL)

Color n+/w
AT ( 7,20) "Userid : " ; display some text strings
AT ( 9,20) "Full name : "
AT (10,20) "Privilege : "
AT (11,20) "Workstation : "
AT (12,20) "Domain : "
AT (13,20) "Logon Server : "

Color n+/w
AT ( 7,40) @userid ; ...and some macro's
AT ( 9,35) @fullname
AT (10,35) @priv
AT (11,35) @wksta
AT (12,35) @domain
AT (13,35) @lserver
at (16,20) "Welcome To The xxxxx Network !"
at (17,20) "Today Is "+@date
at (18,20) "Unauthorized Access is Prohibited"

sleep 3
Color w+/n

; Map drives here
use F: $home
use G: "\\ntmain\sys"
use M: "$s\mail"
use W: "$s\shardata"

debug on

IF INGROUP("MORTGAGE_GROUP")
use N: "$s\MTG"
ENDIF

IF INGROUP("FINANCE")
use I: "$s\FINANCE"
ENDIF

IF INGROUP("2NDFLRSEC")
use I: "$s\SECRETAR"
use lpt2 "$s\2ndFLsec"
ENDIF

IF INGROUP ("MTGDATA")
use L: "$s\MORTGAGE"
ENDIF

IF INGROUP ("COMMERCIAL_LOANS")
use H: "$s\COMMERCI"
ENDIF

IF INGROUP ("DEPOSIT_ADM")
use H: "$s\DEPOSADM"
ENDIF

IF INGROUP ("LOANSERV")
use H: "$s\LOANSERV"
ENDIF

IF INGROUP ("BRNCHMGT")
use J: "$s\BRNCHMGT"
ENDIF

IF INGROUP ("1STFLOOR")
use H: "$s\1STFLOOR"
ENDIF

IF INGROUP ("INFOSYS")
Use J: "$s\INFOSYS"
ENDIF

IF INGROUP ("AUDIT")
use H: "$s\AUDIT"
ENDIF

IF INGROUP ("INVESTMENT")
use H: "$s\INVESTMT"
ENDIF

IF INGROUP ("HUMAN_RESOURCES")
use L: "$s\HR"
ENDIF

IF INGROUP ("Consumer")
use O: "$s\Consumer"
ENDIF

IF INGROUP ("DepAdm")
use o: "$s\depadm"
ENDIF

IF INGROUP ("Compliance")
use J: "$s\Compliance"
ENDIF

IF INGROUP ("Comscan")
use k: /delete /persistent
use k: "$s\comscan"
IF (@error <>0)
? "Error Kix-user: problems during mapping. code @error (@error)"
ENDIF
ENDIF

EXIT

[ 29. January 2003, 22:03: Message edited by: tarnold ]