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
- :
- Passing installer title in build params??
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
Nov 30, 2009
06:51 PM
Passing installer title in build params??
Hi
I’m using Iscmdbld.exe to build my Basic MSI project. In my project I have 3 features (lets call them apple, orange, pear ). So I build one project, but using the build parameters so that I build only apple or orange or pear into my installer. I want to set the title of my installer to when I build apple 2.1, when the installer is run by an end user it says “Installing Apple version 2.1” in the title. I don’t want to have to open up my project every time there’s a minor version change to updated a value. I just want to change the shortcut to pass the new title (or part of the title) as a build parameter. How can I do this?
I’m using Iscmdbld.exe to build my Basic MSI project. In my project I have 3 features (lets call them apple, orange, pear ). So I build one project, but using the build parameters so that I build only apple or orange or pear into my installer. I want to set the title of my installer to when I build apple 2.1, when the installer is run by an end user it says “Installing Apple version 2.1” in the title. I don’t want to have to open up my project every time there’s a minor version change to updated a value. I just want to change the shortcut to pass the new title (or part of the title) as a build parameter. How can I do this?
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Nov 30, 2009
07:11 PM
Instead of using "[ProductName]" in the titles (as projects do by default), perhaps use, say, "[MyTitle]"; you can then pass the value of MyTitle or whatever you choose using the -z switch to IsCmdBld.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Dec 01, 2009
02:35 PM
Thanks it's perfect!