Cims
Gets the Cims object for the group profile.
Syntax
Cims Cims {get;}
Property value
The Cims object for the group profile.
Discussion
This property serves as a shortcut for retrieving data.
Example
The following code sample illustrates using Cims in a script:
... function doThings(gp2) set objZone2 = gp2.Cims.GetZone("ajax.org/Zones/test") gp2.Group.AddUnixProfile objZone2,objProfile.Gid,objProfile.Name end function set cims = CreateObject("Centrify.DirectControl.Cims3") set objZone = cims.GetZone("ajax.org/Zones/default") for each gp2 in objZone.GetGroupUnixProfiles doThings gp2 next ...