diff options
| -rw-r--r-- | docs/intro.md | 132 |
1 files changed, 69 insertions, 63 deletions
diff --git a/docs/intro.md b/docs/intro.md index b3b41b2..9279ac3 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -6,71 +6,80 @@ title: Microsoft Activation Scripts ---
# Microsoft Activation Scripts (MAS)
-
-Open-source Windows and Office activator featuring HWID, Ohook, TSforge, and Online KMS activation methods, along with advanced troubleshooting.
+An open-source Windows and Office activator featuring HWID, Ohook, TSforge, and Online KMS activation methods, along with advanced troubleshooting.
---
-### How to Activate Windows / Office / Extended Updates (ESU)?
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+### Activation Methods
-#### Method 1 - PowerShell ❤️ (Windows 8.1 and later)
+<Tabs>
+ <TabItem value="powershell" label="Method 1: PowerShell (Recommended)" default>
-:::info
+ **This method is the most convenient and works on Windows 8.1, 10, and 11.**
-1. **Open PowerShell**
- Click the **Start Menu**, type `PowerShell`, then open it.
+ 1. Click the **Start Menu**, type `PowerShell`, and open it.
+ 2. Copy and paste the code below and press **Enter.**
+
+ ```powershell
+ irm https://get.activated.win | iex
+ ```
-2. **Copy and paste the code below, then press enter.**
- ```
- irm https://get.activated.win | iex
- ```
- If the above is blocked (by ISP/DNS), try this (needs updated Windows 10 or 11):
- ```
- iex (curl.exe -s --doh-url https://1.1.1.1/dns-query https://get.activated.win | Out-String)
- ```
- Older versions of Windows will require running this command beforehand:
+ 3. In the menu that appears, type the number corresponding to one of the **Green** options.
+
+ <details>
+ <summary><strong>Having trouble? (Blocked by ISP or Old Windows)</strong></summary>
+
+ **If the command is blocked:**
+ Some ISPs block the URL. Use this command to bypass DNS blocks (Windows 10/11 only):
+ ```powershell
+ iex (curl.exe -s --doh-url https://1.1.1.1/dns-query https://get.activated.win | Out-String)
```
+
+ **If you receive a TLS/SSL Error (Older Windows):**
+ If you are on Windows 7 or an old build of 8/10, run this command *before* the main command:
+ ```powershell
[Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::Tls12
```
+ </details>
-3. The activation menu will appear. **Choose the green-highlighted options** to activate Windows or Office.
-
-4. **Done!**
-
-:::
+ </TabItem>
+ <TabItem value="manual" label="Method 2: Traditional (Offline)">
-#### Method 2 - Traditional (Windows Vista and later)
+ **Use this method if you prefer downloading a file or cannot use the PowerShell method.**
-:::info
+ 1. Download the script:
+ * [**MAS_AIO.cmd**](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&download=true) (Direct script)
+ * [**MAS_AIO.zip**](https://dev.azure.com/massgrave/Microsoft-Activation-Scripts/_apis/git/repositories/Microsoft-Activation-Scripts/items?$format=zip) (If the direct script is blocked by your browser)
+ 2. Run the `MAS_AIO.cmd` file.
+ 3. In the menu that appears, type the number corresponding to one of the **Green** options.
-1. Download the script: [**MAS_AIO.cmd**](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&download=true) or the [full ZIP](https://dev.azure.com/massgrave/Microsoft-Activation-Scripts/_apis/git/repositories/Microsoft-Activation-Scripts/items?$format=zip).
-2. Run the file named `MAS_AIO.cmd`.
-3. You will see the activation options. Follow the on-screen instructions.
-4. That's all.
-
-:::
+ </TabItem>
+</Tabs>
---
:::tip
-- Some ISPs/DNS block access to our domains. You can bypass this by enabling [DNS-over-HTTPS (DoH)](https://developers.cloudflare.com/1.1.1.1/encryption/dns-over-https/encrypted-dns-browsers/) in your browser.
-- **Having trouble**❓Connect with us [here](troubleshoot.md).
+- Some ISPs/DNS providers block access to our domains. You can bypass this by enabling [DNS-over-HTTPS (DoH)](https://developers.cloudflare.com/1.1.1.1/encryption/dns-over-https/encrypted-dns-browsers/) in your browser.
+- **Having trouble?** Connect with us [here](troubleshoot.md).
:::
---
-- To activate additional products such as **Office for macOS, Visual Studio, RDS CALs, and Windows XP**, check [here](unsupported_products_activation.md).
-- To run the scripts in unattended mode, check [here](command_line_switches.md).
+- To activate additional products such as **Office for macOS, Visual Studio, RDS CALs, and Windows XP**, see [here](unsupported_products_activation.md).
+- To run the scripts in unattended mode, see [here](command_line_switches.md).
---
:::note
-- The IRM command in PowerShell downloads a script from a specified URL, and the IEX command executes it.
+- The `irm` command in PowerShell downloads a script from a specified URL, and the `iex` command executes it.
- Always double-check the URL before executing the command and verify the source is trustworthy when manually downloading files.
-- Be cautious, as some spread malware disguised as MAS by changing the URL in the IRM command.
+- Be cautious of third parties spreading malware disguised as MAS by altering the URL in the PowerShell command.
:::
@@ -78,25 +87,25 @@ Open-source Windows and Office activator featuring HWID, Ohook, TSforge, and Onl ## MAS Latest Release
-Last Release - v3.9 (19-Nov-2025)
+Latest Release: v3.9 (19-Nov-2025)
[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/Microsoft-Activation-Scripts)
------------------------------------------------------------------------
## Features
-- **HWID (Digital License)** Method to Permanently Activate Windows
-- **Ohook** Method to Permanently Activate Office
-- **TSforge** Method to Permanently Activate Windows/ESU/Office
-- **Online KMS** Method to Activate Windows/Office For 180 Days (Lifetime With Renewal Task)
-- Advanced Activation Troubleshooting
-- $OEM$ Folders For Preactivation
-- Change Windows Edition
-- Change Office Edition
-- Check Windows/Office Activation Status
-- Available in All In One and Separate Files Versions
-- Fully Open Source and Based on Batch Scripts
-- Fewer Antivirus Detections
+- **HWID (Digital License):** Permanently activate Windows.
+- **Ohook:** Permanently activate Office.
+- **TSforge:** Permanently activate Windows, ESU, and Office.
+- **Online KMS:** Activate Windows/Office for 180 days (Lifetime with renewal task).
+- Advanced activation troubleshooting.
+- $OEM$ folders for pre-activation.
+- Change Windows edition.
+- Change Office edition.
+- Check Windows/Office activation status.
+- Available in All-In-One and separate file versions.
+- Fully open source and based on batch scripts.
+- Fewer antivirus detections.
------------------------------------------------------------------------
@@ -107,36 +116,33 @@ Last Release - v3.9 (19-Nov-2025) | HWID | Windows 10-11 | Permanent | Yes |
| Ohook | Office | Permanent | No |
| TSforge | Windows / ESU / Office | Permanent | Yes, needed on build 26100 and later |
-| Online KMS | Windows / Office | 180 Days. Lifetime With Renewal Task | Yes |
+| Online KMS | Windows / Office | 180 Days (Lifetime with renewal task) | Yes |
-For more details, use the respective activation details in Docs and [comparison chart](chart.md).
+For more details, see the respective pages in the documentation and the [comparison chart](chart.md).
To activate unsupported products such as **Office on Mac**, check [here](unsupported_products_activation.md).
------------------------------------------------------------------------
## Screenshots
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
------------------------------------------------------------------------
-Made with Love ❤️
-
-
-
+Made with Love ❤️
\ No newline at end of file |
