I have a Windows 2008 64-bit server and I have to install a 32-bit JRE, because my Java application 32 misfortune From java.exe
is installed on C: \ Windows \ SysWow64
and when I start a console window or a batch file install java .exe
is not found. (Because cmd.exe
is a 64-bit application and looks at the 64-bit version of the system directory, which does not have any java.exe
)
How can I install other code for batch files and command line without causing much confusion with system configurations or how to fix future updates to stop JRE java.exe
?
java.exe
is not dependent on that in a Windows system directory is; Add the bin
directory of your Java runtime environment to the PATH
environment variable (if it is not too much "moving with system configuration").
Comments
Post a Comment