If I run the following code:
local $oBrowser = _IECreate("www.mywebsite.com")
local $oHTMLWindow = _IEAttach("Text In Title", "embedded")
I get two different behaviors (depending on Internet Explorer's protected mode configuration).
Protected Mode OFF -
_IECreate()
(followed by_IENavigate()
inside) creates 2 iexplore.exe processes (one is the container, the other running tabs). I can then get the handle on my$oHTMLWindow
variable.Protected Mode ON -
_IECreate()
(followed by_IENavigate()
inside) creates 3 iexplore.exe processes. One of low integrity (this is the protected mode part as expected). The thing is that this process then fails.
Is that the integrity level mechanism preventing me from getting the handle? How do I work around it?