'"No view is registered with id: codespaces.explorerDetails" and "No view is registered with id: codespaces.explorer"

I am new to Visual Studio Code. I have configured my environment for C/C++ development and everything is working.

However, when starting VS Code, I receive these notifications in the bottom right corner.

  • "No view is registered with id: codespaces.explorerDetails"
  • "No view is registered with id: codespaces.explorer"


Solution 1:[1]

A deprecated Codespaces extension ms-vsonline.vsonline causes these error messages. But the extension does not appear in the user interface.

You can uninstall the deprecated extension by pasting the following command into a Windows PowerShell terminal:

code --uninstall-extension ms-vsonline.vsonline

The solution was found here: https://github.com/microsoft/vscode/issues/144971

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Christopher Peisert