We run a fairly simple KIX script, doing nothing more than

IF INGROUP("group") THEN
USE g: \\someserver\someshare
End IF

This has worked well for us for a while but now I wish to do something a bit more complicated.

I want to install a piece of software on every machine at logon. The software is sart enough to check to see if it is already installed and skip if it is. SO that is not an issue (it is the ALtiris client).

The problem is we dont necessarly want this to run on any machine that is in our Servers OU.

Idealy I would do something like

If Machine <> OU=Servers,DC=TIGR,DC=ORG THEN
\\server\share\package.exe
End IF

Has anyone done anything like this before? That is has anyone performed an action based on the Machines' OU membership?

Any Help whoud be appriecieated. I have done a search but found nothing like what I need.