为多个应用程序创建安装程序

发布于 2024-10-01 23:36:42 字数 167 浏览 2 评论 0原文

嘿,我正在尝试从一台服务器计算机创建多个游戏的安装程序,然后由各个计算机执行。 例如 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

玉环 2024-10-08 23:36:42

国家安全情报局。 http://nsis.sourceforge.net 每个应用程序一个部分,使用 ExecWait 操作安装。

Section "BF 1942"
    ExecWait '"$EXEDIR\1942\setup.exe"'
SectionEnd

NSIS. http://nsis.sourceforge.net One section per application, install with ExecWait operation.

Section "BF 1942"
    ExecWait '"$EXEDIR\1942\setup.exe"'
SectionEnd
泅渡 2024-10-08 23:36:42

我能想到的最接近的可能是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文