hendrikhe 1 Posted May 9, 2019 (edited) 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 Edited May 9, 2019 by hendrikhe Share this post Link to post Share on other sites
Nine 924 Posted May 9, 2019 @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. Not much of a signature, but working on it... Spoiler Block all input without UAC Save/Retrieve Images to/from Text Tool to search content in au3 files Date Range Picker Sudoku Game 2020 Overlapped Named Pipe IPC x64 Bitwise Operations Fast and simple WCD IPC GIF Animation (cached) Share this post Link to post Share on other sites