Jump to content

internet explorer security certificate


Recommended Posts

Hello,

I am trying to display a webpage in a GUI.

Its an intranet webpage and it works fine with IE 11 , but on GUI I receive a message "There is a problem with this website’s security certificate." (see attached)

With no option to continue manually, any way to fix this?

 

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <IE.au3>

_IEErrorHandlerRegister()
$IE = _IECreateEmbedded()
GUICreate("Beispiel", 1000, 700)
$Browser = GUICtrlCreateObj($IE, 10, 10, 960, 650)


GUISetState()

_IENavigate($IE, "https://intra.net")

While 1
    $msg = GUIGetMsg()
    Select
        Case $msg = $GUI_EVENT_CLOSE
            ExitLoop
    EndSelect
WEnd

GUIDelete()

Exit

 

image.png.04e37176a4e97e9a15a6758e1a1b9e57.png

 

Edited by hendrikhe
Link to comment
Share on other sites

@hendrikhe Read VERY carefully the remarks on both _IECreateEmbedded (especially the part concerning navigate) and _IENavigate (especially the part concerning security).  I believe that would solve your issues.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...