MSI with a Configuration Pop Up at the End of Installation
Anyone know of a way to supress or get rid of a configuration pop up that comes up at the end of an MSI installation? I tried the MST route but the pop up comes up after the MST is captured. The pop up is unrelated to the MSI. Any help would be very appreciated.
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
jmaclaurin
12 years ago
Ya, those are a real pain in the butt. If it spawns after the install is complete, you may be able to capture it like you would if you were capturing an exe to make an msi.
Here is a trick I have done many times.
If it runs at the end of the MSI install, but before the MSI is completed installing, you can sometimes suppress that with /qn and then add the configurations after or with your MST.
Also, check with the vendor for hidden properties which could be in an install readme.
Here is a trick I have done many times.
- Start a repackage capture and use Notepad.exe as the install exe.
- Start the capture and then Notepad opens, run your configuration wizard.
- When done, close Notepad and complete the repackage capture.
- Review the capture to see what changes need to be made.
If it runs at the end of the MSI install, but before the MSI is completed installing, you can sometimes suppress that with /qn and then add the configurations after or with your MST.
Also, check with the vendor for hidden properties which could be in an install readme.
Posted by:
Arminius
12 years ago
Post-install configs can be tough. You have some data being entered, possibly not by the MSI, and stored either in files or the registry. But you already knew that. Snapshotting the changes is a good way to see exactly what is being changed when you enter that info. It's more work, but you can also do Process Monitor and see exactly which registry keys and files are being written to. Again, that's more work.
Before I go down either road, I make sure I do a verbose log and look for the information entered and see if that corresponds to a public property. Sometimes that saves a bunch of time.
Before I go down either road, I make sure I do a verbose log and look for the information entered and see if that corresponds to a public property. Sometimes that saves a bunch of time.
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.