diff options
| author | WindowsAddict | 2024-09-27 23:00:02 +0000 |
|---|---|---|
| committer | WindowsAddict | 2024-09-27 23:00:02 +0000 |
| commit | 5b029c2e1bdf4a61ebac438f6e9a168442d05859 (patch) | |
| tree | bed1e78394eb791aab62f8bbfaed58761735b449 /static | |
| parent | 905bcfb71527e9ba8ed5e7f8ad51798e76df125f (diff) | |
| download | massgrave.dev-5b029c2e1bdf4a61ebac438f6e9a168442d05859.zip | |
Add Azure DevOps repo and remove Bitbucket and Codeberg repo
Diffstat (limited to 'static')
| -rw-r--r-- | static/get.ps1 | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/static/get.ps1 b/static/get.ps1 index 87d9666..d39e770 100644 --- a/static/get.ps1 +++ b/static/get.ps1 @@ -11,22 +11,16 @@ write-host [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$DownloadURL1 = 'https://raw.githubusercontent.com/massgravel/Microsoft-Activation-Scripts/52d4c52dba8e29a3c1fb295c8946dbe6cf2f0239/MAS/All-In-One-Version-KL/MAS_AIO.cmd'
-$DownloadURL2 = 'https://bitbucket.org/WindowsAddict/microsoft-activation-scripts/raw/52d4c52dba8e29a3c1fb295c8946dbe6cf2f0239/MAS/All-In-One-Version-KL/MAS_AIO.cmd'
-$DownloadURL3 = 'https://codeberg.org/massgravel/Microsoft-Activation-Scripts/raw/commit/52d4c52dba8e29a3c1fb295c8946dbe6cf2f0239/MAS/All-In-One-Version-KL/MAS_AIO.cmd'
+$DownloadURL2 = 'https://dev.azure.com/massgrave/e5e7ca26-b96c-4887-b3d8-ce10a5bdee05/_apis/git/repositories/a5c49950-3666-490e-afa6-1c2c2d29815e/items?path=%2FMAS%2FAll-In-One-Version-KL%2FMAS_AIO.cmd&versionType=Commit&version=52d4c52dba8e29a3c1fb295c8946dbe6cf2f0239&versionOptions=None'
-$URLs = @($DownloadURL1, $DownloadURL2, $DownloadURL3)
+$URLs = @($DownloadURL1, $DownloadURL2)
$ShuffledURLs = $URLs | Sort-Object { Get-Random }
try {
$response = Invoke-WebRequest -Uri $ShuffledURLs[0] -UseBasicParsing
}
catch {
- try {
- $response = Invoke-WebRequest -Uri $ShuffledURLs[1] -UseBasicParsing
- }
- catch {
- $response = Invoke-WebRequest -Uri $ShuffledURLs[2] -UseBasicParsing
- }
+ $response = Invoke-WebRequest -Uri $ShuffledURLs[1] -UseBasicParsing
}
# Verify script integrity
|
