JRE 8, TDM-GCC MinGW: Silent installation

3

Does anyone know how to silently install JRE 8 (jre-8u65-windows-i586) via a bat file?

And if possible, could you also tell me how to install TDM-GCC (MiNGW32) in the same way?

For these two I have already tried a bat file:

"name of program.exe" / S Or "program name.exe" / SILENT

but it did not work

A +

    
asked by anonymous 10.02.2016 / 21:54

1 answer

3

According to Oracle documentation ,

  

[...] you can use the option / s for the JRE Windows Offline Installer to perform a silent installation.

The provided example is as follows:

jre-8-windows-i586.exe /s

(Note that arguments of command line can be case-sensitive Test /s instead of /S .)

Regarding the TDM-GCC MinGW Compiler, there is currently no non-interactive installation options

a>.

    
10.02.2016 / 22:11