Compare commits

..

No commits in common. "a353813814d98a14c57b1848062015b116ec78bb" and "da0b2800d9c783e63af33a6178267ac2201adb2a" have entirely different histories.

3 changed files with 66 additions and 42 deletions

View File

@ -1,4 +1,4 @@
@::ab7249d77random13141b5922144806de5d43f @::sfh437frandom
@set masver=3.9 @set masver=3.9
@setlocal DisableDelayedExpansion @setlocal DisableDelayedExpansion
@echo off @echo off

View File

@ -1144,9 +1144,6 @@ f520e45e-7413-4a34-a497-d2765967d094_Client-ESU-Year1_-%w10EsuEditions%-%w10EsuE
1043add5-23b1-4afb-9a0f-64343c8f3f8d_Client-ESU-Year2_-%w10EsuEditions%-%w10EsuEditionsLaterAdded% 1043add5-23b1-4afb-9a0f-64343c8f3f8d_Client-ESU-Year2_-%w10EsuEditions%-%w10EsuEditionsLaterAdded%
83d49986-add3-41d7-ba33-87c7bfb5c0fb_Client-ESU-Year3_-%w10EsuEditions%-%w10EsuEditionsLaterAdded% 83d49986-add3-41d7-ba33-87c7bfb5c0fb_Client-ESU-Year3_-%w10EsuEditions%-%w10EsuEditionsLaterAdded%
0b533b5e-08b6-44f9-b885-c2de291ba456_Client-ESU-Year6[4-6y]_-%w10EsuEditions%-%w10EsuEditionsLaterAdded% 0b533b5e-08b6-44f9-b885-c2de291ba456_Client-ESU-Year6[4-6y]_-%w10EsuEditions%-%w10EsuEditionsLaterAdded%
REM WindowsServer2016
91bcac0a-d7d3-4d2b-bd0c-72fed675f01b_Server-ESU-Year3[1-3y]_-ServerDatacenter-ServerDatacenterCore-ServerDatacenterV-ServerDatacenterVCore-ServerStandard-ServerStandardCore-ServerStandardV-ServerStandardVCore-
4cd0ab30-73a4-4dde-972c-512f05be31df_Server-ESU-Year6[4-6y]_-ServerDatacenter-ServerDatacenterCore-ServerDatacenterV-ServerDatacenterVCore-ServerStandard-ServerStandardCore-ServerStandardV-ServerStandardVCore-
) do ( ) do (
for /f "tokens=1-3 delims=_" %%A in ("%%#") do ( for /f "tokens=1-3 delims=_" %%A in ("%%#") do (
echo "%allapps%" | find /i "%%A" %nul1% && ( echo "%allapps%" | find /i "%%A" %nul1% && (
@ -1202,7 +1199,7 @@ goto :ts_off
set esuavail= set esuavail=
if defined _vis if defined isServer set esuavail=1 if defined _vis if defined isServer set esuavail=1
if %winbuild% LEQ 7602 if not defined _vis if not defined isThinpc set esuavail=1 if %winbuild% LEQ 7602 if not defined _vis if not defined isThinpc set esuavail=1
if %winbuild% GTR 7602 if %winbuild% LEQ 14393 if defined isServer set esuavail=1 if %winbuild% GTR 7602 if %winbuild% LSS 10240 if defined isServer set esuavail=1
if %winbuild% GEQ 10240 if %winbuild% LEQ 19045 if not defined isServer set esuavail=1 if %winbuild% GEQ 10240 if %winbuild% LEQ 19045 if not defined isServer set esuavail=1
if %winbuild% EQU 9600 set esuavail=1 if %winbuild% EQU 9600 set esuavail=1

101
README.md
View File

@ -6,14 +6,15 @@
<hr> <hr>
## How to Activate Windows / Office / Extended Security Updates (ESU)? ## How to Activate Windows / Office / Extended Updates (ESU)?
### Method 1 - PowerShell ❤️ ### Method 1 - PowerShell ❤️
1. Click the **Start Menu**, type `PowerShell`, and open it. 1. **Open PowerShell**
Click the **Start Menu**, type `PowerShell`, then open it.
2. Copy and paste the code below and press **Enter.** 2. **Copy and paste the code below, then press enter.**
- For **Windows 8.1, 10 and 11**: - For **Windows 8, 10, 11**: 📌
``` ```
irm https://get.activated.win | iex irm https://get.activated.win | iex
``` ```
@ -21,64 +22,90 @@
``` ```
iex (curl.exe -s --doh-url https://1.1.1.1/dns-query https://get.activated.win | Out-String) iex (curl.exe -s --doh-url https://1.1.1.1/dns-query https://get.activated.win | Out-String)
``` ```
- **Script not launching? Use the below-listed Method 2.** - For **Windows 7** and later:
```
iex ((New-Object Net.WebClient).DownloadString('https://get.activated.win'))
```
- **Script not launching❓Use the below-listed Method 2.**
3. In the menu that appears, type the number corresponding to one of the **Green** options. 3. The activation menu will appear. **Choose the green-highlighted options** to activate Windows or Office.
4. **Done!**
--- ---
### Method 2 - Traditional (Windows Vista and later) ### Method 2 - Traditional (Windows Vista and later)
1. Download the script: 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).
* [**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) 2. Run the file named `MAS_AIO.cmd`.
* [**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) 3. You will see the activation options. Follow the on-screen instructions.
2. Run the `MAS_AIO.cmd` file. 4. That's all.
3. In the menu that appears, type the number corresponding to one of the **Green** options.
--- ---
> [!TIP] > [!TIP]
> - 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. > - 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**? Visit our [troubleshooting page](https://massgrave.dev/troubleshoot) or raise an issue on [GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts/issues). > - **Having trouble**❓Visit our [troubleshooting page](https://massgrave.dev/troubleshoot) or raise an issue on [GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts/issues).
> [!NOTE]
>
> - 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 of third parties spreading malware disguised as MAS by altering the URL in the PowerShell command.
--- ---
<div align="center"> - To activate additional products such as **Office for macOS, Visual Studio, RDS CALs, and Windows XP**, check [here](https://massgrave.dev/unsupported_products_activation).
- To run the scripts in unattended mode, check [here](https://massgrave.dev/command_line_switches).
---
> [!NOTE]
>
> - 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 if manually downloading files.
> - Be cautious, as some spread malware disguised as MAS by using different URLs in the IRM command.
---
```
Latest Version: 3.9
Release date: 19-Nov-2025
```
### [Troubleshooting / Help](https://massgrave.dev/troubleshoot)
### [Download Original Windows & Office](https://massgrave.dev/genuine-installation-media)
### Homepage - [https://massgrave.dev/](https://massgrave.dev/) ### Homepage - [https://massgrave.dev/](https://massgrave.dev/)
<div align="center">
[![1.1]][1] [![1.1]][1]
[![1.2]][2] [![1.2]][2]
[![1.3]][3] [![1.3]][3]
</div>
<div align="center">
[![1.4]][4] [![1.4]][4]
[![1.5]][5] [![1.5]][5]
[![1.6]][6] [![1.6]][6]
[![1.7]][7] [![1.7]][7]
[1.1]: https://massgrave.dev/img/logo_discord.png (Chat with us without signup) </div>
[1.2]: https://massgrave.dev/img/logo_reddit.png (Reddit)
[1.3]: https://massgrave.dev/img/logo_bluesky.png (Bluesky)
[1.4]: https://massgrave.dev/img/logo_x.png (Twitter)
[1.5]: https://massgrave.dev/img/logo_github.png (GitHub) [1.1]: https://massgrave.dev/img/logo_github.png (GitHub)
[1.6]: https://massgrave.dev/img/logo_azuredevops.png (AzureDevOps) [1.2]: https://massgrave.dev/img/logo_azuredevops.png (AzureDevOps)
[1.7]: https://massgrave.dev/img/logo_gitea.png (Self-hosted Git) [1.3]: https://massgrave.dev/img/logo_gitea.png (Self-hosted Git)
[1]: https://discord.gg/j2yFsV5ZVC [1.4]: https://massgrave.dev/img/logo_discord.png (Chat with us without signup)
[2]: https://www.reddit.com/r/MAS_Activator [1.5]: https://massgrave.dev/img/logo_reddit.png (Reddit)
[3]: https://bsky.app/profile/massgrave.dev [1.6]: https://massgrave.dev/img/logo_bluesky.png (Bluesky)
[4]: https://twitter.com/massgravel [1.7]: https://massgrave.dev/img/logo_x.png (Twitter)
[5]: https://github.com/massgravel/Microsoft-Activation-Scripts
[6]: https://dev.azure.com/massgrave/_git/Microsoft-Activation-Scripts [1]: https://github.com/massgravel/Microsoft-Activation-Scripts
[7]: https://git.activated.win/Microsoft-Activation-Scripts [2]: https://dev.azure.com/massgrave/_git/Microsoft-Activation-Scripts
[3]: https://git.activated.win/Microsoft-Activation-Scripts
[4]: https://discord.gg/j2yFsV5ZVC
[5]: https://www.reddit.com/r/MAS_Activator
[6]: https://bsky.app/profile/massgrave.dev
[7]: https://twitter.com/massgravel
--- ---
Latest Version: 3.9 <p align="center">Made with Love ❤️</p>
Release date: 19-Nov-2025