summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWindowsAddict2024-09-28 22:20:41 +0000
committerWindowsAddict2024-09-28 22:20:41 +0000
commite28fbe01ee7b2c1910fa6bde2445e6bafac617f0 (patch)
tree86c3743e1f8e08ba5b3139b914a1562ba12148bb
parent50d2da34315751c265ece0e6c322cf20182cc3ae (diff)
downloadmassgrave.dev-e28fbe01ee7b2c1910fa6bde2445e6bafac617f0.zip
Add self-hosted Git repo
-rw-r--r--docs/contactus.md2
-rw-r--r--docs/intro.md4
-rw-r--r--static/get.ps110
3 files changed, 11 insertions, 5 deletions
diff --git a/docs/contactus.md b/docs/contactus.md
index 4358980..ff01754 100644
--- a/docs/contactus.md
+++ b/docs/contactus.md
@@ -5,7 +5,7 @@ Please feel free to share feedback regarding bug reports, documentation errors,
- [Discord](https://discord.gg/tVFN4N84PP) ❤️ (signup not required) - Discussion
- [Reddit](https://www.reddit.com/r/MAS_Activator/)
- [Twitter](https://twitter.com/massgravel)
-- [GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts) / [Azure DevOps](https://dev.azure.com/massgrave/_git/Microsoft-Activation-Scripts)
+- [GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts) / [Azure DevOps](https://dev.azure.com/massgrave/_git/Microsoft-Activation-Scripts) / [Self-hosted Git](https://git.activated.win/massgrave/Microsoft-Activation-Scripts)
- [Nsaneforums](https://nsaneforums.com/topic/316668--)
diff --git a/docs/intro.md b/docs/intro.md
index 50c3853..48f9387 100644
--- a/docs/intro.md
+++ b/docs/intro.md
@@ -45,7 +45,7 @@ irm https://massgrave.dev/get | iex
</TabItem>
<TabItem value="Method 2" label="Method 2 - Traditional (Windows 7 and later)" default>
-1. Download the file under the code button from [GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts) or [Azure DevOps](https://dev.azure.com/massgrave/_git/Microsoft-Activation-Scripts)
+1. Download the file under the code button from [GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts) or [Azure DevOps](https://dev.azure.com/massgrave/_git/Microsoft-Activation-Scripts) or [Self-hosted Git](https://git.activated.win/massgrave/Microsoft-Activation-Scripts)
2. Right-click on the downloaded zip file and extract
3. In the extracted folder, find the folder named `All-In-One-Version`
4. Run the file named `MAS_AIO.cmd`
@@ -70,7 +70,7 @@ irm https://massgrave.dev/get | iex
## MAS Latest Release
Last Release - v2.7 (6-Sep-2024)
-[GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts) / [Azure DevOps](https://dev.azure.com/massgrave/_git/Microsoft-Activation-Scripts)
+[GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts) / [Azure DevOps](https://dev.azure.com/massgrave/_git/Microsoft-Activation-Scripts) / [Self-hosted Git](https://git.activated.win/massgrave/Microsoft-Activation-Scripts)
------------------------------------------------------------------------
diff --git a/static/get.ps1 b/static/get.ps1
index 5ef6ad4..6925598 100644
--- a/static/get.ps1
+++ b/static/get.ps1
@@ -12,15 +12,21 @@ write-host
$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'
+$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 }
try {
$response = Invoke-WebRequest -Uri $ShuffledURLs[0] -UseBasicParsing
}
catch {
- $response = Invoke-WebRequest -Uri $ShuffledURLs[1] -UseBasicParsing
+ try {
+ $response = Invoke-WebRequest -Uri $ShuffledURLs[1] -UseBasicParsing
+ }
+ catch {
+ $response = Invoke-WebRequest -Uri $ShuffledURLs[2] -UseBasicParsing
+ }
}
# Verify script integrity