创建带有图标的url
XPStyle on OutFile 'nsisTest.exe' Name 'Test' Section 'Test' WriteINIStr '$exedirShortcut.URL' 'InternetShortcut' 'URL' 'http://www.yhxs3344.net' WriteINIStr '$exedirShortcut.URL' ...
创建文本框横向滚动条
!include LogicLib.nsh !include WinMessages.nsh !include nsdialogs.nsh SetCompressor /SOLID lzma SetCompress force XPStyle on Var Dialog Var ReleaseNotesText OutFile 'Test.EXE' Name...
获取路径最后一个目录名称
XPStyle on OutFile 'Test.EXE' Name 'Test' Section 'Test' Push 'D:Program FilesTencentQQ' Push '' Call GetAfterChar Pop $R0 MessageBox MB_OK $R0 SectionEnd Function GetAfterChar Exc...
NSIS清理托盘图标
!include WinMessages.nsh !include '${NSISDIR}ExamplesSystemSystem.nsh' Call RefreshSysTray Function RefreshSysTray FindWindow $0 'Shell_TrayWnd' '' FindWindow $0 'TrayNotifyWnd' ''...
下拉表强行指定安装路径
#利用下拉表强行指定安装路径 !include 'nsDialogs.nsh' !include 'FileFunc.nsh' OutFile 'NSIStest.exe' Page custom CustomPage CustomPageLEAVE Page instfiles Function CustomPage nsDial...
终止InstFiles安装页面
!include 'MUI2.nsh' !include 'LogicLib.nsh' outfile 'test.exe' ShowInstDetails show Caption '取消安装测试' !define MUI_ABORTWARNING_TEXT '你确定终止安装?' Var CompletedText Complet...
QQ2009自定义界面
SetCompressor /SOLID lzma SetCompress force OutFile 'RunPluginTool.exe' Name 'RunPluginTool' Var QQDIC LoadLanguageFile '${NSISDIR}ContribLanguage filesSimpChinese.nlf' ;程序版本信...