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

Enable Schannel event logging

Prerequisites

  1. Run CMD or PowerShell as an administrator, then execute the following command to enable Schannel event logging:
    reg add HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL /v EventLogging /t REG_DWORD /d 7 /f
    
    Note: You will need to restart any client program that uses Schannel for TLS/SSL communication, such as a browser or client application, for this setting to take effect. If you're unsure which program needs to be restarted, you can opt to restart Windows to ensure the setting is applied.

End steps

  1. Schannel event logs are saved in the System event log. Please follow the steps below to export the System event log.

    • Open the Event Viewer and expand the Windows Logs.

      • Right click on System and select Save All Events As... to save the system event log as system.evtx.

  2. If you want to stop Schannel event logging, run CMD or PowerShell as an administrator, then execute the following command:

    reg add HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL /v EventLogging /t REG_DWORD /d 1 /f