インストール後にユーザーがアプリケーションを実行できるようにするチェックボックスの作成方法。
[Run]セクションのpostinstallフラグを確認します。ドキュメントは http://www.jrsoftware.org/ishelp/topic_runsection.htm#postinstall にあります。
どうぞ。
下 [Run]
:
Filename: {app}\{cm:AppName}.exe; Description: {cm:LaunchProgram,{cm:AppName}}; Flags: nowait postinstall skipifsilent
下 [CustomMessages]
:
AppName=mySoftwaresNiceName
LaunchProgram=Start mySoftware after finishing installation
ファイル名をフラグpostinstallで実行セクションに追加します。
コピー&ペーストの例:
[Run]
// User selected... these files are shown for launch after everything is done
Filename: {app}\README.TXT; Description: View the README file; Flags: postinstall shellexec skipifsilent
Filename: {app}\APP.EXE; Description: Run Application; Flags: postinstall nowait skipifsilent unchecked
チェックボックスを作成するには、タスクを作成します。
[Tasks]
Name: StartAfterInstall; Description: Run application after install
それを「実行」アクションにバインドします。
[Run]
Filename: {app}\{#exe}; Flags: shellexec skipifsilent nowait; Tasks: StartAfterInstall
ここで、{#exe}はexeファイルの名前です