如何在 Visual Studio 安装项目中将安装目录公开为公共属性

发布于 2024-12-08 20:53:49 字数 233 浏览 1 评论 0原文

我的 Windows 窗体应用程序应使用 msiexec 安静安装。我想将安装目录公开为公共属性,以便系统管理员仅使用命令行即​​可更改它。与此类似的东西会很好:

msiexec /i MySetup.msi /quiet INSTALLDIR="E:\MyTool"

Is there a way in Visual Studio to do this?

My Windows Forms Application should be installed quietly using msiexec. I'd like to expose the Install Directory as a Public Property to enable the system administrator to change it using the command line only. Something similar to this would be nice:

msiexec /i MySetup.msi /quiet INSTALLDIR="E:\MyTool"

Is there a way in Visual Studio to do this?

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

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

发布评论

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

评论(1

撩人痒 2024-12-15 20:53:50

Visual Studio 安装项目使用应用程序文件夹的 TARGETDIR 属性。所以你可以使用看起来像这样的命令行:

msiexec /i MySetup.msi /quiet TARGETDIR="E:\MyTool"

Visual Studio setup projects use TARGETDIR property for Application Folder. So you can use a command line which looks lime this:

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