k, i've setup some code in the beginning of my installer (in the Before tab of the first install screen), it checks the web for an update, if update found, it downloads and launches the update, and is supposed to abort...
well, at first, i had the Abort Setup cmd inside an IF statement, but it wasn't working, so i moved it outside the IF, and set up some labels, similar to the Help manual, yet it's still not working (it will properly detect the update, download, and execute, but it won't abort....)
<pre>IF (%executed%=TRUE)
GOTO Label (abort)
END IF
IF (%executed%=FALSE)
GOTO Label (skip abort)
END IF
abort <<<<label
Abort Setup
skip abort <<<<label
</pre>
any ideas what i'm doing wrong?
well, at first, i had the Abort Setup cmd inside an IF statement, but it wasn't working, so i moved it outside the IF, and set up some labels, similar to the Help manual, yet it's still not working (it will properly detect the update, download, and execute, but it won't abort....)
<pre>IF (%executed%=TRUE)
GOTO Label (abort)
END IF
IF (%executed%=FALSE)
GOTO Label (skip abort)
END IF
abort <<<<label
Abort Setup
skip abort <<<<label
</pre>
any ideas what i'm doing wrong?
Comment