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
本文介绍了如何通过命令行界面使用自动化接口查询并修改安装盾12项目的多个属性,包括使用VBScript脚本或Visual Basic应用程序进行无监督构建过程。

被折叠的 条评论
为什么被折叠?



