I am having a Windows installation which fails to boot (BSOD). Safe mode is not working, too. So I created a Windows bootable USB stick and am now in the command prompt from the troubleshoot mode.
The USB stick is mounted on X:, the non-working Windows installation is on C:. I can browse all my personal files etc, so I am sure C: is the correct drive.
To debug further, I want to enable Minidumps. The internet says the following command is the way to go:
wmic recoveros set DebugInfoType = 3
Done and it says it was successful. Still, there are no Minidumps created. Turns out when I reboot into the recovery, the DebugInfoType is changed back to 7.
When I get all properties using
wmic recovers get
it also shows all paths with X:\ instead of C:.
My suspicion is that the wmic command operates on the currently booted recovery Windows but not for the actually intended installation on C:.
How can I force wmic to operate on behalf of the C:-installation?