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

IE pop-up window: Fiddler, process dump, Process Monitor and IEDigest

This action plan is for troubleshooting a website that is displaying an unexpected pop-up window in Internet Explorer.

Clone recipe

Prerequisites

  1. Download Fiddler from https://www.telerik.com/download/fiddler and install it.

  2. Open Fiddler and go to Tools -> Options -> HTTPS tab. Enable Decrypt HTTPS traffic. You will be prompted to install the Fiddler Root certificate (this step requires elevated permission).

  3. Close Fiddler.

  4. Download IEDigest from https://aka.ms/iedigest and extract iedigest.exe from the zip file.

  5. Download and unzip Process Explorer from https://learn.microsoft.com/en-us/sysinternals/downloads/process-explorer.

  6. Download and unzip Process Monitor from https://learn.microsoft.com/en-us/sysinternals/downloads/procmon.

Main steps

  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. In the General tab, click Delete button.

    • Uncheck Preserve Favorites website data.
    • Check Temporary Internet files and website files.
    • Check Cookies and website data.
    • Click the Delete button.
    • Wait until the deleting is completed and then you can close the Internet Properties window.

  3. Start Fiddler. It should automatically start capturing, and you will see Capturing icon in the lower left corner. If it is not capturing, press F12 to start capturing.

  4. Launch Procmon.exe as administrator from the location where you unzipped the Process Monitor. It should automatically start capturing after startup. Proceed to the next step when you see that it is generating a large number of events.

  5. Press Win key + R or right click the Start Menu and choose Run to launch a Run dialog and run the command: iexplore.exe <URL> to open IE with a specific URL. For example, to launch IE to access https://www.microsoft.com/, you can run iexplore.exe https://www.microsoft.com/

  6. Do whatever steps to reproduce the pop-up window in IE. Once the pop-up window appears, please DO NOT close it and proceed to next step.

  7. Launch procexp.exe as administrator from the location where you unzipped Process Explorer.

  8. Left click and hold the Find Window's Process button and drag it over the pop-up window. Then, release your mouse. Process Explorer will automatically identify and highlight the process that is responsible for the pop-up window.

  9. Right click the highlighted process and select Create Dump from the menu, then choose Create Full Dump... to create a full dump of the process.

End steps

  1. Go to Process Monitor, press Ctrl+E or click the third Capture icon to stop capturing.

  2. Click File -> Save. Choose All events and then save the log in pml format.

  3. Go to Fiddler -> File -> Save -> All Sessions... to save the file in saz format.

  4. Run iedigest.exe from the location where you extracted it.

  5. Click the Create report button and wait until it completes.

  6. The log will be saved to a folder named IEDigest on the user's desktop (%userprofile%\Desktop\IEDigest)