在我的 msi 文件中添加移动软件 exe,并且需要在我的 msi 文件在客户端系统上运行之前运行

发布于 2024-12-19 01:51:09 字数 225 浏览 1 评论 0原文

我已经使用 Visual Studio 中的安装和部署选项制作了我的项目的 msi 文件。我想在我的安装文件夹中添加一个移动软件的 exe 文件,并且我希望该移动软件 exe 应该在我的安装文件夹中的 msi 文件之前运行.我不知道如何给出该软件 exe 的路径并从我的安装文件夹运行。

我已经使用了先决条件选项,并在进行设置时在我的应用程序文件夹中添加了文件,但我没有得到任何问题的解决方案。

请帮我。

I have made msi file of my project using setup and deployment option from visual studio.I want to add one exe file of mobile software in my setup folder and i want ,that mobile software exe should be run before my msi file from my setup folder.I don't know that how i give the path of that software exe and run from my setup folder.

I have used prerequisites option and also add file in my application folder while making setup,but i don't get any solution of my problem.

Please help me.

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

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

发布评论

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

评论(1

聽兲甴掵 2024-12-26 01:51:09

前提是正确的解决方案。 Visual Studio 安装项目不支持自定义先决条件创建。但是,可以通过手动生成所需的清单来完成。

您可以在此处找到清单结构:http://msdn。 microsoft.com/en-us/library/ms229223(VS.80).aspx

这些清单可以使用 引导程序清单生成器工具。

生成包清单后,您可以将所有这些文件(包括包)添加到 Visual Studio 先决条件文件夹中的单独文件夹中,例如:

C:\Program Files\Microsoft SDKs\Windows\v7.0A\Bootstrapper\Packages

然后您可以在安装项目属性页中选择先决条件。

A prerequisite is the correct solution. Visual Studio setup projects do not support custom prerequisite creation. However, it can be done by manually generating the required manifests.

You can find the manifests structure here: http://msdn.microsoft.com/en-us/library/ms229223(VS.80).aspx

These manifests can be generated automatically with the Bootstrapper Manifest Generator tool.

After generating the package manifests, you can add all these files (including the package) in a separate folder in the Visual Studio prerequisites folder, for example:

C:\Program Files\Microsoft SDKs\Windows\v7.0A\Bootstrapper\Packages

You can then select the prerequisite in your setup project property pages.

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