1. 程式人生 > >NSIS獲取安裝包的名稱

NSIS獲取安裝包的名稱

SetCompressor /SOLID lzma
SetCompress force
XPStyle on
OutFile "test.EXE"
Name "test"
!include "FileFunc.nsh"   ;包含標頭檔案
!insertmacro GetFileName ;加入命令GetFileName
!insertmacro GetBaseName
!insertmacro GetFileExt
Section
${GetFileName} "$INSTDIR\ABC.exe" $R0
${GetBaseName} "$INSTDIR\ABC.exe" $R1
${GetFileExt} "$INSTDIR\ABC.exe" $R2

MessageBox MB_OK "$R0|$R1|$R2"

${GetFileName} $EXEFILE $R2

;MessageBox MB_OK  $EXEFILE

${GetBaseName} $R2 $R1

;MessageBox MB_OK  $R1

StrCpy $Channel $R1

SectionEnd