Articles

How to change Windows memory dump file option in Azure VMs without a restart

Problem

Currently Azure Windows marketplace images are set with “Automatic memory dump” file option.

System > Advanced system settings > Startup and Recovery > Settings…

System failure settings

This configuration will allow a “Kernel memory dump” to be generated in case of an unexpected Stop error (also known as blue screen of death) happen.

Blue Screen of Death - Bing images

Sometimes when you are troubleshooting complex scenarios, you need a “Complete memory dump” (also known as Full memory dump). Changing that, while the problem is happening, may be a problem as most of the times you would need to change paging file settings, sometimes change dump location and even restart the machine to validate the changes. This could take the system out of the behavior you are investigating and cause a lot of extra work changing everything back later on.

Warning - System Properties

Workaround

One solution to work around this is using Kernel Debugging Control tool to perform changes.

One of the cool functions of this tool is that it allows you to set the system to capture “Complete memory dump” without the need of a restart/reboot.

.\kdbgctrl.exe -sd full

kdbgctrl help

For Windows Azure VMs there is a repair script that downloads the tool and helps you to set the desired configuration.

[Az vm repair Microsoft Docs](https://docs.microsoft.com/en-us/cli/azure/vm/repair?view=azure-cli-latest)

az vm repair list-scripts

PS C:\> az vm repair list-scripts --query 'map[].{Id:id}' --output table
Id
------------------------------
win-hello-world
linux-hello-world
win-error-test
linux-error-test
win-chkdsk-fs-corruption
win-sfc-sf-corruption
win-bcdedit-ignoreAllFailure
linux-alar-fki
win-enable-nested-hyperv
win-toggle-safe-mode
win-dumpconfigurator
win-collect-attached-disk-logs

Check the Repair Script Library GitHub page if you want to know more about it.

Changing the settings

We are going to use the win-dumpconfigurator to change our dump settings.

win-dumpconfigurator

The repair command invokes Azure VM RunCommand extension using the ‘win-dumpconfigurator’ scripts to set your VM with the following:

Here is the AZ CLI command:

az vm repair run –resource-group <RGName> –name <VMName> –run-id win-dumpconfigurator –parameters DumpType=full DumpFile=C:\Memory.dmp DedicatedDumpFile=C:\DedicatedDump.sys –output jsonc –verbose

az vm repair

Here you see the Crash Control registry configuration before and after the change:

HKLM\SYSTEM\CurrentControlSet\Control\CrashControl

Before After
Cash Control - before Cash Control - after

Notice that the repair script also changes the DumpFile destination and adds DedicatedDumpFile entry to set a dedicated dump file to replace the use of paging file for the dump capture.

Now let’s generate a crash on the Windows Azure VM using NMI

Azure VM Serial Console NMI

We can see the ‘NMI_HARDWARE_FAILURE’ and the system collecting error info.

Azure VM Serial Console - NMI_HARDWARE_FAILURE

To confirm that this is really a full memory dump, we can use WinDBG Preview to open the new dump file and check it.

WinDBG Preview - full dump

Extra

There are some big VM sizes on Azure with a lot of memory. In case you are investigating a problem in one of these huge memory VMs, and you need a full memory dump, you may run out of space on your current dump file location.

A workaround here is to attach one or more data disks on the VM and set the DumpFile and DedicatedDumpFile to direct their files to these new disks. I would expect the dump, when generated, to use the same amount of space as the VM’s memory, same for the dedicated dump file.

Important

The bigger the VM’s memory size, the longer it will take to generate the dump file! Remember this when planning the dump capture, as this will impact the time to the VM to get back online.

Final consideration

I hope this information can help you investigate your problem further.

In case you need help with your issue, please consider contacting Azure support.