为多个应用程序创建安装程序
嘿,我正在尝试从一台服务器计算机创建多个游戏的安装程序,然后由各个计算机执行。 例如 BF 1942、WC3、BF2、DOW。但是,我需要能够选择要安装的应用程序,这是一个简单的复选框。 我对 C# 的了解有限。解决这个问题的最佳方法是什么? 我看过 NSIS,但我不喜欢他们使用的脚本。 我只有 C# Express。
Hey, I'm trying to create an installer for multiple games, from one server computer which individual computers then execute.
E.g. BF 1942, WC3, BF2, DOW. However i need to be able to select which applications to Install, which is a simple check box.
I only have a limited knowledge of c#. What is the best way of going about this?
I have looked at NSIS though i don't like the scripting that they use.
I only have C# express.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
国家安全情报局。 http://nsis.sourceforge.net 每个应用程序一个部分,使用 ExecWait 操作安装。
NSIS. http://nsis.sourceforge.net One section per application, install with ExecWait operation.
我能想到的最接近的可能是
iexpress.exe
它是 99% 的窗口的标准配置,只需按 CTRL+R 并输入
iexpress.exe
>。它是一个向导,因此生成您自己的文件应该不难。
我不知道它是否适合您想做的事情,但我认为值得尝试,为自己节省一些时间。
The closest thing that I can think of would probably have to be
iexpress.exe
It comes standard with 99% of all windows, just do CTRL+R and type in
iexpress.exe
.It's a wizard, so it shouldn't be that hard to generate your own file.
I don't know if it would work for what you're wanting to do, but I'd consider it to be worth trying, saving yourself some time.