- Access Internet Explorer 11 in Windows 11
Sometimes you just need Internet Explorer 11. I won’t question why you need it, but here is how you can open it natively in Windows 11. If you try to execute iexplore.exe from C:\Program Files\Internet Explorer or via Run, Windows will instead open Microsoft Edge. There used to be various links around Windows’ interface which hadn’t been updated to Edge, which could be used as a gateway, but they’re almost all removed now, so some slightly more complex methods are required.
The easiest method is to use this short PowerShell command: $ie = New-Object -ComObject InternetExplorer.Application; $ie.Visible = $true. Run it in PowerShell and Internet Explorer will open.
Another good approach is to create a Visual Basic Script (a file with the extension .vbs) with the below contents. When the script is run, Internet Explorer will open.
CreateObject("InternetExplorer.Application").Visible = True
In most cases you’re best to use Microsoft Edge’s ‘IE Mode’.
Accurate as of Windows 11 version 25H2.