安装 SQL Server Management Studio 2016 时无法确定有效的安装目标文件夹

A valid destination folder for the install could not be determined when installing SQL Server Management Studio 2016

在安装 SSMS 2016 时,出现以下错误并且安装程序终止:

SQL Server 2016 Common Files: A valid destination folder for the install could not be determined.

我尝试了以下解决方案:

  1. 删除 %TEMP% 文件夹中的所有文件
  2. 检查 BootstrapDir 是否存在于 HKLM

上述 2 个选项在 MS 站点上建议。

我有管理员权限,我还必须补充一点,我已经在这台机器上安装了 SSMS 2016,但我删除了它以清理一些 space。

有什么想法可以解决这个问题吗?

这正是我收到的错误消息:

BootstrapperEngineDataModel.OnError: Burn engine encountered error. PackageId: sql_ssms_extensions_msp_x86, ErrorType: WindowsInstaller, ErrorCode: 1807, Data: 1807, ErrorMessage: A valid destination folder for the install could not be determined., UIHint: 0
MainViewModel.AddFailedCondition: Error: Hotfix 2164 for  sql_ssms_extensions (KB3182270): A valid destination folder for the install could not be determined.
MainViewModel.OnPackageError: setup failed for packageId: sql_ssms_extensions_msp_x86, package: Hotfix 2164 for  sql_ssms_extensions (KB3182270), errorCode: 1807, errorMessage: A valid destination folder for the install could not be determined.

解决这个问题的方法是:

启动 regedit 并转到(或在注册表中搜索 BootstrapDir):

HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SQL Server0\Bootstrap

在我的电脑中,BootstrapDir 指向:

C:\Program Files (x86)\Microsoft SQL Server0\Setup Bootstrap\

我将其更改为:

C:\Program Files\Microsoft SQL Server0\Setup Bootstrap\

然后尝试重新安装,它在我的机器上工作。