Host:
HTTPS:
You can also access this page from following domains
edgedbg.com
HTTPSHTTP
sub.edgedbg.com
HTTPSHTTP
lab.eastasia.cloudapp.azure.com
HTTPSHTTP
IE Security Zones test domains
Internet Explorer assigns all websites to one of four security zones: Internet, Local intranet, Trusted sites, or Restricted sites. The zone to which a website is assigned specifies different security settings that may lead to different behaviors. Following domains allow you to test the browser labs in different security zones in IE. Before navigating to following domains, you need to either map these domains into the correct security zone manually or run following command to map these domains automatically.
powershell -nop -c "iex(New-Object Net.WebClient).DownloadString('http://edgedbg.com/files/iemap.ps1')" CopiedCopy failed, please copy the command manually
internet.edgedbg.com
HTTPSHTTP
sub.internet.edgedbg.com
HTTPSHTTP
trusted.edgedbg.com
HTTPSHTTP
sub.trusted.edgedbg.com
HTTPSHTTP
intranet.edgedbg.com
HTTPSHTTP
sub.intranet.edgedbg.com
HTTPSHTTP
Fork me on GitHub

Launch Internet Explorer using the COM Object Method

Main steps

  1. To launch IE using COM Object method, we can choose any of following approaches:

    • Using PowerShell: Open a PowerShell prompt and run the command $ie=New-Object -ComObject "InternetExplorer.Application";$ie.Visible=1, this will open an Internet Explorer window with a blank page.

    • Using VBScript

      1. Save the following code launch-ie.vbs

        Set IE = WScript.CreateObject("InternetExplorer.Application")
        IE.Visible = True
        
      2. Open a command prompt or PowerShell prompt, navigate to the folder where you saved launch-ie.vbs and run the command wscript launch-ie.vbs.

    • Using the Internet Properties diaglog

      1. Press the Win key + R or right click on the Start Menu and choose Run to launch a Run dialog. Then run inetcpl.cpl to open Internet Properties.

      2. Go to the Programs tab and click on the Manage add-ons button.

      3. In the Manage Add-ons dialog, click on the link Learn more about toolbars and extensions in the lower left corner, this will launch an Internet Explorer window using the COM Object method.