如何使用 .NET 创建 SFX 自执行或 Bootstrapper 设置
如何构建类似于 microsoft's dotnet 3.5 的设置<一href="http://download.microsoft.com/download/6/0/f/60fc5854-3cb8-4892-b6db-bd4f42510f28/dotnetfx35.exe" rel="nofollow noreferrer">SFX 自执行安装 。
这样就会将项目的setup.exe
的公司信息
和版本信息
等放入最终的sfx文件.
还有这个 关于SO的问题建议使用IExpress
,但文件信息不是我的项目在setup.exe
中拥有的信息。
如果.NET Framework中有一些内置的解决方案,我想首先使用它。
如果在 .NET Framework
中无法创建自执行 SFX
设置,您也可以建议其他方法。
主要目的是拥有仅由我定义的文件信息的自执行SFX文件。
谢谢
How to build the setup similar to microsoft's dotnet 3.5 which is SFX self executing setup.
So which will have the company information
, and version info
, etc of the project's setup.exe
into the final sfx file
.
Also this question on SO is suggests using IExpress
but the file information is not what my project is having in setup.exe
.
If there is some in-built solution in .NET Framework, I would like to use that first.
Also you can suggest other approach if creating self-executing SFX
setup is not possible in .NET Framework
.
Main purpose is having self-executing SFX file with file information defined by me only.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是通过自定义 EXE 引导程序完成的。没有对其的内置支持。
大多数商业设置创作工具甚至在其最基本的版本中都提供此功能。如果您不需要不同的设置创作工具,则需要自己编写引导程序或使用 IExpress 之类的工具。
This is done with a custom EXE bootstrapper. There is no built-in support for it.
Most commercial setup authoring tools offer this feature even in their most basic versions. If you don't want a different setup authoring tool, you will need to write the bootstrapper yourself or use something like IExpress.