
05-05-2016, 04:02
|
|
Registered User
|
|
Join Date: Feb 2015
Location: indonesia
Posts: 21
Thanks: 17
Thanked 2 Times in 2 Posts
|
|
Quote:
Originally Posted by Carldric Clement
Use This:
Code:
procedure CurStepChanged(CurStep: TSetupStep);
var
URL: integer;
begin
if (CurStep = ssPostInstall) and ISDoneError then
begin
Exec2(ExpandConstant('{uninstallexe}'), '/VERYSILENT', false);
end;
if (CurStep=ssPostInstall) and not (ISDoneError) then
begin
ShellExec('open', 'http://your.app.url/', '', '', SW_SHOW, ewNoWait, URL);
end;
end;
|
still not working .
can you help me edit my script ? heheh
|