如何在具有提升权限的 WiX 中创建的 MSI 中运行自定义操作?
我有一个安装程序需要访问注册表并使用自定义操作复制和删除文件。 在 Windows XP 中,安装程序运行良好,但在 Vista 和 7 中,安装程序显示错误,因为它无法访问文件夹,但如果我以管理员身份运行安装程序,则一切正常。
因此,我需要安装程序能够以管理员身份运行自定义操作,即使 MSI 没有以这种方式运行(需要安装程序由普通用户运行)。我尝试在安装开始时使用 EXE 来修改注册表并允许 MSI 正常运行,但我认为这不是一个很好的解决方案。
附言。由于客户要求,引导程序不是一个选项:S 我的所有自定义操作都被推迟并模拟=“否”
有什么想法吗? 谢谢
I have an installer that needs to access the registry and copy and remove files using custom actions.
In Windows XP the installer works just fine, but in Vista and 7, the installer shows an error because it cannot access a folder, but if I run the installer as administrator everything works.
So, I need the installer to be able to run the custom action as administrator even if the MSI wasnt run this way (need the installer to be run by regular users). I tried using an EXE at the beginning of my installation to modify the registry and allow the MSI to run normally but I dont think that's a very good solution.
PS. Bootstrapper is not an option due to client requirements :S
All my custom Actions are deferred and impersonate="no"
Any ideas?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请确保:
请注意,延迟的自定义操作无法访问安装会话,因此您无法直接访问安装程序属性。
Make sure that:
Please note that deferred custom actions cannot access the installation session, so you cannot access installer properties directly.
您的自定义操作必须在
InstallInitialize
和InstallFinalize
操作之间排序。运行安装程序时是否出现UAC提示?如果您执行每台计算机安装,当您单击向导中的安装按钮时,您将收到UAC提示。如果没有收到 UAC 提示,请检查 ALLUSERS 属性设置为 2。另请参阅标记权限MSI
Your Custom Actions must be sequenced between
InstallInitialize
andInstallFinalize
actions.Do you get UAC prompt when you run the installer? If you perform a per-machine install, you would get UAC prompt when you click Install button in the wizard. If you don't get UAC prompt, then check ALLUSERS property is set to 2. See also Marking the Privileges for an MSI