Count
Determines the total number of UNIX profiles defined in the UserUnixProfiles
collection.
Syntax
int Count {get;}
Property value
The number of UNIX profiles in the set.
Example
The following code sample illustrates using Count
in a script:
...
'Get the zone object
Set objZone = cims.GetZone("ajax.org/UNIX/Zones/pilot")
Set objUserUnixProfiles = objUser.UnixProfiles
wScript.Echo "Profile count: " & objUserUnixProfiles.Count
...