Pause installation process and wait for user
I am embedding a mySql install in my NSIS installer and I am doing it with the following:
ExecWait '"msiexec" /i "$INSTDIR\mysql-essential-5.1.50-win32.msi"'
The problem is when it is finished installing it closes and opens a separate exe used to configure the mysql instance. When this happens the NSIS installer resumes it's installation. I need it to wait until after the user is done configuring mySql and closes that exe. Anyone have any ideas how I can accomplish this? Is there a way to pause the install and wait until the user clicks a 'resume' button?