Installing JRE or JDK in Windows does not load file opening dialog [closed]

0

I comment to see if you can help me that this problem is already driving me crazy. I can not install neither the JRE nor the JDK of java.

When I execute them in the JRE , nothing appears to me (but in the task manager there are 2 processes) with JDK it happens that a window with a bar appears, that bar finishes filling but another window appears where nothing happens anymore.

I have lowered again the JDK and the JRE , but it is the same, the last thing I did was to lower the JDK 9 and I get this from there no longer happens:

My laptop has Windows 7 home basic, 4GB of RAM, and a Celeron processor. It has an Intel HD Graphics with 128 MB of video.

I appreciate the answers

    
asked by Eloy García Ceja 03.03.2018 в 21:47
source

1 answer

1

I think you lack video memory to be able to install it graphically, but fortunately you can do it from the command line silently, for it from the windows console you get when you press ⊞ R and typing cmd you will have to execute the program with one of the options that I propose below.

You have the following options:

  • Install public JDK and JRE (does not install sample source code).

    jdk-9_windows-x64_bin.exe /s

  • Install development tools and source code but not install the JRE.

    jdk-9_windows-x64_bin.exe /s ADDLOCAL="ToolsFeature,SourceFeature"

  • Install the development tools, source code, and public JRE.

    jdk-9_windows-x64_bin.exe /s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"

More information: link

    
answered by 03.03.2018 / 22:07
source