mirror of
https://github.com/massgravel/get.activated.win.git
synced 2024-11-23 17:30:52 +07:00
Add self-hosted Git repo
This commit is contained in:
parent
2172c5789b
commit
633ff5b7e0
8
get
8
get
@ -6,15 +6,21 @@ $ErrorActionPreference = "Stop"
|
|||||||
|
|
||||||
$DownloadURL1 = 'https://raw.githubusercontent.com/massgravel/Microsoft-Activation-Scripts/52d4c52dba8e29a3c1fb295c8946dbe6cf2f0239/MAS/All-In-One-Version-KL/MAS_AIO.cmd'
|
$DownloadURL1 = 'https://raw.githubusercontent.com/massgravel/Microsoft-Activation-Scripts/52d4c52dba8e29a3c1fb295c8946dbe6cf2f0239/MAS/All-In-One-Version-KL/MAS_AIO.cmd'
|
||||||
$DownloadURL2 = 'https://dev.azure.com/massgrave/Microsoft-Activation-Scripts/_apis/git/repositories/Microsoft-Activation-Scripts/items?path=/MAS/All-In-One-Version-KL/MAS_AIO.cmd&versionType=Commit&version=52d4c52dba8e29a3c1fb295c8946dbe6cf2f0239'
|
$DownloadURL2 = 'https://dev.azure.com/massgrave/Microsoft-Activation-Scripts/_apis/git/repositories/Microsoft-Activation-Scripts/items?path=/MAS/All-In-One-Version-KL/MAS_AIO.cmd&versionType=Commit&version=52d4c52dba8e29a3c1fb295c8946dbe6cf2f0239'
|
||||||
|
$DownloadURL3 = 'https://git.activated.win/massgrave/Microsoft-Activation-Scripts/raw/commit/52d4c52dba8e29a3c1fb295c8946dbe6cf2f0239/MAS/All-In-One-Version-KL/MAS_AIO.cmd'
|
||||||
|
|
||||||
$URLs = @($DownloadURL1, $DownloadURL2)
|
$URLs = @($DownloadURL1, $DownloadURL2, $DownloadURL3)
|
||||||
$ShuffledURLs = $URLs | Sort-Object { Get-Random }
|
$ShuffledURLs = $URLs | Sort-Object { Get-Random }
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$response = Invoke-WebRequest -Uri $ShuffledURLs[0] -UseBasicParsing
|
$response = Invoke-WebRequest -Uri $ShuffledURLs[0] -UseBasicParsing
|
||||||
}
|
}
|
||||||
catch {
|
catch {
|
||||||
|
try {
|
||||||
$response = Invoke-WebRequest -Uri $ShuffledURLs[1] -UseBasicParsing
|
$response = Invoke-WebRequest -Uri $ShuffledURLs[1] -UseBasicParsing
|
||||||
|
}
|
||||||
|
catch {
|
||||||
|
$response = Invoke-WebRequest -Uri $ShuffledURLs[2] -UseBasicParsing
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Verify script integrity
|
# Verify script integrity
|
||||||
|
Loading…
Reference in New Issue
Block a user