复制代码 代码如下:

;我的第一个安装脚本

!include “MUI2.nsh”

!define DIR “D:\workspace\nsis\files”

Name “安装程序”
Icon “${DIR}\setup128.ico”
OutFile “setup.exe”
InstallDir “$PROGRAMFILES\kaserv”
RequestExecutionLevel admin

!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES

!insertmacro MUI_LANGUAGE “SimpChinese”

Function .onInit
 System::Call ‘kernel32::CreateMutexA(i 0,i 0,t “SMAPLE_MUTEX”) i .r1 ?e’
 Pop $R0
 StrCmp $R0 0 +3
 MessageBox MB_OK|MB_ICONSTOP “只允许运行一个实例
 Abort
FunctionEnd

;安装程序段
Section
SetOutPath $INSTDIR
File “${DIR}\新建文本文档 (2).txt”
File “${DIR}\新建文本文档.txt”
SetOutPath “$INSTDIR\office”
File “${DIR}\office\*”
;快捷方式
CreateShortCut “$DESKTOP\test.lnk” “$INSTDIR\unsetup.exe”
CreateShortCut “$SMPROGRAMS\test.lnk” “$INSTDIR\unsetup.exe”
WriteUninstaller “$INSTDIR\unsetup.exe”
SectionEnd

;卸载程序段
Section “Uninstall”
RMDir /r “$INSTDIR”
Delete “$DESKTOP\test.lnk”
Delete “$SMPROGRAMS\test.lnk”
SectionEnd

您可能感兴趣的文章:

声明:本站(华域联盟www.cnhackhy.com)所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。