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

Complete dump using NotMyFault

Prerequisites

  1. Download https://download.sysinternals.com/files/NotMyFault.zip and extract it to c:\temp\NotMyFault directory.

  2. Run CMD or PowerShell as an administrator.

    reg add "HKLM\System\CurrentControlSet\Control\Session Manager\Memory Management" /v PagingFiles /t REG_MULTI_SZ /d "C:\pagefile.sys 4100 4100" /f
    reg add "HKLM\System\CurrentControlSet\Control\CrashControl" /v AlwaysKeepMemoryDump /t REG_DWORD /d 1 /f
    reg add "HKLM\System\CurrentControlSet\Control\CrashControl" /v CrashDumpEnabled /t REG_DWORD /d 1 /f
    

    Adjust the parameters in the first command based on your physical memory size. In C:\pagefile.sys 4100 4100, the two 4100 values represent the size of the page file to be created on the C drive. This value should be slightly larger than your physical memory. In this example, 4100MB is suitable for 4GB of physical memory. Adjust the values according to your actual situation. The table below lists recommended page file sizes for common physical memory sizes:

    Physical Memory Size (GB) Recommended Page File Size (MB)
    4 4100
    8 8200
    16 16400
    32 32800
    64 65600
    128 131100

    After adjusting the page file size parameter in the first command, execute these three commands in CMD or PowerShell.

  3. Make sure you have twice the size of your physical memory as free space on your system drive (usually C drive) before creating the page file. For example, if your physical memory is 4GB, make sure you have at least 8GB of free space on the C drive to accommodate the page file and the complete dump that will be captured later. If the space on the C drive is only enough for the page file, run the following command in CMD or PowerShell to set the output path of the complete dump to another disk (make sure that disk has free space greater than your physical memory size). The command below changes the output path of the complete dump to D:\memory.dmp, but you can adjust it accordingly.

    reg add "HKLM\System\CurrentControlSet\Control\CrashControl" /v DumpFile  /t REG_EXPAND_SZ /d "D:\memory.dmp" /f
    

  4. After executing the above commands, restart your system to apply these settings.

Main steps

  1. Run CMD as an administrator, navigate to the C:\temp\NotMyFault directory, and execute the following command: notmyfault64.exe /crash (if your system is 32-bit, execute notmyfault.exe /crash; if the system is ARM64, execute notmyfault64a.exe /crash). This command will trigger your Windows system crash, and you will see a blue screen. At this point, the system is creating a complete dump and will then restart.

End steps

  1. If you haven't previously modified the output path of the complete dump, it will be saved in C:\Windows\memory.dmp. If you have modified the output path of the complete dump, please retrieve it from the specified location.

  2. If you want to revert the previous registry settings, run CMD or PowerShell as an administrator and execute the following commands:

    reg add "HKLM\System\CurrentControlSet\Control\Session Manager\Memory Management" /v PagingFiles /t REG_MULTI_SZ /d "?:\pagefile.sys" /f
    reg delete "HKLM\System\CurrentControlSet\Control\CrashControl" /v AlwaysKeepMemoryDump /f
    reg add "HKLM\System\CurrentControlSet\Control\CrashControl" /v CrashDumpEnabled /t REG_DWORD /d 7 /f
    
  3. If you previously modified the complete dump's output path and want to change it back to the default value, additionally run the following command:

    reg add "HKLM\System\CurrentControlSet\Control\CrashControl" /v DumpFile  /t REG_EXPAND_SZ /d "%SystemRoot%\MEMORY.DMP" /f