In Visual Studio 2017, everything is different. You will no longer find the registry keys for Visual Studio 2017, because Visual Studio 2017 now stores the %VsAppDataFolder%\privateregistry.bin registry in a private binary file in the %VsAppDataFolder%\privateregistry.bin .
However, from this link , there is still a way to find and modify registry keys for Visual Studio 2017.
- Close Visual Studio 2017
- Open regedit
- Select
HKEY_LOCAL_MACHINE from the left pane. - Choose File> Download Hive ...
- Download the privateregistry.bin file from
%localappdata%\Microsoft\VisualStudio\15.0_[instanceid]{RootSuffix}\privateregistry.bin . RootSuffix for a typical VS installation will be empty. This is mainly used for an experimental example. - Name the key as you want (for example, "VS2017") when prompted
- From there, you can view the entries, as in any other ordinary registry.
- Configure it according to the accepted answer suggestions.
- Important! When you are done, you need to make sure that you have “unloaded” the private registry by selecting the “root” key (in this example, “VS2017”) and choosing “File”> “Unload Hive”. If you do not, VS will not be able to read the
privateregistry.bin file with privateregistry.bin , which will cause serious problems.
Update: this also works on Visual Studio 2019 (version 16.0) too.
source share