cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
CraigD
Level 5

Automation Interface - ISVirtualPackage Settings

Hi,

Is there an automation interface in InstallShield 2010 that lets you populate the ISVirtualPackage table settings?

I'm already using a VBScript to cater for some Properties, and the Product and Release configuration but was hoping to extend it to the ISVirtualPackage settings.

Cheers,
Craig
Labels (1)
0 Kudos
(1) Reply
Cygnusx1
Level 8

something like this should do.

Set oInstaller = CreateObject("WindowsInstaller.Installer")
Set Database = oInstaller.OpenDatabase(,1)
Set View = Database.OpenView("INSERT INTO ISVirtualPackage (columns) VALUES (values)")
View.Execute
View.Close

of course you will need to see if the table exists or not first.
0 Kudos