//---------------------------------------------------------------------------
// OnEnd
//
// The OnEnd event is called at the end of the setup. This event is not
// called if the setup is aborted.
//---------------------------------------------------------------------------
function OnEnd()
STRING szPath;
begin
// インストール時、インストーラ完了後に インストールしたディレクトリにある a.exe を実行する
szPath = TARGETDIR ^ "\\a.exe";
LongPathToQuote ( szPath, TRUE );
// 終了時に実行 (返り値はチェックしない)
LaunchApp ( szPath, "" );
end;
|