Hi,

when I was working on a new script I tryed to use the "InGroup"-command to check if the user was a member of several AD-groups. If he was, then a new shortcut would be copied to the desktop.

In the "command reference" on kixtart.org I found this example:

 Code:
IF INGROUP("Developers", "Testers", 1) = 1
    ? "Member of Developers AND Testers group"
ENDIF


I never got this to work, exept when I removed the "= 1".
 Code:
 
IF INGROUP("Developers", "Testers", 1)
    ? "Member of Developers AND Testers group"
ENDIF


Is it just me misunderstanding the "command reference", or is it a typo?