|
I'm hoping someone can help me with this, I"m new to Kixtart and still learning the different commands etc but there is one thing I'm having problems with in particular.
I'm trying to get the login script to add different printers for different users depending on what group they're in. Here's a copy of the script I'm using...
If INGROUP("group1") If addPrinterConnection("\\server\printer1")=0 ?"Added Printer Connection...printer1" ENDIF
If INGROUP("group2") If addPrinterConnection("\\server\printer1")=0 ?"Added Printer Connection...printer1" If addPrinterConnection("\\server\printer3")=0 ?"Added Printer Connection...printer3" ENDIF
If INGROUP("group3") If addPrinterConnection("\\server\printer6")=0 ?"Added Printer Connection...printer6" ENDIF
The problem is, is that the above script is not really working. It checks the first part of it for people in 'group1' but then doesn't check the rest of the groups. Can someone please help me with this???
Edited by sgraham978 (2007-02-01 03:43 AM)
|