Get users linked to vpp user

Description

Gets a list of users linked to a vpp user, including inventory variables like full name and emails.

Syntax

GetUsersLinkedToVppUser(ByVal vppUserID As Integer) as ArrayList

Parameters

vppUserID (Integer)

The id of the vpp user.

Return Value

The function returns an array of users. Each user in the array is a joined line with the character defined with Set splitter.

  • user.Name
  • user.Created
  • user.LastExecuted
  • user.Status
  • user.Description
  • user.GUID
  • user.ID
  • user.Type.Name
  • user.UUID
  • user.Location
  • user.fullName
  • user.EmailPrimary
  • user.EmailSecondary
  • user.EmailTertiary

Example

VBScript
Set oCMS = CreateObject("CapaInstaller.SDK") 
Set aUnit = CreateObject("System.Collections.ArrayList") 
WScript.echo oCMS.SetDefaultManagementPoint("1")
Set aVppUsers = oCMS.GetVppUsersAll()
For Each vppUser In aVppUsers
  Set aTemp = Split(vppUser ,"|")
  Set vppUserID = aTemp(0)
  Set aUnit =  oCMS.GetUsersLinkedToVppUser(vppUserID) 
  For Each item In aUnit 
    WScript.echo item 
  Next
Next