I am creating an installer with the inno configuration that opens a link to the site after installation. Currently it looks like this:
[Run] Filename: iexplore.exe; Parameters: http://doma.in/uri/ Verb: open; Flags: shellexec runasoriginaluser
This works fine, except that testing showed that, for example, Kaskersky warns that an unauthorized process (setup) has launched an authorized process (Internet Explorer) that wants to access encrypted passwords. What can (of course) be a threat. Since I just want to open a browser to display the URL, it would be great to get rid of this message.
These are the parameters that I have evaluated so far.
- Unfortunately there is no difference between Run Filename: iexplore and Pascal Script Shell-Exec ('open' ...)?
- Perhaps in some way it is possible to transmit a message to the operating system to create a new instance of the web browser without creating it as a child process (i.e. without triggering a warning) of the installation.
- As I do this for statistics, it will be enough to call the winhttp library from the settings. but this is not possible because the user can set up a firewall (see the HTTP POST request in Inno Setup Script ).
- Does this help sign the setup? Will this suppress the warning?
user524824
source share