Skip to content

Instantly share code, notes, and snippets.

@chrisdpa-tvx
Last active June 1, 2021 18:00
Show Gist options
  • Save chrisdpa-tvx/32f3864976af9ddb645df340f9230786 to your computer and use it in GitHub Desktop.
Save chrisdpa-tvx/32f3864976af9ddb645df340f9230786 to your computer and use it in GitHub Desktop.
Install Java JRE on windows silently using powershell
$URL=(Invoke-WebRequest -UseBasicParsing https://www.java.com/en/download/manual.jsp).Content | %{[regex]::matches($_, '(?:<a title="Download Java software for Windows Online" href=")(.*)(?:">)').Groups[1].Value}
Invoke-WebRequest -UseBasicParsing -OutFile jre8.exe $URL
Start-Process .\jre8.exe '/s REBOOT=0 SPONSORS=0 AUTO_UPDATE=0' -wait
echo $?
@warleyvods
Copy link

Don't work :\

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment