IS12 Changing Project Properties from the Command Line

Changing Project Properties from the Command Line

InstallShield 12

The InstallShield automation interface enables you to query and modify many project properties from an unattended build process, using, for example, a VBScript script or Visual Basic application.

The framework of any script that uses the automation interface to access a project appears as follows (you can copy this script into a text file called Framework.vbs and then double-click the file icon):

Set oProject = CreateObject("IswiAuto12.ISWiProject")

oProject.OpenProject "C:/MySetups/MyProject.ism"

 
 

' perform queries and changes here

 
 

oProject.SaveProject ' necessary only if modifying the project

oProject.CloseProject

你可能感兴趣的:(IS12 Changing Project Properties from the Command Line)