Quick solution to a little problem, quickly installing Java from powershell.
1 2 3 4 5 6 7 8 |
New-Item c:\folder -type directory $source = "http://fs41.filehippo.com/3446/4bcbffc56a734613b35a8bfdd0e4e381/jre-7u45-windows-i586.exe" $destination = "C:\folder\jre-7u45-windows-i586.exe" $client = new-object System.Net.WebClient $client.DownloadFile($source, $destination) C:\ntst\jre-7u45-windows-i586.exe /s Write-Host "Done" -foregroundcolor green |