如何使用Inno Setup安装Windows服务?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需要
*.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).