Missing components for Microsoft Visual Studio 2017 Shell (isolated)

Viewed 396

Today I wanted to open Sql Server Management Studio 18 like every day. But this time an error message popped up:

Cannot find one or more components. Please reinstall the application.

And I reinstalled the application and even reinstalled the Microsoft visual studio 2015 Shell. What also confuses me is the fact that the shell 2017 of visual studio does not even exist yet. I'm working on a windows 11 machine.

3 Answers

After I uninstalled all Microsoft related Softwares in the control panel and reinstalled all again the SSMS started working. I just found out that you can also use Azure Data Studio as an alternative for SSMS, which is also sometimes preinstalled on windows machines.

EDIT

There is a solution provided in the forum that I'd like to share here:

  1. Download https://github.com/thebookisclosed/ViVe
  2. Run (from elevated cmd prompt):
    vivetool /disable /id:36354489
    shutdown -r -t0

In my case it returned No features were specified why I used another command:

    vivetool /disable /name:SV2Navpane
    shutdown -r -t0
Related