在 MSI 安装程序中包含帮助文件
迫切需要一个解决方案。我正在尝试在软件安装程序中包含帮助文件。这样软件安装成功后,用户就可以在“开始”菜单下找到帮助文件。我无法实现这一点。我正在使用 VS2010 安装项目。谁能帮助我吗?
提前致谢。
Desperately need a solution. I am trying to include an help file with software installer. So that after the software is successfully installed, the user will find the help file under the "Start" menu. I am not able to achieve this. I am using VS2010 setup project. Can anyone help me?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您必须将快捷方式文件添加到“应用程序项目”,然后将“构建操作”属性设置为“内容”。
然后,在“安装项目”中,将“应用程序项目”中的文件添加到用户的开始菜单文件夹中。
将“应用程序项目”的项目输出添加到“安装项目”中
要实际创建快捷方式,请参阅 - http://support.microsoft.com/kb/140443
如果你陷入困境这篇文章应该有所帮助 - http://developingfor.net/2008/03/04/visual-studio-2008-setup-project-frustrations/
To do this you have to add a shortcut file to your "Application Project" and then set the Build Action property to Content.
Then, in your "Setup project" you add the file from your "Application project" to the User's start menu folder.
To add the project output of the "Application project" to the "Setup project"
To actually create the shortcut see - http://support.microsoft.com/kb/140443
If you get stuck this article should help - http://developingfor.net/2008/03/04/visual-studio-2008-setup-project-frustrations/