Create package
Description
Section titled “Description”Creates a package.
Syntax
Section titled “Syntax”CreatePackage(Byval PackageName as String, Byval PackageVersion as String, Byval UnitType as String, Byval DisplayName as String) as Boolean
Parameters
Section titled “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
Section titled “Return Value”Boolean. The function returns True if successful, otherwise false.
Example
Section titled “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)")