Windows error 0x800700B6, -2147024714

Detailed Error Information

INVALID_ORDINAL[1]

MessageThe operating system cannot run %1.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode7 (0x007)
NameFACILITY_WIN32[2][1]
DescriptionThis region is reserved to map undecorated error codes into HRESULTs.[2][1]
Error Code182 (0x00b6)

This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x000000b6.

Questions

4votes
1answer

Error when connecting to AS400 (ISeries)

I'm trying to connect to a AS400 server using the .net classes. I have added a reference to IBM.Data.DB.iSeries and I use the following code: var conn = new iDB2Connection("DataSource=111.111.111.111;UserID=xxx;Password=xxx; DataCompression=True;"); conn.Open(); But I get the following exceptions Running 64 bit: "The provider cannot run in 64-bit mode." Running 32 [...] read more
.net
ibm-midrange
data-access
1vote
2answers

I am getting System.BadImageFormatException : The operating system cannot run exception while running unit tests

I am working on a Winforms project. Currently I am facing a problem that running some of the test cases throw System.BadImageFormatException : The operating system cannot run . (Exception from HRESULT: 0x800700B6) exception. This happens only if I run tests through NUnit. However, if I run the application through [...] read more
c#
.net
nunit
badimageformatexception
0votes
1answer

Importing SSL dll into project

I have a project which I imported from old system. This code became most problematic PacketGroup = new ArrayList(); Crypto = new GameCrypto(ASCIIEncoding.ASCII.GetBytes(STRING_CRYPTO)); KeyExchance = new OpenSSL.Crypto.DH(); KeyExchance.G = RANDOM_INT; KeyExchance.P = OpenSSL.Core.BigNumber.FromHexString("KEY__KEY_KEY\0"); KeyExchance.GenerateKeys(); NewServerIV = GenerateIV(); NewClientIV = GenerateIV(); At first I received the error: > System.TypeInitializationException: The type [...] read more
c#
c++
.net
ssl
visual-studio-project
0votes
1answer

Running nunit tests involving remote objects are throwing the error The operating system cannot run . (Exception from HRESULT: 0x800700B6)

I am running my tests in NUnit. But while debugging I checked that the tests are failing while any remote object is accessed. The error I am getting is > The operating system cannot run . (Exception from HRESULT: 0x800700B6) What can be the possible issue? read more
c#
.net
nunit
.net-remoting
-3votes
1answer

I am getting the following exception: "Unable to load DLL: The operating system cannot run. (Exception from HRESULT: 0x800700B6)"

This happens when P/Invoking into Intel IPP library. This library in-turn relies on OpenMP. Here's what I've tried: http://software.intel.com/en-us/articles/opm-abort-initializing-libguide40dll/ Should resolve the exception about using two versions of OpenMP together (libguide40.dll and libiomp5md.dll). Removing a local copy of libguide40.dll did not solve the issue. Could you help me to track [...] read more
c#
.net
pinvoke
openmp
intel-ipp

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