1
.NET Framework 및 SQL localDB 2014를 선행 조건으로 추가 한 클릭 한번 설치 프로그램이 있습니다. 아래 그림과 같이 "다음과 같은 필수 구성 요소 다운로드"옵션을 제공합니다.Visual Studio 전제 조건 다운로드 실패 HRESULT = -2146697208
우리가 오류 "다운로드가 HRESULT = -2146697208 실패했습니다"얻는다 2012 년에 설치하려고하면이 윈도우 2012을 제외한 모든 운영 체제에서 작동합니다. 이는 Windows 2012 서버에 실패하고이 문제를 해결하기 위해 어쨌든이 이유가 될 것입니다 무엇 INSTALL.LOG
The following properties have been set:
Property: [AdminUser] = true {boolean}
Property: [InstallMode] = SpecificSite {string}
Property: [NTProductType] = 3 {int}
Property: [ProcessorArchitecture] = AMD64 {string}
Property: [VersionNT] = 6.2.0 {version}
Running checks for package 'Microsoft .NET Framework 4.5 (x86 and x64)', phase BuildList
Reading value 'Version' of registry key 'HKLM\Software\Microsoft\NET Framework Setup\NDP\v4\Full'
Read string value '4.5.50709'
Setting value '4.5.50709 {string}' for property 'DotNet45Full_TargetVersion'
The following properties have been set for package 'Microsoft .NET Framework 4.5 (x86 and x64)':
Property: [DotNet45Full_TargetVersion] = 4.5.50709 {string}
Running checks for command 'DotNetFX45\dotNetFx45_Full_x86_x64.exe'
Result of running operator 'ValueEqualTo' on property 'InstallMode' and value 'HomeSite': false
Result of running operator 'VersionGreaterThanOrEqualTo' on property 'DotNet45Full_TargetVersion' and value '4.5.50709': true
Result of checks for command 'DotNetFX45\dotNetFx45_Full_x86_x64.exe' is 'Bypass'
Running checks for command 'DotNetFX45\dotNetFx45_Full_setup.exe'
Result of running operator 'ValueNotEqualTo' on property 'InstallMode' and value 'HomeSite': true
Result of checks for command 'DotNetFX45\dotNetFx45_Full_setup.exe' is 'Bypass'
'Microsoft .NET Framework 4.5 (x86 and x64)' RunCheck result: No Install Needed
Running checks for package 'SQL Server 2014 SP1 Express LocalDB', phase BuildList
Looking up path for special folder 'ProgramFilesFolder'
Running check with folder 'C:\Program Files (x86)\Microsoft SQL Server\120\LocalDB\Binn' and file 'sqlservr.exe'
Unable to find directory 'C:\Program Files (x86)\Microsoft SQL Server\120\LocalDB\Binn'
Not setting value for property 'sqllocaldbVersion'
Looking up path for special folder 'WindowsVolume'
Running check with folder 'C:\Program Files\Microsoft SQL Server\120\LocalDB\Binn' and file 'sqlservr.exe'
Unable to find directory 'C:\Program Files\Microsoft SQL Server\120\LocalDB\Binn'
Not setting value for property 'sqllocaldbVersion_x64'
The following properties have been set for package 'SQL Server 2014 SP1 Express LocalDB':
Running checks for command 'SqlLocalDB2014SP1\sqllocaldb_x86.msi'
Result of running operator 'ValueNotExists' on property 'VersionNT': false
Result of running operator 'VersionLessThan' on property 'VersionNT' and value '6.0.1': false
Result of running operator 'ValueEqualTo' on property 'AdminUser' and value 'false': false
Result of running operator 'ValueNotEqualTo' on property 'ProcessorArchitecture' and value 'Intel': true
Result of checks for command 'SqlLocalDB2014SP1\sqllocaldb_x86.msi' is 'Bypass'
Running checks for command 'SqlLocalDB2014SP1\sqllocaldb_x64.msi'
Result of running operator 'ValueNotEqualTo' on property 'ProcessorArchitecture' and value 'amd64': false
Skipping ByPassIf because Property 'sqllocaldbVersion' was not defined
Skipping ByPassIf because Property 'sqllocaldbVersion_x64' was not defined
Result of checks for command 'SqlLocalDB2014SP1\sqllocaldb_x64.msi' is 'Install'
'SQL Server 2014 SP1 Express LocalDB' RunCheck result: Install Needed
EULA for components 'SQL Server 2014 SP1 Express LocalDB' was accepted.
Copying files to temporary directory "C:\Users\ADMINI~1\AppData\Local\Temp\2\VSD8390.tmp\"
Downloading files to "C:\Users\ADMINI~1\AppData\Local\Temp\2\VSD8390.tmp\"
(5/17/2017 8:47:57 AM) Downloading 'SqlLocalDB2014SP1\sqllocaldb_x64.msi' from 'https://*********/printconnector/prerequisites/SqlLocalDB2014SP1/sqllocaldb_x64.msi' to 'C:\Users\ADMINI~1\AppData\Local\Temp\2\VSD8390.tmp\'
Download completed at 5/17/2017 8:48:04 AM
Downloading failed with HRESULT=-2146697208
에서 전체 로그입니다 다음은? (컴포넌트 벤더의 웹 사이트에서 필수 조건을 다운로드 할 수있는 옵션을 제공하지 않음)
일부 클라이언트에서 동일한 오류가 발생했는데 클라이언트 및 ClickOnce 부트 스트 래퍼의 보안 설정과 함께 https : 연결과 관련하여 문제가 있다고 생각했습니다. 그러나 어쨌든 우리는 ClickOnce 사용을 중단했기 때문에 ssl없이 시도하지 않았습니다. 일반 http를 사용할 때도이 오류가 발생합니까? – wkl
https 대신 일반 http를 사용하면 다운로드가 다시 작동하는 것처럼 보입니다. 감사!!! – janitha000