Windows error 0x80091007, -2146889721

Detailed Error Information

CRYPT_E_HASH_VALUE[1]

MessageThe hash value is not correct.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode9 (0x009)
NameFACILITY_SSPI[2][1]
DescriptionThe source of the error code is the Security API layer.[2][1]
Error Code4103 (0x1007)

Questions

20votes
8answers

Microsoft Asp.Net 5 RC1

I am trying to install ASP.NET 5 RC1 but I can't because of an error on setup. > Setup Failed > > One o more issues caused the setup to fail. please fix the issues and then > retry setup. for more information see the log file > > 0x80091007 [...] read more
asp.net-core
6votes
1answer

Manually sign a PE file

I'm trying to sign an existing Portable Executable manually. I'm following instructions found in this document: 1. Load the image header into memory. 2. Initialize a hash algorithm context. 3. Hash the image header from its base to immediately before the start of the checksum address, as specified in Optional [...] read more
c++
winapi
portable-executable
6votes
2answers

How to include a modifiable loose file in WiX burn?

I have a setup package including a non-compressed file. <DirectoryRef Id="INSTALLLOCATION"> <Component Id="LocationConfig"> <File Id="LocationConfigFile" Source="LooseFile.Config" DiskId="2" Vital="no" Compressed="no" /> </Component> </DirectoryRef> The purpose of this file being loose is so it can be edited before installation. This works as desired. I have a burn chain specifying that the loose [...] read more
wix
burn
3votes
2answers

Installing .NET Framework 4 Client Profile breaks Windows Update

I have a Samsung NC-10 netbook with a fresh install of Windows 7 Home Premium 32-bit (it only had 2GB). If Microsoft .NET Framework 4 Client Profile is installed on it, Windows Update will always return error code 8024402F ("Windows Update encountered an unknown error"). As soon as I uninstall [...] read more
windows-7
windows-update
.net-framework
3votes
2answers

Why is AspNet5.ENU.RC1.exe failing to install on Windows Server 2012 R2?

Running AspNet5.ENU.RC1.exe on a windows server 2012 R2 instance (hosted in azure) fails with 0x80072f76 - Unspecified error. I read about the known issue where installing from a folder that also contains earlier beta vs web tooling MSI files can fail with error 0x80091007 - The hash value is not [...] read more
installation
asp.net-core
windows-server-2012-r2
1vote
0answers

installing windows-sdk-10-version-2004-all fails reporting "was not successful. Exit code was '-2146889721'"

Installing windows-sdk-10-version-2004-all using chocolatey in docker with Dockerfile FROM mcr.microsoft.com/windows/servercore:ltsc2019 RUN powershell.exe -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SETX PATH "%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" RUN choco install --no-progress -y windows-sdk-10-version-2004-all || ( type %ProgramData%\chocolatey\logs\chocolatey.log && type %TMP%\chocolatey\*.log ) It fails complaining Hashes match. Installing windows-sdk-10-version-2004-all... ERROR: Running ["C:\Users\ContainerAdministrator\AppData\Local\Temp\chocolatey\windows-sdk-10-version-2004-all\10.0.19041.0\winsdksetup.exe" /Features [...] read more
docker-for-windows
chocolatey
1vote
2answers

WiX Bundle gets "Failed to verify hash of payload" when trying to install .net core hosting bundle from web

I have a burn/bootstrapper WiX bundle with: <?define DotNetVersion = "2.1.11"?> <!-- The Min and Next .Net version that our installed version must be between --> <Variable Name='MinDotNetVersion' Type='string' Value='2.1.0' bal:Overridable='no'/> <Variable Name='NextDotNetVersion' Type='string' Value='2.2.0' bal:Overridable='no'/> <?define HostingBundleUrl = "https://www.microsoft.com/net/download/thank-you/dotnet-runtime-$(var.DotNetVersion)-windows-hosting-bundle-installer" ?> <util:RegistrySearch Id="DotNetHostingBundle86" Root="HKLM" Key="SOFTWARE\dotnet\Setup\InstalledVersions\$(var.Platform)\sharedhost" Value="Version" Variable="DotNetHostingBundleVersion" /> <!-- If [...] read more
.net-core
wix
burn
1vote
1answer

Wix Custom Bundle Error 0x80091007: Hash mismatch for path:

Apologies but my Google-fu has failed me, all I could find was ASP.Net RC1's installer having this issue and this as being vaguely relevant: Burn installer facing error .Net 45 0x80091007-The hash value is not correct. My bundle is working fine, except for some dependencies of an exepackage which are [...] read more
wix
0votes
0answers

WiX Bootstrapper issues installing prerequisites for Outlook add-in, error 0x80091007

I'm trying to use WiX Bootstrapper project to install prerequisites for my Outlook add-in MSI. It needs two things: * .NET Framework 3.5 * Visual Studio 2010 Tools for Office Runtime So I created a WiX Bootstrapper project in Visual Studio and I'm doing the bundle identification and installation as [...] read more
wix
windows-installer
burn
0votes
1answer

Burn installer facing error .Net 45 0x80091007-The hash value is not correct

I am using Burn installer to install msi and .net framework. But when I try to install .exe it fails with error. .Net 45 0x80091007-The hash value is not correct. I have downloaded the .net exe from Link I got the hashcode using tool from fciv tool What I am [...] read more
.net
frameworks
wix
bootstrapper
burn
0votes
1answer

LightSwitch installation problem

A short while ago I tried to install LightSwitch Beta, but after some sizeable and lengthy downloads, the installation aborts after trying to install Silverlight 4. It simply says that Silverlight 4 could not be installed. The log is not much help either, as the most informative entries are: ISetupComponent::Pre/Post/Install() [...] read more
visual-studio
silverlight
visual-studio-lightswitch

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0