Java Error opening registry key

Make sure you remove any java.exe, javaw.exe and javaws.exe from your Windows\System32 folder and if you have an x64 system (Win 7 64 bits) also do the same under Windows\SysWOW64. If you can’t find them at these locations, try deleting them from C:\ProgramData\Oracle\Java\javapath.

Dependency Walker reports IESHIMS.DLL and WER.DLL missing?

ieshims.dll is an artefact of Vista/7 where a shim DLL is used to proxy certain calls (such as CreateProcess) to handle protected mode IE, which doesn’t exist on XP, so it is unnecessary. wer.dll is related to Windows Error Reporting and again is probably unused on Windows XP which has a slightly different error reporting system than Vista and … Read more

Missing `server’ JVM (Java\jre7\bin\server\jvm.dll.)

To Fix The “Missing “server” JVM at C:\Program Files\Java\jre7\bin\server\jvm­­.dll, please install or use the JRE or JDK that contains these missing components. Follow these steps: Go to oracle.com and install Java JRE7 (Check if Java 6 is not installed already) After that, go to C:/Program files/java/jre7/bin Here, create an folder called Server Now go into the C:/Program files/java/jre7/bin/client folder Copy all … Read more

The program can’t start because cygwin1.dll is missing… in Eclipse CDT

This error message means that Windows isn’t able to find “cygwin1.dll”. The Programs that the Cygwin gcc create depend on this DLL. The file is part of cygwin , so most likely it’s located in C:\cygwin\bin. To fix the problem all you have to do is add C:\cygwin\bin (or the location where cygwin1.dll can be … Read more

No Module Named ‘_pywrap_tensorflow_internal’

I came across the same issue today, please switch to cuDNN v5.1 Library for Windows instead as @mickdelaney suggested and then try to Check environment settings of CUDA, normally all the settings of CUDA had been added to Windows environment Copy files in bin, lib and include of cuDNN to bin, lib and include of CUDA respectively. Normally the directory is C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA … Read more

I keep hearing about DLL hell – what is this?

It’s when Application A installs a Shared DLL v1.0, Application B comes and updates the Shared DLL to v1.1 which should be compatible but there are slightly different behaviors, then App A stops working correctly and reinstalls v1.0 then App B stops working … now imagine this with more than 2 apps let’s say a … Read more