VS2017安装后如何移动 Windows Kits文件夹

 

MS的回答 LINK

Try the following technique:

  • Close all programs, move the “Windows Kits” folder to another disk, for example to “D:Windows Kits”; remove the original folder.
  • Start the “Command Prompt (Admin)”. It can be found in Start menu. If you find “PowerShell (Admin)”, then start it and execute “cmd”. Then run the command:

   mklink /J "C:Program Files (x86)Windows Kits" "D:Windows Kits"

You should re-see “Windows Kits” at original location on disk C, but now it is a “junction” and does not take space. The programs do not need re-configuration.

要想查看安装的情况,可以查看如下位置:

计算机HKEY_LOCAL_MACHINESOFTWAREWOW6432NodeMicrosoftMicrosoft SDKsWindowsv10.0

 

原文地址:https://www.cnblogs.com/arxive/p/9845269.html