I have an installer, a compiled NSIS script and it first checks if another version of my application is running on the system. If another instance exists, then it first triggers the silent uninstallation and then proceeds with installation of the new intance.

I use ExecWait to trigger the unistaller in the silent mode but my main installer process does not wait and goes ahead with the installation process.

How do I force the main installer to wait for the silent uninstallation to complete first?

link|improve this question
feedback

2 Answers

There is a special uninstaller parameter you need to use (The reason for this is that normally the uninstaller needs to be able to delete itself)

ExecWait '"$INSTDIR\uninstaller.exe" /S _?=$INSTDIR'
link|improve this answer
+1: I think, this doesn't answer the question, works anyway for small apps. So, +1 for workaround :-). Actually, ExecWait still doesn't wait for the end of uninstaller, but uninstaller is now executed silently (/S) in background. If uninstaller takes long time, it would uninstall also currently installed data. Thus, uninstaller and installer would work in parallell. So pay attention! – Valentin Heinitz Feb 15 '11 at 16:30
1  
@Valentin: What makes you think ExecWait does not wait? It does WaitForSingleObject(hChildProcess,INFINITE); – Anders Feb 15 '11 at 23:40
feedback

It is not just about "ExecWait". It is also about "_?", a special uninstaller instruction. Actually, during uninstall the uninstaller.exe is copied to a temp directory and then executed from there.

This step of copying and invoking a new uninstaller from temp directory might be fast and the call would come back immediately without actually waiting for the uninstaller to complete.

By using "_?" instruction you tell NSIS to run the uninstaller from the same place and not from the temp directory.

By using "ExecWait" in addition to the "_?" you tell NSIS to wait for the "uninstaller" process to complete and then return. This way you achieve what you need.

refer http://nsis.sourceforge.net/Docs/Chapter3.html#3.2.2 for more information.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.