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
- :
- Set Product_version at runtime
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
‎Feb 13, 2017
04:34 AM
Set Product_version at runtime
I have a 'Basic MSI' project of InstallShield 2013 Pro. I would like to create the setup with isbuild.exe like "isbuild.exe" -p".ism" -b"".
Is it possible to set the 'Product Version' and 'Product Name' Properties, which are defined in the 'General Information' tab of the project, via Batch or PowerShell or parameter or whatever before isbuild.exe is going to start?
Is it possible to set the 'Product Version' and 'Product Name' Properties, which are defined in the 'General Information' tab of the project, via Batch or PowerShell or parameter or whatever before isbuild.exe is going to start?
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 15, 2017
03:37 PM
you'll want to use the command line interface. I use the .ini file approach.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 15, 2017
05:18 PM
Instead of isbuild.exe you might want to look at IsCmdBld.exe. It has a few options that might help.
-y version number in the format xx.xx.xxxxx
-z set Property to Value in built MSI
Another way that I've used is to save the ISM as XML format instead of Binary format (the default). Then I just write to the XML file into the spots for the things I want to update and save before starting the actual build.
Chad
-y
-z
Another way that I've used is to save the ISM as XML format instead of Binary format (the default). Then I just write to the XML file into the spots for the things I want to update and save before starting the actual build.
Chad
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 20, 2017
08:34 AM
Thank's a lot for reply.
I think the easiest way is to use IsCmdBld.exe. I'll try that.
I had looked at the ism-file but did not know the possibility to saved it as an xml-file. Thank's for the hint.
I think the easiest way is to use IsCmdBld.exe. I'll try that.
I had looked at the ism-file but did not know the possibility to saved it as an xml-file. Thank's for the hint.