“The requested operation requires elevation” message after setup

后端 未结 3 1922
日久生厌
日久生厌 2020-12-15 17:45

I created setup program for one application in inno setup , where I\'m trying to run application after install, but I get this message under Windows 7 :

The

相关标签:
3条回答
  • 2020-12-15 18:18

    This is occurring because the executable is marked as requiring elevation.

    If you try to run the application from the [Run] section with the postinstall flag, you can add the shellexec flag. If you do that then Inno Setup will start the application with the ShellExecute function rather than CreateProcess. This will make Windows bring up the UAC and run the application with elevated privileges if needed.

    0 讨论(0)
  • 2020-12-15 18:18

    No, there's no way to overcome this, short of elevating yourself to administrator.

    The reason this is the case is to prevent unauthorized actions from taking place on your computer. Mostly, it allows companies to set policies on what users can and cannot do with their computers.

    0 讨论(0)
  • 2020-12-15 18:39
    1. Upgrade to the latest version
    2. Go to the website ISXKB. It will tell you aboput elevation for Vista. It will IMHO also apply for W7
    0 讨论(0)
提交回复
热议问题