Alan,
Sorry, I was referring to Platinum.
You are on X3E?
What you are describing sounds like a crash. In the crash response handling, X3E tries to shut down the devices right away but we've found that part of the process can hang so it's less obvious that a crash occurred.
To capture a crash dump in this situation, you can run a utility called procdump from Microsoft TechNet.
https://technet.microsoft.com/en-us/sysinternals/dd996900.aspx Download the .zip file. Extract it to a path that's easy to type/remember such as c:\utils\
Then when SONAR appears in this state, from cmd prompt type this:
[current folder]> c:\utils\procdump64.exe sonarpdr
You should get a minidump file in the folder that cmd prompt first opened in (what appears to the left of the prompt > in [current folder]
in my case I had c:\Users\kalb>
To view the resulting dump file, type this to launch explorer showing the contents of the folder
> start .
Then you could attach the .dmp file to a problem report, support case, etc.
However, if you don't mind installing an additional tool, you can find out if the crash is related to a plugin without waiting.
Analyzing dumps isn't trivial. But I managed to find a tool that gives a nice user accessible report.
https://www.microsoft.com/en-us/download/details.aspx?id=49924 So if you want to get a high level mention of a faulting module in a crash dump, install the tool, then find DebugDiag 2 Analysis in the search box.
Run it and
Check the CrashHangAnalysis box (1)
Then click Add Data Files (2). Choose the minidump that was created by procdump.
Then click Start Analysis (3).
After awhile, it will open Internet Explorer and ask for permission to load, choose allow blocked content and then the results will appear in the browser window. The faulting module will appear in the red error section in the style module!functionname. The report lists the path and manufacturer, so that should provide enough info to see what plugin could be causing a crash. Here is an example report. This specific example would require more detailed analysis to get at the cause. One possible cause we've been seeing is the Dell Shell Extension crash.
Keith