visual-studioazurevisual-studio-2015debug-diagnostic-tool

"No such interface supported" using Visual Studio 2015 Diagnostic Tools


I'm trying to use Visual Studio 2015 Diagnostic Tools but when I open the Windows this message appears:

The diagnostic tools failed unexpectedly.

enter image description here

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?


Solution

  • 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:

    1. Close Visual Studio.
    2. Open an Administrator Command Prompt
    3. Enter the following commands:
    cd %systemroot%\system32
    
    takeown /f DiagnosticsHub.*
    
    icacls DiagnosticsHub.* /grant %username%:F
    
    del /q DiagnosticsHub.*
    

    Now should restart Visual Studio.

    For more info click here