Create package

Description

Creates a package.


Syntax

CreatePackage(Byval PackageName as String, Byval PackageVersion as String, Byval UnitType as String, Byval DisplayName as String) as Boolean


Parameters

PackageName (String)

The name of the package.

PackageVersion (String)

The package Version.

UnitType (String)

The unit type;

  • "Computer"
  • "User"

DisplayName (String)

The name that the end user is presented with


Return Value

Boolean. The function returns True if successful, otherwise false.


Example 

VBScript
Set oCMS = CreateObject("CapaInstaller.SDK") 
wscript.echo oCMS.SetDefaultManagementPoint("1") 
wscript.echo oCMS.CreatePackage("MSOfficeDK_2012","v12.0","Computer","MicroSoft Office Version 12 (DK)")