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
- :
- Create Patch between 2 exe at command line
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
Aug 30, 2010
07:27 AM
Create Patch between 2 exe at command line
Can we create a Patch build between 2 exe at command line using installshield 2010.
(7) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 01, 2010
10:56 AM
If you set up the patch configuration in InstallShield, the automation interface supports a BuildPatchConfiguration method...
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 03, 2010
05:26 AM
Can you please provide more detail on this?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 03, 2010
08:51 AM
The idea is that you begin by designing a patch in your InstallShield project. The help topic Updating Applications > Upgrades Overview > Patching can help you get started.
Each patch you design has a configuration name, and you can build this patch configuration using the InstallShield automation interface, or the -patch_config switch to the command line build tool ISCmdBld.
Each patch you design has a configuration name, and you can build this patch configuration using the InstallShield automation interface, or the -patch_config switch to the command line build tool ISCmdBld.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 03, 2010
10:29 AM
I understand that this can be done something similar to
ISCmdBld.exe –p "C:\InstallShield 2009 Projects\MyProject1\MyProject1.ism" -patch_config “Version 1.2”
But in Patch design section we need to specify the 2 msi files.
1 for the previous release and 1 for the latest release.
And i have exe files instead of msi files
So with ISCmdBld.exe how i can associate these exe files.
ISCmdBld.exe –p "C:\InstallShield 2009 Projects\MyProject1\MyProject1.ism" -patch_config “Version 1.2”
But in Patch design section we need to specify the 2 msi files.
1 for the previous release and 1 for the latest release.
And i have exe files instead of msi files
So with ISCmdBld.exe how i can associate these exe files.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 07, 2010
01:11 AM
I am trying to build a patch command line using the following:
ISCmdBld.exe –p "C:\InstallShield 2009 Projects\MyProject1\MyProject1.ism" -patch_config “Version 1.2”
and i am getting the following error:
-1114: The parameter '¹p' is not preceded by a switch.
anyone has any idea about this?
ISCmdBld.exe –p "C:\InstallShield 2009 Projects\MyProject1\MyProject1.ism" -patch_config “Version 1.2”
and i am getting the following error:
-1114: The parameter '¹p' is not preceded by a switch.
anyone has any idea about this?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 07, 2010
09:39 AM
It appears the "-p" you posted uses a special character (an en dash?) instead of a hyphen; this often happens if you copied the command from Microsoft Outlook or Word. Same applies to the curly quotation marks around "Version 1.2", which want to be straight quotation marks.
Perhaps type the command (instead of copying and pasting) and see what happens?
Perhaps type the command (instead of copying and pasting) and see what happens?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 14, 2010
02:13 AM
Yes, It's working now after typing the command manually instead of copying and pasting from a document or webpage.