在 NSIS 脚本中压缩文本文件的最佳方法是什么?
假设可以从 NSIS 脚本中压缩文件,那么实现这一目标的最佳方法是什么以及实际的语句是什么?
有内置的 NSIS 指令吗?
Assuming that it is possible to compress a file from within an NSIS script, what is the best way to accomplish that and what would be the actual statement?
Is there a built-in NSIS instruction for that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的问题并没有多大意义,您是在问如何安装文件,还是尝试使用 NSIS 作为某种通用文件压缩实用程序?
这是一个“安装”文件的基本脚本:
如果您正在为某些应用程序编写实际的安装程序,您确实应该查看一些NSIS 附带的示例
Your question does not really make a lot of sense, are you asking how to install a file, or are you trying to use NSIS as some sort of general file compression utility?
Here is a basic script that "installs" a file:
If you are writing an actual installer for some application, you really should take a look at some of the examples that ship with NSIS