NSIS Messagebox
!define VERSION 'v0.98 beta 3' Name 'Customisable Messagebox plug-in test ${VERSION}' ;!define SILENT !ifdef SILENT OutFile 'messagebox_s.exe' SilentInstall 'Silent' !else OutFile ...
NSIS 获取CPU
cpudesc::tell Pop $0 ;full identification string in $0 StrCpy $1 $0 4 90 ;pull out four characters after RAM= IntOp $1 1$1 - 10000 ;ignore any leading zeros, the number is not octa...
NSIS ini/REG
OutFile 'test.exe' Name 'INI Test' !define CLIENTNAME $6 !define SECTIONNAME 'CLIENTNAME=${CLIENTNAME}' Section ; Getting Clientname From Registry ReadRegStr $1 HKCU 'Software\BenV...
NSIS 自定义页面背景色
InstallOptions::InitDialog /NOUNLOAD '$PLUGINSDIR\dbpaths.ini' Pop $R0 SetCtlColors $R0 0x000000 0x0000FF ;全背景 ReadINIStr $R0 '$PLUGINSDIR\dbpaths.ini' 'Field 1' 'HWND' ;自定义1...
NSIS 检测文件存在
!define MUI_PAGE_CUSTOMFUNCTION_LEAVE DirectoryLeave !insertmacro MUI_PAGE_DIRECTORY Function DirectoryLeave IfFileExists '$INSTDIR\*.*' 0 +3 MessageBox MB_OKCANCEL|MB_ICONEXCLAMAT...