I am trying to execute several installers using [Run]. My problem is, since each entry might take up to 1-2 minute(s), my installer window becomes frozen. I can't Cancel, I can't Re-size, and most disturbingly, I can't Move the window.
Here's the method I use:
[Run]
Filename: "{tmp}\DesktopLinkSetup.exe";
StatusMsg: "Installing Desktop Link. Please wait, this can take up to 1 min";
Flags: runhidden;
Parameters: "/VERYSILENT";
Filename: "{tmp}\NotificationLinkSetup.exe";
StatusMsg: "Installing Notification Link. Please wait, this can take up to 2 min";
Flags: runhidden;
Parameters: "/VERYSILENT";
I know [Run] might have blocked my UI thread, but is there any way to make window react to user mouse control? like Move Window?
thanks