I'm trying to use Visual Studio 2015 Diagnostic Tools but when I open the Windows this message appears:
The diagnostic tools failed unexpectedly.
Then I review the output window and configure output for Diagnostics Hub then I Found
No such interface supported
No such interface supported
Why I'm getting this error? How Can I resolve it?
Apparently is a problem with an update of Windows, the upgrade process does not take into account or modifies erroneously a file that interfere with the operation of the Diagnostic Tools window.
The solution -though there is supposed to later version of Visual Studio will delete those files- is follow these instructions:
cd %systemroot%\system32
takeown /f DiagnosticsHub.*
icacls DiagnosticsHub.* /grant %username%:F
del /q DiagnosticsHub.*
Now should restart Visual Studio.
For more info click here