ImportError: DLL load failed: %1 is not a valid Win32 application. But the DLL’s are there
Unofficial Windows Binaries for Python Extension Packages you can find any python libs from here
Unofficial Windows Binaries for Python Extension Packages you can find any python libs from here
The answer depends on what language the DLL was written in. If it was a .NET language then, as pointed out, you can use .NET Reflector. If it’s the older Visual Basic (pre-.NET), then the DLL is compiled as what’s called p-code and there are a few options for doing some variations on decompiling. Finally, if … Read more
It turns out to get this application working under VBScript, I had to do two things. Run RegAsm.exe to register the DLLs. Run the C:\Windows\SysWOW64\cscript.exe to run my VBScript. If these don’t work, check out the other answer here about enabling 32-bit applications in IIS.
I have an application that I’ve written that crashes intermittently, but I’m unable to capture an exception at the application layer. I always get an entry in the event log but doesn’t give me much info: As you can see, I get this: Faulting module path: C:\WINDOWS\SYSTEM32\ntdll.dll. I’m not sure what that is or how … Read more
What is a DLL? Dynamic Link Libraries (DLL)s are like EXEs but they are not directly executable. They are similar to .so files in Linux/Unix. That is to say, DLLs are MS’s implementation of shared libraries. DLLs are so much like an EXE that the file format itself is the same. Both EXE and DLLs … Read more