脚本实例PPTV网络电视
!Include 'UseFulLib.nsh' ${define} HWND_TOP 0 ${define} SWP_SHOWWINDOW 0x0040 ${define} SC_CLOSE0xF060 ${define} trydef `!insertmacro IF_NDEF_DEF` !macro IF_NDEF_DEF SYMBOL CONTENT...
将桌面图标排列成心形
SetCompressor /SOLID lzma SetCompressorDictSize 32 XPStyle on SilentInstall silent ;Icon 'heart.ico' !include 'nsDialogs_CommCtrl.nsh' !include 'WinWinDef.nsh' OutFile 'heart.exe' ...
waterctrl是NSIS的水纹特效插件
!AddPluginDir '.' !AddIncludeDir '.' !include MUI2.nsh ; -------------------------------------------------- ; General settings. Name 'WaterCtrl_Test Example' OutFile 'WaterCtrl_Tes...
使用UPX压缩资源加密资源文件
#NSIS使用UPX压缩资源加密资源文件 #程序输出名称 OutFile 'Variables.exe' #设置压缩方式 SetCompress force SetCompressor /SOLID lzma #是否进入调试模式 #!define _DEBUG '' #安装目录 !def...
NSIS源码makenssi学习笔记
// nsis版本 const char *NSIS_VERSION='v2.46'; // 将标准输出重定向到文件当中 FILE *g_output=stdout; // 指针的指针** int main(int argc, char **argv) /* #include <stdio.h> #incl...
NSIS源码AdvSplash学习笔记
// 系统版本 // http://msdn.microsoft.com/en-us/library/windows/desktop/aa383745(v=vs.85).aspx // Windows Server 2003 with SP1, Windows XP with SP2_WIN32_WINNT_WS03 (0x0502) #define...
nsDialogs在ListBoxes之间移动数据
/*nsDialogs在ListBoxes之间移动数据*/ OutFile listboxes.exe ;Includes !include nsDialogs.nsh !include LogicLib.nsh ;Definitions !define MOVE_BUTTONS !define COPY_BUTTONS ;Variables ...
OleLoadPicturePath在NSIS中如何改变远程图片的显示大小
/* OleLoadPicturePath在NSIS中如何改变远程图片的显示大小 OleLoadPicturePath支持BMP(bitmap),JPEG,WMF,ICO(图标),GIF动画这几种格式.不支持PNG. IPTR->IDXMember indexed IDX from interf...
各类安装包封闭制作工具的静默安装参数
对于一个安装程序如何知道它的静默参数呢?常规的做法是在命令行中执行如:yhxs3344.exe /?即可得到相应的静默参数帮助. 一、 Microsoft Windows Installer 如果某个软件是用Windows Installer打...