TimeStamp
Gets the date and time that the pending user profiles were imported from the data source.
Syntax
DateTime TimeStamp {get;}
Property value
The date and time that the pending user data was imported.
Example
The following code sample illustrates using this property in a script:
'Specify the zone you want to work with
Set objZone = cims.GetZone("w2k3.net/Acme/Zones/default")
‘Display the time users where imported
Set objPendUsers = objZone.GetImportPendingUsers
If not objPendUsers is nothing then
wScript.Echo "Imported from source: ", objPendUsers.TimeStamp
End if
...