New Kixtart user here. I was able to get a simple script up and running to map drivers and user shares based on group memberships. However, I ran into trouble when I decided to expand into mapping printer. Here is my test code:
Code:
;Map Canon Users to Canon Shares
IF INGROUP("Canon Print")
use lpt2: "\\mamco-pdc\canon print"
IF @error = 0
? "Canon Printer Mapped."
ELSE
? "ERROR - Printer not mapped."
ENDIF
ENDIF


Under Win2k, when I step through my script in debug mode, I see the msg "Canon Printer Mapped." However, the printer is not listed under Printers. Under XP, I get the error message from my code. I have checked the permissions on the print server (2003 server), and Everyone has at least Print permissions. And yes, the user account I'm testing with is a member of the proper group.
Any suggestions?