ID

Gets the unique identifier for the UserUnixProfile data object.

Syntax

string ID {get;}

Property value

The unique identifier for the UserUnixProfile data object.

Example

The following code sample illustrates using ID in a script:

...  
'Get the zone object  
Set objZone = cims.GetZone("ajax.org/UNIX/Zones/pilot")  
'Get the Active Directory user object  
set objUser = cims.GetUser("ajax.org/Users/pat.hu")  
'Get the UNIX profile for the user  
profile = objUser.UnixProfileByUid(10001)  
'Display the unique identifier for the user’s UNIX profile  
wScript.Echo “Unique ID: ” & profile.ID  
...