mirror of
https://github.com/HMCL-dev/HMCL.git
synced 2025-02-05 16:44:47 +08:00
Fix the problem that SSL connection cannot be established on Windows 7
This commit is contained in:
parent
6ade056bf8
commit
fc65d8a535
@ -90,15 +90,19 @@ if ($useMirrorCheckBox.Checked) {
|
|||||||
} else {
|
} else {
|
||||||
switch ($Arch) {
|
switch ($Arch) {
|
||||||
'x86-64' {
|
'x86-64' {
|
||||||
$script:url = 'https://download.bell-sw.com/java/17.0.2+9/bellsoft-jre17.0.2+9-windows-amd64-full.zip'
|
$script:url = 'https://cdn.azul.com/zulu/bin/zulu17.32.13-ca-fx-jre17.0.2-win_x64.zip'
|
||||||
}
|
}
|
||||||
'x86' {
|
'x86' {
|
||||||
$script:url = 'https://download.bell-sw.com/java/17.0.2+9/bellsoft-jre17.0.2+9-windows-i586-full.zip'
|
$script:url = 'https://cdn.azul.com/zulu/bin/zulu17.32.13-ca-fx-jre17.0.2-win_i686.zip'
|
||||||
}
|
}
|
||||||
default { exit 1 }
|
default { exit 1 }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$securityProtocol = [System.Net.ServicePointManager]::SecurityProtocol.value__
|
||||||
|
if (($securityProtocol -ne 0) -and (($securityProtocol -band 0x00000C00) -eq 0)) { # Try using HTTP when the platform does not support TLS 1.2
|
||||||
|
$script:url = $script:url -replace '^https:', 'http:'
|
||||||
|
}
|
||||||
|
|
||||||
# Download Winodw
|
# Download Winodw
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user