3

私は NSIS スクリプトの初心者です。別のインストーラー (FEKO) をラップするカスタム インストーラーを作成したいと考えています。NSIS Webサイトで提案されている他のインストーラーを埋め込むこの方法は、私にはうまくいきませんでした

スクリプトは正しくコンパイルされますが、組み込みアプリケーションはインストールされません。ここにスクリプトがあります

!include "MUI2.nsh"
!include "logiclib.nsh"

!insertmacro MUI_PAGE_WELCOME 
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_LANGUAGE "English"


#Name of the application we are trying to install
Name "FEKO"

# update this section to add 'contact' info
BrandingText "Please contact support at xyz@abc.com for any issues.   "


# define the name of installer
OutFile "Custom_FEKO_6.2_Installer.exe"

# define default installation directory
InstallDir "C:\FEKO\6.2\"

DirText "Choose a directory where you want to install FEKO"


# start default section
Section "FEKO Installation"

    # set the installation directory as the destination for the following actions
    SetOutPath $INSTDIR

    DetailPrint "Extracting FEKO Files into Installation Directory" 

    # specify files to go into the installation directory path
    File /r "C:\Feko_Installer\*"

    # set the current working directory
    SetOutPath "$INSTDIR"      
SectionEnd


Section "FEKO installation" FEKO
    DetailPrint "Installing Feko"

    # run the FEKO installer and wait for it to finish

    File "C:\Feko_Installer\feko_distrib_6.2_win64.exe"
    ExecWait "$INSTDIR\feko_distrib_6.2_win64.exe"

    DetailPrint "Finishing up Installation"
SectionEnd
4

1 に答える 1

4
  1. RequestExecutionLevel admin子インストーラーに管理者権限が必要な場合は、スクリプトに入れる必要があります。exe に昇格を要求するマニフェストがある場合、ExecWait (CreateProcess) は失敗します。
  2. ExecWait の正しい引用は次のとおりです。ExecWait '"c:\full\path\to\app.exe" /param1 "par am 2" /param3'
于 2013-10-01T02:30:34.890 に答える