为什么 Visual Studio 2017 安装程序在尝试制作离线安装程序时退出
Why does the Visual Studio 2017 installer quit when trying to make a offline installer
我正在使用以下命令为 Visual Studio 2017 Professional 创建离线安装程序:
vs_professional.exe --layout c:\vs2017\ --lang en-US
它启动了最初的 window,但几分钟后就完成了,没有下载任何东西。它会创建文件夹,但文件夹中只有证书。
查看临时目录中的安装文件,我能够在 dd_vs_professional_decompression_log 中找到以下行:
[3/9/2017, 13:18:56] The entire Box execution exiting with result code: 0x0
[3/9/2017, 13:18:56] Launched extracted application exiting with result code: 0x57
这在 dd_bootstrapper 日志中
VisualStudio Bootstrapper:3/9/2017 1:26:14 PM: Unable to parse the json file since it not exists: 0
VisualStudio Bootstrapper:3/9/2017 1:18:46 PM: Waiting for setup process to complete...
VisualStudio Bootstrapper:3/9/2017 1:18:46 PM: Vs setup process exited with code 87
VisualStudio Bootstrapper:3/9/2017 1:18:55 PM: Bootstrapper Successfully completed.
安装程序似乎从不显示下载各个组件的命令 window。
错误 0x57 (87) 表示 ERROR_INVALID_PARAMETER
您需要使用:
vs_professional.exe --layout c:\vs2017 --lang en-US
显然,安装程序的第一部分正确处理了尾部斜杠,但是如果目录包含尾部反斜杠,第二部分(实际下载组件的部分)将会失败。
我有同样的错误,但是重新下载vs_professional.exe后解决了,后来我了解到安装文件夹中的文件“vs_professional.exe”与源文件..
尝试再次下载文件并使用命令,它会起作用
问候,
我正在使用以下命令为 Visual Studio 2017 Professional 创建离线安装程序:
vs_professional.exe --layout c:\vs2017\ --lang en-US
它启动了最初的 window,但几分钟后就完成了,没有下载任何东西。它会创建文件夹,但文件夹中只有证书。
查看临时目录中的安装文件,我能够在 dd_vs_professional_decompression_log 中找到以下行:
[3/9/2017, 13:18:56] The entire Box execution exiting with result code: 0x0
[3/9/2017, 13:18:56] Launched extracted application exiting with result code: 0x57
这在 dd_bootstrapper 日志中
VisualStudio Bootstrapper:3/9/2017 1:26:14 PM: Unable to parse the json file since it not exists: 0
VisualStudio Bootstrapper:3/9/2017 1:18:46 PM: Waiting for setup process to complete...
VisualStudio Bootstrapper:3/9/2017 1:18:46 PM: Vs setup process exited with code 87
VisualStudio Bootstrapper:3/9/2017 1:18:55 PM: Bootstrapper Successfully completed.
安装程序似乎从不显示下载各个组件的命令 window。
错误 0x57 (87) 表示 ERROR_INVALID_PARAMETER
您需要使用:
vs_professional.exe --layout c:\vs2017 --lang en-US
显然,安装程序的第一部分正确处理了尾部斜杠,但是如果目录包含尾部反斜杠,第二部分(实际下载组件的部分)将会失败。
我有同样的错误,但是重新下载vs_professional.exe后解决了,后来我了解到安装文件夹中的文件“vs_professional.exe”与源文件..
尝试再次下载文件并使用命令,它会起作用
问候,