Hi, Thank you for your quick reply. I have followed your instruction and unluckly failed. When the machine has JRE already, the setup file installed " successfully ". But under the "Program Files", I found nothing. It didn't install anything. It means I can't find "C:\Program Files\MyApp" though it ...
I don't want user to download JRE in prerequisite when JRE is not available on target machine.
So I bundle JRE in setup file. Here is my question: Can JRE be installed when there is no JRE on target machine? And if target machine has JRE already, then don't install the bundled JRE.
I think first we should make an agreement that the execution sequence is related with the list sequence. So if PROCESS is initialized with "RUNNING", the first EndDialog Event's condition is not satisfied. The installation won't continue. However, if it's actually not running, the installation ...
I think the execution sequence of events is the list order of the events. At first, PROCESS is not "RUNNING" and is not "NOT RUNNING. So the EndDialog's condition is satisfied. Then the DoAction DetectAIRunningOrNot is executed, and PROCESS is set to "RUNNING"(if AI is running). So the message box ...
Please note that the DoAction control event doesn't necessarily have to be the first control event in the list. Even if it is the third control event, it will still be executed before the "EndDialog" control events which continue the installation. Therefore, you can leave the DoAction control ...
My AI version is 6.6. I met a problem that I can’t move DoAction Event up.
Do you have any method to move DoAction Event up?
(The first two events EndDialog and SpawnDialog can’t be moved down neither.)
For what you need you can try this approach: - use a custom action to detect if Excel is running - add this custom action as a DoAction control event for the "Install" button - use the property set by the custom action ("PROCESS") to make sure that the user cannot continue - the user will be ...
Hi, I want setup file executed like this: When user clicks "Install", setup checks whether Excel is running or not. If not running, execute like common situation. Else if running, pop out a dialog with a label "Please close Excel!". The pop out dialog may also contains a Retry button and a Cancel ...
The solution is to add the MSI as a prerequisite after extracting it on your development machine. The EXE is just an archive which contains the MSI, the EULA and a Readme file.
But the MSI is about 5MB and our project setup file only 1MB. So if we include it in our setup file, the size will be ...
Hi, I add a Custom Launch Condition to check whether the user has installed Excel or not. And I also add some prequisites. But if the user has not installed anything. Then the prerequisites will be checked before my Custom Launch Condition. Is there any way to let Custom Launch Condition be checked ...