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

Record a Time Travel trace by attaching to a process

Prerequisites

  1. Download the ttd.zip file from https://joji.blob.core.windows.net/recipe/ttd.zip and extract it to C:\ttd or any other path of your choice.

  2. Depending on your operating system type, double-click TTTracer.exe from the directory listed below. A CMD window will pop up. Please read the EULA.txt as prompted and type Y then hit Enter to accept the End-user License Agreement.

    • For 32-bit systems: C:\ttd\x86
    • For 64-bit systems: C:\ttd\amd64
    • For ARM64 systems: C:\ttd\arm64

    Note: If you have extracted the ttd.zip file to a different directory, replace C:\ttd with your actual extraction path.

Main steps

  1. Run CMD as an administrator. Based on your operating system type, change directory (CD) to the following paths:

    • For 32-bit systems: C:\ttd\x86
    • For 64-bit systems: C:\ttd\amd64
    • For ARM64 systems: C:\ttd\arm64

    Note: If you have extracted the ttd.zip file to a different directory, replace C:\ttd with your actual extraction path.

  2. Execute the following command to attach TTD to the target process and start recording the time travel trace. You need to replace <PID> with the actual PID of the target process. For example, if the process you want to record the trace of is notepad.exe and its PID is 3232, the actual command you need to execute would be: tttracer.exe -dumpfull -attach 3232.

    tttracer.exe -dumpfull -attach <PID>
    
  3. After executing the command, TTD will need some time to attach to the process and start recording the trace. This may take some time, depending on the memory usage of the target process.

  4. Once TTD is successfully attached, you will see a small window in the upper left corner of the screen. The title of this window will display as Process Name + Number + .run. This is the final filename of the Time Travel trace that is currently being recorded. During the Time Travel recording process, the overall performance of the process will slow down, which is normal.

  5. Perform any operations in the target process that you want TTD to record.

End steps

  1. When you want to end the Time Travel recording, untick the checkbox next to Tracing On in the small window at the upper left corner. The Time Travel trace will be saved in the directory where tttracer.exe is currently executed by default. You can find the full path of this trace in the CMD where the command is executed.