
nsis
nsis
Week.D.Awn
人云亦云,并不会让你变得有多优秀,而会让你越来越随大流。
展开
-
nsis语法解析
转自http://www.cnblogs.com/yplong/p/3700817.html IT少年的博客以下是代码及解析,其中有底色的部分为脚本内容。注释、!define、变量、!include、常量; Script generated by the HM NIS Edit Script Wizard.; HM NIS Edit Wizard helper转载 2017-06-30 09:46:21 · 2305 阅读 · 1 评论 -
nsis中常用的对$INSTDIR赋值的两种方法
1.在Function或者Section中,使用StrCpy对其进行赋值。示例:Section "MainSection" SEC01 StrCpy $INSTDIR "D:\TEMP" .......SectionEnd2.直接赋值。在Function和Section之外,直接对其赋值。示例:...;这里的InstallDir的值,就是$I原创 2017-07-05 16:36:26 · 8678 阅读 · 0 评论 -
nsis制作一个外部exe启动器(exe嵌套exe)
Name "Launcher"Caption "MY-Launcher"Icon "${NSISDIR}\Contrib\Graphics\Icons\modern-install-colorful.ico"OutFile "MY-Launcher.exe"SilentInstall silentAutoCloseWindow trueShowInstDetails neversho原创 2017-07-05 11:13:29 · 3593 阅读 · 0 评论 -
nsis接收命令行参数,实现动态安装
; Script generated by the HM NIS Edit Script Wizard. var str4500var str4501var str4700var strProductName!include "logiclib.nsh"!include "FileFunc.nsh"Name "DC系列"OutFile "Setup.exe"SilentI原创 2017-07-05 16:27:25 · 8316 阅读 · 0 评论