GetUserUnixProfiles

Returns the list of UNIX user profiles for the zone.

Syntax

IUserUnixProfiles GetUserUnixProfiles()

Return value

The UserUnixProfiles object for the zone. This object is a collection of UserUnixProfile objects.

Example

The following code sample illustrates using this method in a script to enumerate all of the user profiles in the default zone:

...  
'Specify the zone you want to work with  
Set objZone = cims.GetZone("acme.com/Program Data/Acme/Zones/default")  
'List the UNIX login name for each profile in the zone  
Set objProfiles = objZone.GetUserUnixProfiles()  
For each profile in objProfiles  
wscript.echo profile.Name  
next  
...