Visual Studio 2017 how to enable / disable ServiceHub.exe components

How to disconnect?

In the following screenshot, you see six processes that all start with a ServiceHub . They start when I start VS-2017 CE. Annoyingly, they do not stop when I exit VS-2017 CE. I would like to know how to disable them so that they do not start in the first place.

How to turn it on?

What does this include?

Screenshot

enter image description here

+8
source share
2 answers

First workaround:

Tools> Options> Text editor> JavaScript / TypeScript> Language service ...
Uncheck the Enable new JavaScript service .

OR

Tools> Extensions and Updates> TypeScript for Microsoft Visual Studio> Disable

Second workaround:

Rename ServiceHub.Host.Node.x86.exe , and if you want to enable it, just rename it to the source file:

C: \ Program Files (x86) \ Microsoft Visual Studio \ 2017 \ Enterprise \ Common7 \ ServiceHub \ Hosts \ ServiceHub.Host.Node.x86 \

Linked:

+3
source

These errors occurred when I used the Visual Studio installer (after downloading the selected packages), which was opened using the option to install additional project templates (the "New Project" window) in Visual Studio.

I just closed Visual Studio and the conflicts disappeared from the installer.

0
source

Source: https://habr.com/ru/post/1274560/


All Articles