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

Disable IE server certificate revocation check

Prerequisites

  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 Advanced tab, uncheck the following three options under the Security category:

    • Check for publisher's certificate revocation
    • Check for server certificate revocation
    • Check for signatures on downloaded programs

  3. If you are unable to change the settings through the user interface, download and import the registry key from https://joji.blob.core.windows.net/recipe/disable-ie-server-cert-revocation-check.reg or set the following registry keys to disable IE server certificate revocation check:

    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Internet Explorer\Download]
    "CheckExeSignatures"="no"
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings]
    "CertificateRevocation"=dword:00000000
    

End steps

  1. If you want to re-enable the IE server certificate revocation check, please run inetcpl.cpl to open the Internet Properties again and enable following three options under the Security category:

    • Check for publisher's certificate revocation
    • Check for server certificate revocation
    • Check for signatures on downloaded programs

    If you disabled the IE server certificate check by importing registry keys, then please delete the following registry keys:

    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Internet Explorer\Download]
    "CheckExeSignatures"="no"
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings]
    "CertificateRevocation"=dword:00000000