Windows 10 has a new feature - active memory dump.
I would like to get / set currently set dump type in windows 10. To get dump type I use the following command in command prompt:
wmic RECOVEROS get DebugInfoType
which returns integer value assigned to certain type.
The problem is that both Active Memory Dump and Complete Memory Dump has value assigned equal to 1 so I can't tell which of the latter is selected. and if I use
wmic RECOVEROS set DebugInfoType = 1
then Complete Memory Dump is set.
Is there any way I can read the currently selected dump type via cmd or registry? Or i need some UI Automation tool to read the value from the window?