Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Description

Gets a list of OS Images.


Syntax

GetOSImages(Byval OSPointID as Integer) as ArrayList


Parameters

OSPointID (Integer)

OS Point ID


Return value

The function returns an array of OS images. Each element in the array is a joined line with the character defined with Set splitter

  • Image.ID
  • Image.Name
  • Image.Description
  • Image.Filename
  • Image.GUID
  • Image.ImageFile
  • Image.LocalFile
  • Image.OS.Name

Example 

VBScript
Set oCMS = CreateObject("CapaInstaller.SDK") 
Set aUnit = CreateObject("System.Collections.ArrayList") 
Set aUnit =  oCMS.GetOSImages("1") 
for each item in aUnit 
  wscript.echo item 
next 


 
  Related functions

The OS Point ID can be retrieved with the function Get OS points



  • No labels