从安装程序 c# 中找到磁盘上安装程序 exe 的原始位置

发布于 2024-11-30 09:27:06 字数 194 浏览 1 评论 0原文

我有一个 MSI 安装程序,最后运行了 ac# 自定义操作,该操作在安装程序退出之前执行 sql 脚本。我们认为执行此操作的最佳方法是将 sql 脚本文件粘贴在与 MSI 文件相同的目录中,并让它以这种方式加载脚本。

问题是,安装程序将自身复制到Windows\system32,然后从那里执行,所以我找不到原始目录来执行脚本文件。任何帮助或想法将不胜感激!

I have an MSI installer with a c# custom action running at the end that executes an sql script before the installer exits. We decided the best way to do this is to stick the sql script file in the same directory as the MSI file and have it load the script that way.

The problem is, the installer copies itself to Windows\system32 and then executes from there, so I cannot find the original directory in order to execute the script file. Any help or ideas would be appreciated!

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

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

发布评论

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

评论(2

愿得七秒忆 2024-12-07 09:27:06

OriginalDatabase 属性对您有帮助吗?

Windows Installer 将OriginalDatabase 属性设置为用于启动安装的安装数据库的路径。如果从命令行启动安装,则该值取决于 REINSTALLMODE 属性中是否存在重新缓存包选项(-v 标志)。

Does OriginalDatabase property help you?

The Windows Installer sets the OriginalDatabase property to the path of the installation database used to launch the installation. If the installation is launched from a command line, the value depends on whether the recache package option (the -v flag) is present in the REINSTALLMODE property.

拔了角的鹿 2024-12-07 09:27:06

如果您使用 C# 编写托管自定义操作,则应使用 Windows Installer XML (WiX) 部署工具基础 (DTF)。您可以创建一个 C# 项目并将 SQL 文件添加为项目内容,它将一起打包并在运行时在当前目录中可用。

顺便说一句,假设(或没有)您正在使用 MSSQL,WiX 已经具有 SQL 脚本执行处理功能。

If you are writing managed custom actions in C# you should be using Windows Installer XML's (WiX) Deployment Tools Foundation (DTF). You can create a C# project and add your SQL file as project content and it will get packaged up along for the ride and be available in the current directory at runtime.

BTW, assuming ( or not ) that you are using MSSQL, WiX already has SQL script execution handling.

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