This is a bug in ImageMagick and I will have to fix this for you. It only works if it can also the find the 'HKLM' version.
You can enable logging like this:
The output will be written to the console and the debug window of visual studio. I am working on adding a Log event to the MagickNET class. I will also add a page about this to the documentation then.
You can enable logging like this:
MagickNET.SetLogEvents(LogEvents.All); // LogEvents.All will show you the most information. MagickImage image=LoadImage(); image.Debug = true; PerformActions(image);