Skip to content

Promote Package

Promotes a package

Public Function PackagePromote(ByVal packageName As String, ByVal packageVersion As String, ByVal packageType As String) As Boolean

PackageName (String)

The name of the package

PackageVersion

The version of the package, i.e.: “v1.0”

PackageType (String)

Type of package

  • “Computer”
  • “User”

The function returns true if successful.

VBScript

Set oCMS = CreateObject(``"CapaInstaller.SDK"``) wscript.echo oCMS.SetDefaultManagementPoint(``"1"``) wscript.echo oCMS.PackagePromote(``"Mozilla Firefox 76.0 EN"``,``"v1.0"``,``"Computer"``)