いくつかの組み込みページといくつかのカスタム ページを含む NSIS を使用してセットアップを作成しています。インストール中にコマンド ラインが渡された場合にのみ、インストールを使用してカスタム ページを表示したいのですが、どのように実行できますか?
例
!include "MUI.nsh"
!include nsDialogs.nsh
OutFile "myCustomPage.exe"
var installmethod
Page Custom MyCustomPage
Page Custom MyCustomPage1
Page Custom MyCustomPage3
Function MyCustomPage
nsDialogs::Create 1044
nsDialogs::Show
FunctionEnd
Function MyCustomPage1
nsDialogs::Create 1044
nsDialogs::Show
FunctionEnd
Function MyCustomPage3
nsDialogs::Create 1044
nsDialogs::Show
FunctionEnd
Section Dummy
SectionEnd
上記の例では、3 つのページがあります。通常のインストールでは、MyCustomPage と MyCustomPage3 の 2 つのページのみを表示したいと考えています。コマンド ライン (特定のコマンド ライン) が渡された場合、インストール中に 3 つのページすべてが表示されるはずです。