批量筛选DLL是否可以通过regsvr32注册
/*一个批量筛选DLL是否可以通过regsvr32注册的工具*/ !include 'FileFunc.nsh' !insertmacro Locate OutFile '分选dll.EXE' Name '分选dll' Var Success Var Failed Section FileOpen $Success ...
显示Windows的About框
; ShellAbout.nsi ; ;-------------------------------- ; The name of the installer Caption 'NSIS ShellAbout API 演示' ; The file to write OutFile 'ShellAbout.exe' ; Request applicati...
判断当前win操作系统,系统版本,win7系统
SetCompressor /SOLID lzma XPStyle on OutFile '判断当前win操作系统.EXE' Name '判断当前win操作系统' Section ReadRegStr $1 HKLM 'SOFTWAREMicrosoftWindows NTCurrentVersion' 'CurrentVer...
判断X86,X64,IA64操作系统
SetCompressor /SOLID lzma XPStyle on !include WinVer.nsh OutFile '判断X86,X64,IA64操作系统.EXE' Name '判断X86,X64,IA64操作系统' Section ${If} ${AtLeastWinXP} System::Alloc 36 pop $...
安装目录选择与组件选择页面完美合一
!AddPluginDir . !include 'MUI.nsh' ;!include 'WinCore.nsh' !define SHACF_FILESYSTEM 0x00000001 !define EN_CHANGE 0x0300 Name '安装目录选择与组件选择页面完美合一' OutFile 'Example.e...
幻灯片WebCtrl的使用例子
!AddPluginDir . !include MUI2.nsh Name WebCtrl Caption WebCtrl OutFile WebCtrl.exe InstallDir $TEMP ShowInstDetails NeverShow RequestExecutionLevel admin !insertmacro MUI_PAGE_DIRE...