如何在 Visual Studio 安装项目中将安装目录公开为公共属性
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Visual Studio 安装项目使用应用程序文件夹的 TARGETDIR 属性。所以你可以使用看起来像这样的命令行:
Visual Studio setup projects use TARGETDIR property for Application Folder. So you can use a command line which looks lime this: