I am trying to script network printer installation based upon the physical location a user logs on from...currently I am using DHCP reservations and scripting according to IP address and what group the user account is part of. What I'm trying to accomplish through KIX is to group my computer accounts and script the network printer according to what group the comptuer account is in.

Here's a snapshot of my KIX:

if INSTR("$groups","Nurses;") AND INSTR("$ipadd","10.1.1.201") OR INSTR("$ipadd","10.1.1.202") OR INSTR("$ipadd","10.1.1.203")
if ADDPRINTERCONNECTION ($pod1ptr) = 0 ? "Added printer connection...." endif
endif

Is it possible to script on computer account group membership?

Thanks!
Mike