【发布时间】:2011-08-19 06:46:09
【问题描述】:
我正在尝试构建一个 NSIS 安装程序,它将执行以下操作:
1 正常运行时,它将使用带有通常选择的安装程序安装应用程序。
2 当安装程序使用 /S 开关运行时,它会静默安装,如果它显示 UI 就可以了。但它应该是自动的。
在我看来,安装程序“工作”,因为它运行,然后再次正确启动应用程序。但是它没有更新任何东西,它几乎就像它运行一样,但没有复制任何文件。
当它是静默安装时,它由以下代码启动(应用程序自行更新)
ProcessStartInfo Pro = new ProcessStartInfo();
Pro.Verb = "runas";
Pro.UseShellExecute = true;
Pro.FileName = gDownloadedFileName;
Pro.Arguments = "/S";
Pro.WindowStyle = ProcessWindowStyle.Normal;
Pro.CreateNoWindow = true;
NSIS 脚本主要(如果人们愿意,我可以发布自定义的 NSIS 支持脚本)
; example2.nsi
;
; This script is based on example1.nsi, but it remember the directory,
; has uninstall support and (optionally) installs start menu shortcuts.
;
; It will install example2.nsi into a directory that the user selects,
!include MUI.nsh
!include fileassoc.nsh
!include Silent.nsh
!define _AppName "My application"
!define _AppExe "My application.exe"
!define _AppVersion "1.0.0.0"
;--------------------------------------------------------------------- Dont edit beloow
; The name of the installer
Name "${_AppName}"
; The file to write
OutFile "DFOInfo_Setup_beta.exe"
; The default installation directory
InstallDir "$PROGRAMFILES\${_AppName}"
; Registry key to check for directory (so if you install again, it will
; overwrite the old one automatically)
InstallDirRegKey HKLM "Software\TheXSoft.com\${_AppName}" "Install_Dir"
RequestExecutionLevel admin
Function .onInit
Call GetDotNet
Call IsSilent
Pop $0
StrCmp $0 1 0 +3
Call SilentInstall
FunctionEnd
Function GetDotNet
IfFileExists "$WINDIR\Microsoft.NET\Framework\v4.0.30319\installUtil.exe" NextStep
MessageBox MB_OK|MB_ICONEXCLAMATION "You must have the Microsoft .NET Framework 4.0 Installed to use this application. $\n$\n The installer will now open the Microsft .NET Framework 4.0 webpage$\n$\n$\n$\nRemember this program will not function until you have installed the .NET Framework 4 ( You will get a error message if you try to start it)"
ExecShell Open "http://www.microsoft.com/downloads/en/details.aspx?FamilyID=9cfb2d51-5ff4-4491-b0e5-b386f32c0992&displaylang=en" SW_SHOWNORMAL
Quit
NextStep:
FunctionEnd
Section
SectionEnd
;--------------------------------
; Pages shown on none silent installer
;!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_INSTFILES
# These indented statements modify settings for MUI_PAGE_FINISH
;If we want to display a run app function
!define MUI_FINISHPAGE_NOAUTOCLOSE
!define MUI_FINISHPAGE_RUN_TEXT "Run ${_AppName}"
!define MUI_FINISHPAGE_RUN_CHECKED
!define MUI_FINISHPAGE_RUN "$INSTDIR\${_AppExe}"
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_LANGUAGE "English"
!insertmacro MUI_LANGUAGE "German"
!insertmacro MUI_LANGUAGE "French"
UninstPage uninstConfirm
UninstPage instfiles
;--------------------------------
; The stuff to install
Section "${_AppName} (required)"
SectionIn RO
; Set output path to the installation directory.
SetOutPath $INSTDIR
; Put file there
File /R "Current\*.*"
; Write the installation path into the registry
WriteRegStr HKLM "Software\TheXSoft.com\${_AppName}" "Install_Dir" "$INSTDIR"
; Write the uninstall keys for Windows
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${_AppName}" "DisplayName" "${_AppName} ( Remove only)"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${_AppName}" "UninstallString" '"$INSTDIR\uninstall.exe"'
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${_AppName}" "NoModify" 1
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${_AppName}" "NoRepair" 1
WriteUninstaller "uninstall.exe"
SectionEnd
; Optional section (can be disabled by the user)
Section "Start Menu Shortcuts"
SetShellVarContext all
CreateDirectory "$SMPROGRAMS\${_AppName}"
CreateShortCut "$SMPROGRAMS\${_AppName}\TheXSoft.com - Software page.url" "$INSTDIR\TheXSoft.com - Software page.url"
CreateShortCut "$SMPROGRAMS\${_AppName}\GuildStats.NET - Get the stats for your MMO.url" "$INSTDIR\GuildStats.NET - Get the stats for your MMO.url"
CreateShortCut "$SMPROGRAMS\${_AppName}\${_AppName}.lnk" "$INSTDIR\${_AppExe}" "" "$INSTDIR\${_AppExe}" 0
SectionEnd
;--------------------------------
; Uninstaller
Section "Uninstall"
; Remove registry keys
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${_AppName}"
DeleteRegKey HKLM "SOFTWARE\${_AppName}"
; Remove files and uninstaller
Delete "$INSTDIR\*.exe"
Delete $INSTDIR\uninstall.exe
; Remove shortcuts, if any
Delete "$SMPROGRAMS\${_AppName}\*.*"
; Remove directories used
RMDir "$INSTDIR"
SectionEnd
;--------------------------------
; Silent install logic
Function SilentInstall
; Set output path to the installation directory.
SetOutPath $INSTDIR
; Put file there
File /R "Current\*.*"
; Write the installation path into the registry
WriteRegStr HKLM "Software\TheXSoft.com\${_AppName}" "Install_Dir" "$INSTDIR"
; Write the uninstall keys for Windows
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${_AppName}" "DisplayName" "${_AppName} ( Remove only)"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${_AppName}" "UninstallString" '"$INSTDIR\uninstall.exe"'
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${_AppName}" "NoModify" 1
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${_AppName}" "NoRepair" 1
WriteUninstaller "uninstall.exe"
SetShellVarContext all
CreateDirectory "$SMPROGRAMS\${_AppName}"
CreateShortCut "$SMPROGRAMS\${_AppName}\TheXSoft.com - Software page.url" "$INSTDIR\TheXSoft.com - Software page.url"
CreateShortCut "$SMPROGRAMS\${_AppName}\GuildStats.NET - Get the stats for your MMO.url" "$INSTDIR\GuildStats.NET - Get the stats for your MMO.url"
CreateShortCut "$SMPROGRAMS\${_AppName}\${_AppName}.lnk" "$INSTDIR\${_AppExe}" "" "$INSTDIR\${_AppExe}" 0
Exec ${_AppExe}
Quit
FunctionEnd
【问题讨论】:
标签: c# installation nsis