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
- :
- IsCmdBld.exe parameters ?
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 28, 2017
11:08 AM
IsCmdBld.exe parameters ?
I have file FlukeDMS17New2016.ism (see attachment). Using this file I am able to succesfully vuild my installation files using InstallShield 2016 GUI
File FromGui.txt contains the list of all files which I obtain if I build Release "Fluke DMS 1.7.professional (cofgiguration Komplett) from GUI, File Gui.png contains corresponding GUI.
For distribution I can use directory C:\...DISK1 containing 7 files:
setup.exe
Fluke DMS 1.7.professional.msi
1031.mst
1036.mst
1043.mst
Data1.cab
or directory C:\BurnData\DMS_1_7_00_98\"Fluke_DMS_1_7_professional_1_7_00_98\Complete
containig the same 7 files.
From command line I tried with the following parameters
c:\Program Files\InstallShield\2016\System\IsCmdBld.exe" -p "c:\fk05uk\Komponente InstallShield\DMS17pro_Install\FlukeDMS17proNEW2016.ism" -r "Fluke DMS 1.7.00 professional" -a "Komplett" -b "c:\BurnData
The list of produced output files is in attached file FromCommandLine.txt
I expected similiar output as from Gui,
However I cannot find files .msi, .mst, .cab.
Probably (surely) my command line parameters are wrong.
Can you help me please how to set command line paramaters ?
Juraj Weisz
File FromGui.txt contains the list of all files which I obtain if I build Release "Fluke DMS 1.7.professional (cofgiguration Komplett) from GUI, File Gui.png contains corresponding GUI.
For distribution I can use directory C:\...DISK1 containing 7 files:
setup.exe
Fluke DMS 1.7.professional.msi
1031.mst
1036.mst
1043.mst
Data1.cab
or directory C:\BurnData\DMS_1_7_00_98\"Fluke_DMS_1_7_professional_1_7_00_98\Complete
containig the same 7 files.
From command line I tried with the following parameters
c:\Program Files\InstallShield\2016\System\IsCmdBld.exe" -p "c:\fk05uk\Komponente InstallShield\DMS17pro_Install\FlukeDMS17proNEW2016.ism" -r "Fluke DMS 1.7.00 professional" -a "Komplett" -b "c:\BurnData
The list of produced output files is in attached file FromCommandLine.txt
I expected similiar output as from Gui,
However I cannot find files .msi, .mst, .cab.
Probably (surely) my command line parameters are wrong.
Can you help me please how to set command line paramaters ?
Juraj Weisz
(13) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Nov 28, 2017
11:58 AM
If I add option -c COMP then my command line is:
C:\WINDOWS\system32>"c:\Program Files\InstallShield\2016\System\IsCmdBld.exe" -p "c:\fk05uk\Komponente InstallShield\DMS17pro_Install\FlukeDMS17proNEW2016.ism" -r "Fluke DMS 1.7.00 professional" -a "Komplett" -b "c:\BurnData" -c COMP
and corrsponding list of files is in attached fiile FromCL_COMP.txt.
It is stillnot what I expected.
C:\WINDOWS\system32>"c:\Program Files\InstallShield\2016\System\IsCmdBld.exe" -p "c:\fk05uk\Komponente InstallShield\DMS17pro_Install\FlukeDMS17proNEW2016.ism" -r "Fluke DMS 1.7.00 professional" -a "Komplett" -b "c:\BurnData" -c COMP
and corrsponding list of files is in attached fiile FromCL_COMP.txt.
It is stillnot what I expected.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Nov 29, 2017
02:55 PM
It appears that the product configuration and release name are specified conversely. It should be IsCmdBld.exe -p "c:\fk05uk\Komponente InstallShield\DMS17pro_Install\FlukeDMS17proNEW2016.ism" -a "Fluke DMS 1.7.00 professional" -r "Komplett"....
Not applicable
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Nov 22, 2018
04:44 AM
Finally, -a "Build 245" points to the specific product configuration. Project: Some of the ISCmdBld.exe command-line parameters are applicable to only certain project types liteblue.me.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Dec 21, 2018
11:32 PM
Can anyone let me know how to modify the product version in the command line without actually modifying in the install shield project. Should I use path variables to achieve this tellthebell?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Dec 25, 2018
11:52 PM
ISCmdBld.exe file exist at C:\Program Files (x86)\InstallShield\2014\System. Following is the command syntax to run it to make the build on command prompt:
ISCmdBld.exe -p PATH_OF_ism_File -r RELEASE_NAME -c COMP -a “Build 001”
The first parameter above, starting with -p, is the path to the .ism file that you would like to build. Next, -r RELEASE_NAME is the name of the release.
The parameter -c COMP specifies that you would like your package to be compressed into one file.
Finally, -a “Build 001” points to the specific product configuration.
If a build error occurs during a command-line build, InstallShield sets the environment variable ERRORLEVEL to 1.
If the build completes without any errors, ERRORLEVEL is set to 0 tellthebell.
ISCmdBld.exe -p PATH_OF_ism_File -r RELEASE_NAME -c COMP -a “Build 001”
The first parameter above, starting with -p, is the path to the .ism file that you would like to build. Next, -r RELEASE_NAME is the name of the release.
The parameter -c COMP specifies that you would like your package to be compressed into one file.
Finally, -a “Build 001” points to the specific product configuration.
If a build error occurs during a command-line build, InstallShield sets the environment variable ERRORLEVEL to 1.
If the build completes without any errors, ERRORLEVEL is set to 0 tellthebell.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jan 05, 2019
02:39 AM
Project: Some of the ISCmdBld.exe command-line parameters are applicable to only certain project types litebluee.us
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jan 14, 2019
09:24 AM
Would anyone be able to tell me how to change the item form in the order line without really altering in the introduce shield venture. Should I use way factors to accomplish this ncsecu login
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Mar 08, 2019
01:06 AM
Hey fellow, i have one question and i want answer to this Can anyone let me know how to modify the product version in the command line without actually modifying in the install shield project. Should I use path variables to achieve this, please help me.. tellthebell
Thanks!
Waiting for your response.
Thanks!
Waiting for your response.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jun 13, 2020
08:38 AM
it may help you
first create a path variable say product verson with a default value and assign the vaiable to the product verson.
ISCmdBld.exe -p "%INST_SHIELD_FILE%" -l ISProductVersion="%RELEASE_VERSION%" <a href="https://topstorevipapp.com/">Download Topstore on Ios</a>
first create a path variable say product verson with a default value and assign the vaiable to the product verson.
ISCmdBld.exe -p "%INST_SHIELD_FILE%" -l ISProductVersion="%RELEASE_VERSION%" <a href="https://topstorevipapp.com/">Download Topstore on Ios</a>
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Aug 30, 2019
01:36 AM
It should be IsCmdBld.exe -p "c:\fk05uk\Komponente InstallShield\DMS17pro_Install\FlukeDMS17proNEW2016.ism" -a "Fluke DMS 1.7.00 professional" -r "Komplett".... Some of the ISCmdBld.exe command-line parameters are applicable to only certain project types liteblue.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Dec 21, 2019
03:39 AM
flower, sometimes known as a bloom or blossom, is the reproductive structure found in flowering plants (plants of the division Magnoliophyta,
- Tags:
- svf
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Oct 05, 2020
06:54 AM
Thanks for sharing this best connection
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jul 15, 2021
04:23 AM
It should be IsCmdBld.exe -p "c:\fk05uk\Komponente InstallShield\DMS17pro_Install\FlukeDMS17proNEW2016.ism" -a "Fluke DMS 1.7.00 professional" -r "Komplett".... Some of the ISCmdBld.exe trainwithmable command-line parameters are payslipview applicable to only certain project types Miocado