Skip to content

Get devices linked to vpp user

Gets a list of devices linked to a vpp user.

GetDevicesLinkedToVppUser(ByVal vppUserID As Integer) as ArrayList

vppUserID (Integer)

The id of the vpp user.

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

  • unit.Name
  • unit.Created
  • unit.LastExecuted
  • unit.Status
  • unit.Description
  • unit.GUID
  • unit.ID
  • unit.Type.Name
  • unit.UUID
  • Unit.IsMobileDevice (“True” or “False”)
  • unit.location

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