Loading
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

  • 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.
    Expand Post

Loading
Automation Interface - ISVirtualPackage Settings