假设可以从NSIS脚本中压缩文件,那么实现该文件的最佳方法是什么?实际的语句是什么?
是否有内置的NSIS指令?
答案 0 :(得分:1)
您的问题确实没有多大意义,您是在询问如何安装文件,还是在尝试将NSIS用作某种通用文件压缩实用程序?
这是一个“安装”文件的基本脚本:
Outfile test.exe
Requestexecutionlevel user
Setcompressor LZMA
Page instfiles
Section
;Not a good idea to hardcode the destination like this,
;normally you would use a directory page so the user can choose
SetOutPath "c:\SaveToThisFolder"
;Take thefile.txt from the system you compile on and output it on the end users system
;into the directory specified by the SetOutPath call
File "thefile.txt"
Sectionend
如果您正在为某些应用程序编写实际的安装程序,那么您真的应该看一下NSIS附带的examples