This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Automation Interface - ISVirtualPackage Settings
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 29, 2010
05:45 AM
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
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
1 Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 29, 2010
08:05 AM
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.
Set oInstaller = CreateObject("WindowsInstaller.Installer")
Set Database = oInstaller.OpenDatabase(
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.
