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
- :
- Latest Setup will not uncompress
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
Oct 12, 2011
09:04 PM
Latest Setup will not uncompress
I'm using IS 2011 pro.
When building a patch I go and select my latest install. It is a self extracting exe. I get the dialog that says:
"The selected setup is compressed. Patch creation requires that the setup be uncompressed. Would you like InstallShield to create an uncompressed version of this setup now?"
I select YES, select a folder for InstallShield to decompress my install, choose ok and get a dialog that states:
"The dialog specified is invalid"
What does that mean? It decompressed my previous install just fine as it was an MSI. Am I not able to easily patch a compressed EXE? Do I have to install it somewhere, go get the cached MSI, copy it to a temp location and use that to create my patch?:confused:
Any help would be appreciated!
When building a patch I go and select my latest install. It is a self extracting exe. I get the dialog that says:
"The selected setup is compressed. Patch creation requires that the setup be uncompressed. Would you like InstallShield to create an uncompressed version of this setup now?"
I select YES, select a folder for InstallShield to decompress my install, choose ok and get a dialog that states:
"The dialog specified is invalid"
What does that mean? It decompressed my previous install just fine as it was an MSI. Am I not able to easily patch a compressed EXE? Do I have to install it somewhere, go get the cached MSI, copy it to a temp location and use that to create my patch?:confused:
Any help would be appreciated!
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Oct 13, 2011
12:31 AM
Hi There,
To decompress it, it basically invokes the setup with:
setup.exe /a /v"/qb+"
To do an administrative install. This is required so that the microsoft Patch API's can do direct comparisons against the uncompressed files. It's actually a requirement of those API's and less for InstallShield, but I digress.
I would start by generating an MSI logfile of the above command like so:
setup.exe /a /v"/qb+ /l*v c:\admin.log"
And see what it says is the matter. I can't guess why it gives an error about a missing dialog, unless there's several issues, like an error occurring, and you've deleted or renamed ErrorDialog.
To decompress it, it basically invokes the setup with:
setup.exe /a /v"/qb+"
To do an administrative install. This is required so that the microsoft Patch API's can do direct comparisons against the uncompressed files. It's actually a requirement of those API's and less for InstallShield, but I digress.
I would start by generating an MSI logfile of the above command like so:
setup.exe /a /v"/qb+ /l*v c:\admin.log"
And see what it says is the matter. I can't guess why it gives an error about a missing dialog, unless there's several issues, like an error occurring, and you've deleted or renamed ErrorDialog.
