如何使用Inno Setup安装Windows服务?

发布于 2024-12-07 07:49:47 字数 491 浏览 1 评论 0原文

在 VS2010 中,我有 Windows 服务项目和其他一些“帮助”项目的解决方案。所以在我的调试文件夹中有一个 Windows 服务应用程序和几个 dll。

我可以通过带参数运行应用程序来安装 Windows 服务,因此在 Inno Setup 中我只需执行以下操作:

Filename: {app}\MyService.exe; Parameters: "--install"; WorkingDir: {app}; Flags: skipifdoesntexist; StatusMsg: "MyService is being installed. Please wait..."

我的问题是: 有必要将 Release 文件夹中的所有文件打包到我的安装文件中吗?我的意思是,在我的 Release 文件夹中包括:应用程序解决方案中其他项目的 DLL、程序调试数据库 (.pdb) 文件和 XML 配置文件。

我的 Setup.exe 文件中应打包哪些文件?

In VS2010 I have solution with windows service project and some other 'helper' projects. So in my debug folder there is an windows service application and couple of dlls.

I can install windows service by running application with parameter, so in Inno Setup I just do:

Filename: {app}\MyService.exe; Parameters: "--install"; WorkingDir: {app}; Flags: skipifdoesntexist; StatusMsg: "MyService is being installed. Please wait..."

My question in: It is necessary to pack all files from Release folder to my Setup file? I mean, in my Release folder are: DLLs from my other projects in app solution, Program Debug Database (.pdb) files, and XML Configuration file..

What files should be packed in my Setup.exe file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

笨死的猪 2024-12-14 07:49:47

您只需要 *.exe 文件。
那里不需要 *.pbd 等。

仅当您的主项目(服务)需要时才使用 DLL。

You just need the *.exe files.
*.pbd and other are not needed there.

Only DLLs if nedded by your main project (service).

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