inno-setup – 如何确保安装程序将以管理员权限运行?

前端之家收集整理的这篇文章主要介绍了inno-setup – 如何确保安装程序将以管理员权限运行?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我使用Inno Setup创建安装包,安装程序是否具有管理员权限,允许它注册DLL等?

另外,如果安装程序包执行程序作为其操作的一部分,该程序将以管理员权限运行吗?

解决方法

这通过 PrivilegesRequired指令来控制.

When set to admin (the default) or
poweruser,Setup will always run with
administrative privileges. If Setup
was started by an unprivileged user,
Windows will ask for the password to
an account that has administrative
privileges,and Setup will then run
under that account.

如果安装程序从[Run]部分执行程序,则可以使用runascurrentuser和runasoriginaluser标志来控制产生的进程的权限.

原文链接:https://www.f2er.com/delphi/102570.html

猜你在找的Delphi相关文章