2.7 preview

This commit is contained in:
WindowsAddict 2024-09-06 04:35:13 +05:30
parent 9260b8e92c
commit 7fb86ce6a5
19 changed files with 597 additions and 266 deletions

View File

@ -0,0 +1,60 @@
# Change Office Edition
This option is available in the MAS script. You can use this for Office C2R (Ver 16.0.9029.2167 and later) to change, add and remove editions along with an option to change the Office update channel.
## How does it work?
Office C2R (Click To Run) installation files are unified, meaning that whether you install a single app like Word 2021 or a full package like ProPlus2021,
both will download almost the same size of files.
`C:\Program Files\Common Files\microsoft shared\ClickToRun\OfficeClickToRun.exe`
This program allows us to add and remove Office editions, and since installation files are unified and they are already installed, and it uses delta updates,
it can add new editions and apps to the Office with very minimum Internet consumption.
---
## Change Office update channel
The same script also offers an option to change the Office update channel.
```
5440FD1F-7ECB-4221-8110-145EFAA6372F - Insider Fast [Beta] - Insiders::DevMain
64256AFE-F5D9-4F86-8936-8840A6A4F5BE - Monthly Preview - Insiders::CC
492350F6-3A01-4F97-B9C0-C7C6DDF67D60 - Monthly [Current] - Production::CC
55336B82-A18D-4DD6-B5F6-9E5095C314A6 - Monthly Enterprise - Production::MEC
B8F9B850-328D-4355-9145-C59439A0C4CF - Semi Annual Preview - Insiders::FRDC
7FFBC6BF-BC32-4F92-8982-F9DD17FD3114 - Semi Annual - Production::DC
EA4A4090-DE26-49D7-93C1-91BFF9E53FC3 - DevMain Channel - Dogfood::DevMain
B61285DD-D9F7-41F2-9757-8F61CBA4E9C8 - Microsoft Elite - Microsoft::DevMain
F2E724C1-748F-4B47-8FB8-8E0D210E9208 - Perpetual2019 VL - Production::LTSC
1D2D2EA6-1680-4C56-AC58-A441C8C24FF9 - Microsoft2019 VL - Microsoft::LTSC
5030841D-C919-4594-8D2D-84AE4F96E58E - Perpetual2021 VL - Production::LTSC2021
86752282-5841-4120-AC80-DB03AE6B5FDB - Microsoft2021 VL - Microsoft::LTSC2021
7983BAC0-E531-40CF-BE00-FD24FE66619C - Perpetual2024 VL - Production::LTSC2024
C02D8FE6-5242-4DA8-972F-82EE55E00671 - Microsoft2024 VL - Microsoft::LTSC2024
```
- Learn more about Office update channels here https://learn.microsoft.com/microsoft-365-apps/updates/overview-update-channels
- You can fetch the latest Office build numbers here https://github.com/ItzLevvie/Office16/blob/master/defconfig
- The official method to change the update channel is taken from these URLs
https://techcommunity.microsoft.com/t5/office-365-blog/how-to-manage-office-365-proplus-channels-for-it-pros/ba-p/795813
- The script has the above list in the database and offers to choose only the Officially supported change path.
### VL (LTSC) channel limitations
(Applicable to 2019/21/24 VL)
Officially, the update channel can not be changed to/from the VL (LTSC) channel to/from any other channel.
So if the Office installation file or installed channel is from the VL (LTSC) channel, then only that channel will appear in the script
also if your update channel is not from the LTSC channel, then the script won't Offer you the option to change the channel to LTSC.
### Windows 7/8/8.1 limitations
Office C2R is officially not supported on Windows [7](https://learn.microsoft.com/microsoft-365-apps/end-of-support/windows-7-support) / [8](https://learn.microsoft.com/microsoft-365-apps/end-of-support/windows-8-support) / [8.1](https://learn.microsoft.com/microsoft-365-apps/end-of-support/windows-81-support) anymore.
The last available build is fixed on certain builds and won't get any updates. VL (LTSC) channels are not supported on these Windows versions so they won't appear in the script.
---
## Troubleshooting
- Check [here](troubleshoot.md).

View File

@ -4,8 +4,8 @@
- It can change the Windows 7-8-8.1-10-11 and their Server equivalent editions. - It can change the Windows 7-8-8.1-10-11 and their Server equivalent editions.
- The script incorporates 4 methods for edition changing: - The script incorporates 4 methods for edition changing:
- May's DISM Api Method - Used in Windows 10/11 Core to Non-Core edition change - May's DISM Api Method - Used in Windows 10/11 Core to Non-Core edition change
- [slmgr /ipk Method](https://learn.microsoft.com/en-us/windows/deployment/upgrade/windows-edition-upgrades#upgrade-using-a-command-line-tool) - Used in Windows 10/11 where edition license files are already there - [slmgr /ipk Method](https://learn.microsoft.com/windows/deployment/upgrade/windows-edition-upgrades#upgrade-using-a-command-line-tool) - Used in Windows 10/11 where edition license files are already there
- [DISM Method](https://learn.microsoft.com/en-us/windows-server/get-started/upgrade-conversion-options) - Used in Server 2016 and later server versions - [DISM Method](https://learn.microsoft.com/windows-server/get-started/upgrade-conversion-options) - Used in Server 2016 and later server versions
- [CBS Upgrade Method](https://github.com/asdcorp/Set-WindowsCbsEdition) - Used in Windows versions before 10 - [CBS Upgrade Method](https://github.com/asdcorp/Set-WindowsCbsEdition) - Used in Windows versions before 10
- Available editions that can be changed to are shown in the script based on all these 4 options. - Available editions that can be changed to are shown in the script based on all these 4 options.
- The script is future-proof, which means that it won't need an update upon the release of new Windows / Server editions and can get the required product key from the system itself. - The script is future-proof, which means that it won't need an update upon the release of new Windows / Server editions and can get the required product key from the system itself.
@ -33,7 +33,7 @@ If you want to manually change the edition instead of using the script, please f
### Windows Server 2016 and Later ### Windows Server 2016 and Later
- Follow the official Microsoft guide [here](https://learn.microsoft.com/en-us/windows-server/get-started/upgrade-conversion-options), you can get the required keys from [here](kms38.md#supported-products). - Follow the official Microsoft guide [here](https://learn.microsoft.com/windows-server/get-started/upgrade-conversion-options), you can get the required keys from [here](kms38.md#supported-products).
------------------------------------------------------------------------ ------------------------------------------------------------------------

View File

@ -1,25 +1,4 @@
# Check Activation Status # Check Activation Status
MAS includes 2 scripts for checking activation status in Windows and Office (WMI, VBS) which are taken from abbodi1406's [KMS_VL_ALL](https://github.com/abbodi1406/KMS_VL_ALL_AIO/). Check activation status script in MAS is taken from CAS by abbodi1406
Read below to see the differences between the 2 scripts. You can read more about its features here https://gravesoft.dev/cas
------------------------------------------------------------------------
## Check Activation Status [VBS]
- Queries and executes official licensing VBScripts: slmgr.vbs for Windows, ospp.vbs for Office.
- Shows the activation expiration date for Windows.
- Office 2010 ospp.vbs shows very little information.
------------------------------------------------------------------------
## Check Activation Status [WMI]
- Queries and executes WMI functions using wmic.exe or VBScripts.
- Shows extra information (SKU ID, key channel).
- Shows the activation expiration date for all products.
- Shows more detailed information for Office 2010.
- Can show the status of Office UWP apps.
- Implement vNextDiag.ps1 functions to **detect new Office 365 vNext licenses and subscriptions**.
------------------------------------------------------------------------

View File

@ -5,40 +5,40 @@
- You can use the below switches in MAS AIO, separate files version and in Powershell one-liner to run in unattended mode. - You can use the below switches in MAS AIO, separate files version and in Powershell one-liner to run in unattended mode.
- If you want to use it in Windows Pre-Activation then check [this](oem-folder.md) page for more details. - If you want to use it in Windows Pre-Activation then check [this](oem-folder.md) page for more details.
| Switches | Meaning | | Switches | Meaning |
|------------------------|-----------------------------------------------| |-------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `/HWID` | Activate with HWID | | `/HWID` | Activate with HWID |
| `/HWID-NoEditionChange` | Some editions don't support HWID, script by default change edition to nearest available to enable HWID activation. This switch can be used to stop this change. You don't need to add `/HWID` switch with this. | | `/HWID-NoEditionChange` | Some editions don't support HWID, script by default change edition to nearest available to enable HWID activation. This switch can be used to stop this change. You don't need to add `/HWID` switch with this. |
| | | | | |
| `/Ohook` | Install Ohook to activate Office | | `/Ohook` | Install Ohook to activate Office |
| `/Ohook-Uninstall` | Uninstall Ohook | | `/Ohook-Uninstall` | Uninstall Ohook |
| | | | | |
| `/KMS38` | Activate with KMS38 | | `/KMS38` | Activate with KMS38 |
| `/KMS38-RemoveProtection` | Remove KMS38 protection | | `/KMS38-RemoveProtection` | Remove KMS38 protection |
| `/KMS38-NoEditionChange` | Some editions don't support KMS38, script by default change edition to nearest available to enable KMS38 activation. This switch can be used to stop this change. You don't need to add `/KMS38` switch with this. | | `/KMS38-NoEditionChange` | Some editions don't support KMS38, script by default change edition to nearest available to enable KMS38 activation. This switch can be used to stop this change. You don't need to add `/KMS38` switch with this. |
| | | | | |
| `/KMS-Windows` | Activate Windows with Online KMS | | `/K-Windows` | Activate only Windows with Online KMS |
| `/KMS-Office` | Activate Office with Online KMS | | `/K-Office` | Activate only Office with Online KMS |
| `/KMS-WindowsOffice` | Activate Windows & Office with Online KMS | | `/K-ProjectVisio` | Activate only Project/Visio with Online KMS |
| `/KMS-RenewalTask` | Install Online KMS renewal task | | `/K-WindowsOffice` | Activate all Windows and Office with Online KMS |
| `/KMS-ActAndRenewalTask` | Install Online KMS activation & renewal tasks (Recommended) | | `/K-NoEditionChange` | Some editions don't support KMS, script by default change edition to nearest available to enable KMS activation. This switch can be used to stop this change. |
| `/KMS-Uninstall` | Uninstall Online KMS | | `/K-NoRenewalTask` | Whenever you run any activation, the script installs the auto-renewal task by default. To NOT auto-install renewal task with activation, use this switch. |
| `/KMS-KeepvNext` | Don't override Office C2R vNext license | | `/K-Uninstall` | Uninstall Online KMS including renewal tasks |
| `/KMS-Debug` | Create Debug log in Online KMS Activation | | `/K-Server-YOURKMSSERVERNAME` | To specify a server address for activation, where YOURKMSSERVERNAME needs to be edited for server name |
| `/KMS-Logger` | Create simple log in Online KMS Activation | | `/K-Port-YOURPORTNAME` | To specify a port for activation, where YOURPORTNAME needs to be edited for port address |
| | | | | |
| `/S` | Run operations in silent mode (no output) | | `/S` | Run operations in silent mode (no output) |
------------------------------------------------------------------------ ------------------------------------------------------------------------
## Uses In Powershell One Liner ## Uses In Powershell One Liner
`& ([ScriptBlock]::Create((irm https://get.acti vated.win))) /para` `& ([ScriptBlock]::Create((irm https://get.activated.win))) /para`
**Notes** - Remove the space between `acti vated` - Replace `/para` in this command with the switches from the above table. You can also use multiple switches. For example, `/HWID /Ohook`
- Replace `/para` in this command with the switches from the above table. You can also use multiple switches. For example, `/HWID /KMS-Office /KMS-ActAndRenewalTask`
- This Powershell one-liner will work on Windows 8.1 and later versions only. - This Powershell one-liner will work on Windows 8.1 and later versions only.
- Make sure to use the below command beforehand to enable TLs1.2 on older Windows versions.
`[Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::Tls12`
- To change the edition through the command line, check [here](change_edition.md#manual-edition-change). We didn't automate it in MAS because it requires a reboot in some cases. - To change the edition through the command line, check [here](change_edition.md#manual-edition-change). We didn't automate it in MAS because it requires a reboot in some cases.
------------------------------------------------------------------------ ------------------------------------------------------------------------

View File

@ -5,8 +5,8 @@ Please feel free to share feedback regarding bug reports, documentation errors,
- [Discord](https://discord.gg/tVFN4N84PP) ❤️ (signup not required) - Discussion - [Discord](https://discord.gg/tVFN4N84PP) ❤️ (signup not required) - Discussion
- [Reddit](https://www.reddit.com/r/MAS_Activator/) - [Reddit](https://www.reddit.com/r/MAS_Activator/)
- [Twitter](https://twitter.com/massgravel) - [Twitter](https://twitter.com/massgravel)
- [GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts) / [Bitbucket](https://bitbucket.org/WindowsAddict/microsoft-activation-scripts) - [GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts) / [Bitbucket](https://bitbucket.org/WindowsAddict/microsoft-activation-scripts) / [Codeberg](https://codeberg.org/massgravel/Microsoft-Activation-Scripts)
- Email: windowsaddict@protonmail.com - Email: mas.help@outlook.com
- [Nsaneforums](https://nsaneforums.com/topic/316668--) - [Nsaneforums](https://nsaneforums.com/topic/316668--)
------------------------------------------------------------------------ ------------------------------------------------------------------------

View File

@ -83,10 +83,11 @@ Now a question, can Microsoft block the new requests or revoke already establish
:::info :::info
- Systems in all architectures (x86, x64 and arm64) are supported. - Systems in all architectures (x86, x64 and arm64) are supported.
- Any Evaluation version of Windows (i.e. 'EVAL' LTSB/C) cannot be activated. - Any Evaluation version of Windows (i.e. 'EVAL' LTSB/C) [cannot be activated](evaluation_editions.md).
- IoTEnterpriseS (LTSC) 2021 key will be used to activate the unsupported EnterpriseS (LTSC) 2021 edition. - IoTEnterpriseS (LTSC) 2021 key will be used to activate the unsupported EnterpriseS (LTSC) 2021 edition.
- IoTEnterpriseS (LTSC) 2024 key will be used to activate the unsupported EnterpriseS (LTSC) 2024 edition.
- Windows Server does not support HWID activation. - Windows Server does not support HWID activation.
- ServerRdsh edition [officially](https://learn.microsoft.com/en-us/azure/virtual-desktop/windows-10-multisession-faq) does not support activation on non-azure systems. - Enterprise multi-session (ServerRdsh) edition can be activated with only a key NJCF7-PW8QT-3324D-688JX-2YV66, but it does not support real digital license activation.
::: :::

View File

@ -6,49 +6,71 @@ sidebar_label: Intro
# Microsoft Activation Scripts (MAS) # Microsoft Activation Scripts (MAS)
A Windows and Office activator using HWID / Ohook / KMS38 / Online KMS activation methods, with a focus on open-source code and fewer antivirus detections. Open-source Windows and Office activator featuring HWID, Ohook, KMS38, and Online KMS activation methods, along with advanced troubleshooting.
--- ---
## Download / How to use it? ## Download / How to use it?
### Method 1 - PowerShell (Recommended)
- Open Powershell (Not CMD). To do that, right-click on the start menu and select PowerShell or Terminal. import Tabs from '@theme/Tabs';
- Copy and paste the code below and press enter import TabItem from '@theme/TabItem';
<Tabs>
<TabItem value="Method 1" label="Method 1 - PowerShell (Windows 8 and later) ❤️" default>
1. Open PowerShell (Not CMD). To do that, right-click on the Windows start menu and select PowerShell or Terminal.
2. Copy and paste the code below and press enter
``` ```
irm https://get.activated.win | iex irm https://get.activated.win | iex
``` ```
or (deprecated, will be retired on Dec 31 2024, use above instead)
<details>
<summary>More options</summary>
- Alternatively, you can use the following (It will be retired Dec 31, 2024)
``` ```
irm https://massgrave.dev/get | iex irm https://massgrave.dev/get | iex
``` ```
- You will see the activation options. Choose [1] HWID for Windows activation. Choose [2] Ohook for Office activation. - On older Windows builds (17134 and before) you will need to run the below command before following the above steps,
- That's all ```
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
```
- The URL `get.activated.win` might be blocked by some DNS services because it is a new domain.
--- </details>
- On older Windows builds you may need to run the below command before, 3. You will see the activation options. Choose [1] HWID for Windows activation. Choose [2] Ohook for Office activation.
`[Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::Tls12` 4. That's all
- The Powershell method does not work on Windows 7. Use the Method 2 - Traditional instead.
- The URL get.activated.win may be blocked by some DNS services because it is a new domain.
### Method 2 - Traditional </TabItem>
<TabItem value="Method 2" label="Method 2 - Traditional (Windows 7 and later)" default>
- Download the file under the code button from [GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts) or [Bitbucket](https://bitbucket.org/WindowsAddict/microsoft-activation-scripts) - Download the file under the code button from [GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts) or [Bitbucket](https://bitbucket.org/WindowsAddict/microsoft-activation-scripts)
- Right-click on the downloaded zip file and extract - Right-click on the downloaded zip file and extract
- In the extracted folder, find the folder named `All-In-One-Version` - In the extracted folder, find the folder named `All-In-One-Version`
- Run the file named `MAS_AIO-CRC32_XXXXXXXX.cmd` - Run the file named `MAS_AIO.cmd`
- You will see the activation options, follow the on-screen instructions. - You will see the activation options, follow the on-screen instructions.
- That's all. - That's all.
To run the scripts in unattended mode, check [here](command_line_switches.md) </TabItem>
</Tabs>
---
:::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.
:::
------------------------------------------------------------------------ ------------------------------------------------------------------------
## MAS Latest Release ## MAS Latest Release
Last Release - v2.6 (20-Apr-2024) Last Release - v2.7 (5-Sep-2024)
[GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts) / [Bitbucket](https://bitbucket.org/WindowsAddict/microsoft-activation-scripts) [GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts) / [Bitbucket](https://bitbucket.org/WindowsAddict/microsoft-activation-scripts) / [Codeberg](https://codeberg.org/massgravel/Microsoft-Activation-Scripts)
------------------------------------------------------------------------ ------------------------------------------------------------------------
@ -61,6 +83,7 @@ Last Release - v2.6 (20-Apr-2024)
- Advanced Activation Troubleshooting - Advanced Activation Troubleshooting
- $OEM$ Folders For Preactivation - $OEM$ Folders For Preactivation
- Change Windows Edition - Change Windows Edition
- Change Office Edition
- Check Windows/Office Activation Status - Check Windows/Office Activation Status
- Available in All In One and Separate Files Versions - Available in All In One and Separate Files Versions
- Fully Open Source and Based on Batch Scripts - Fully Open Source and Based on Batch Scripts
@ -92,6 +115,14 @@ To activate unsupported products such as **Office on Mac**, check [here](unsuppo
![](/img/MAS_Troubleshoot.png) ![](/img/MAS_Troubleshoot.png)
![](/img/MAS_change_windows_edition.png)
![](/img/MAS_change_office_edition_1.png)
![](/img/MAS_change_office_edition_2.png)
![](/img/MAS_change_office_edition_3.png)
------------------------------------------------------------------------ ------------------------------------------------------------------------
Made with Love ❤️ Made with Love ❤️

View File

@ -34,86 +34,105 @@
## Supported Products ## Supported Products
### Windows 10 / 11 ### Windows 10 / 11
| Windows 10/11 Product Names | EditionID | Generic Volume License Key | | Product Names | EditionID | Generic Volume License Key |
|-------------------------------------------------|--------------------------|-------------------------------| |--------------------------------------------------------|--------------------------|-------------------------------|
| Education | Education | NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 | | Education | Education | NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 |
| Education N | EducationN | 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ | | Education N | EducationN | 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ |
| Enterprise | Enterprise | NPPR9-FWDCX-D2C8J-H872K-2YT43 | | Enterprise | Enterprise | NPPR9-FWDCX-D2C8J-H872K-2YT43 |
| Enterprise N | EnterpriseN | DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 | | Enterprise N | EnterpriseN | DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 |
| Enterprise G | EnterpriseG | YYVX9-NTFWV-6MDM3-9PT4T-4M68B | | Enterprise G | EnterpriseG | YYVX9-NTFWV-6MDM3-9PT4T-4M68B |
| Enterprise G N | EnterpriseGN | 44RPN-FTY23-9VTTB-MP9BX-T84FV | | Enterprise G N | EnterpriseGN | 44RPN-FTY23-9VTTB-MP9BX-T84FV |
| Enterprise LTSB 2016 | EnterpriseS | DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ | | Enterprise LTSB 2016 | EnterpriseS | DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ |
| Enterprise LTSC 2019 | EnterpriseS | M7XTQ-FN8P6-TTKYV-9D4CC-J462D | | Enterprise LTSC 2019 | EnterpriseS | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |
| Enterprise LTSC 2021 | EnterpriseS | M7XTQ-FN8P6-TTKYV-9D4CC-J462D | | Enterprise LTSC 2021 | EnterpriseS | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |
| Enterprise LTSC 2024 | EnterpriseS | M7XTQ-FN8P6-TTKYV-9D4CC-J462D | | Enterprise LTSC 2024 | EnterpriseS | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |
| Enterprise N LTSB 2016 | EnterpriseSN | QFFDN-GRT3P-VKWWX-X7T3R-8B639 | | Enterprise N LTSB 2016 | EnterpriseSN | QFFDN-GRT3P-VKWWX-X7T3R-8B639 |
| Enterprise N LTSC 2019 | EnterpriseSN | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H | | Enterprise N LTSC 2019 | EnterpriseSN | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |
| Enterprise N LTSC 2021 | EnterpriseSN | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H | | Enterprise N LTSC 2021 | EnterpriseSN | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |
| Enterprise N LTSC 2024 | EnterpriseSN | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H | | Enterprise N LTSC 2024 | EnterpriseSN | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |
| IoT Enterprise LTSC 2021 (19044.2788 and later) | IoTEnterpriseS | KBN8V-HFGQ4-MGXVD-347P6-PDQGT | | IoT Enterprise LTSC 2021 <br /> (19044.2788 and later) | IoTEnterpriseS | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |
| IoT Enterprise LTSC 2024 | IoTEnterpriseS | KBN8V-HFGQ4-MGXVD-347P6-PDQGT | | IoT Enterprise LTSC 2024 | IoTEnterpriseS | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |
| Home | Core | TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 | | Home | Core | TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 |
| Home N | CoreN | 3KHY7-WNT83-DGQKR-F7HPR-844BM | | Home N | CoreN | 3KHY7-WNT83-DGQKR-F7HPR-844BM |
| Home China | CoreCountrySpecific | PVMJN-6DFY6-9CCP6-7BKTT-D3WVR | | Home China | CoreCountrySpecific | PVMJN-6DFY6-9CCP6-7BKTT-D3WVR |
| Home Single Language | CoreSingleLanguage | 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH | | Home Single Language | CoreSingleLanguage | 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH |
| Lean | CloudE | NBTWJ-3DR69-3C4V8-C26MC-GQ9M6 | | Lean | CloudE | NBTWJ-3DR69-3C4V8-C26MC-GQ9M6 |
| Pro | Professional | W269N-WFGWX-YVC9B-4J6C9-T83GX | | Enterprise multi-session <br /> (17763 and later) | ServerRdsh | CPWHC-NT2C7-VYW78-DHDB2-PG3GK |
| Pro N | ProfessionalN | MH37W-N47XK-V7XM9-C7227-GCQG9 | | Enterprise multi-session <br /> (17134 and before) | ServerRdsh | 7NBT4-WGBQX-MP4H7-QXFF8-YP3KX |
| Pro Education | ProfessionalEducation | 6TP4R-GNPTD-KYYHQ-7B7DP-J447Y | | Pro | Professional | W269N-WFGWX-YVC9B-4J6C9-T83GX |
| Pro Education N | ProfessionalEducationN | YVWGF-BXNMC-HTQYQ-CPQ99-66QFC | | Pro N | ProfessionalN | MH37W-N47XK-V7XM9-C7227-GCQG9 |
| Pro for Workstations | ProfessionalWorkstation | NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J | | Pro Education | ProfessionalEducation | 6TP4R-GNPTD-KYYHQ-7B7DP-J447Y |
| Pro N for Workstations | ProfessionalWorkstationN | 9FNHH-K3HBT-3W4TD-6383H-6XYWF | | Pro Education N | ProfessionalEducationN | YVWGF-BXNMC-HTQYQ-CPQ99-66QFC |
| SE | CloudEdition | 37D7F-N49CB-WQR8W-TBJ73-FM8RX | | Pro for Workstations | ProfessionalWorkstation | NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J |
| SE N | CloudEditionN | 6XN7V-PCBDC-BDBRH-8DQY7-G6R44 | | Pro N for Workstations | ProfessionalWorkstationN | 9FNHH-K3HBT-3W4TD-6383H-6XYWF |
| SE | CloudEdition | 37D7F-N49CB-WQR8W-TBJ73-FM8RX |
| SE N | CloudEditionN | 6XN7V-PCBDC-BDBRH-8DQY7-G6R44 |
### Windows Server (LTSC) ### Windows Server 2025 (LTSC)
| Windows Server (LTSC) | EditionID | Generic Volume License Key | | Product Names | EditionID | Generic Volume License Key |
|--------------------------------------|--------------------|-------------------------------| |--------------------------------------|------------------|-------------------------------|
| Windows Server 2025 Standard | ServerStandard | TVRH6-WHNXV-R9WG3-9XRFY-MY832 | | Windows Server 2025 Standard | ServerStandard | TVRH6-WHNXV-R9WG3-9XRFY-MY832 |
| Windows Server 2025 Datacenter | ServerDatacenter | D764K-2NDRG-47T6Q-P8T8W-YP6DF | | Windows Server 2025 Datacenter | ServerDatacenter | D764K-2NDRG-47T6Q-P8T8W-YP6DF |
| Windows Server 2025 Azure Core | ServerAzureCor | FCNV3-279Q9-BQB46-FTKXX-9HPRH | | Windows Server 2025 Azure Core | ServerAzureCor | FCNV3-279Q9-BQB46-FTKXX-9HPRH |
| Windows Server 2025 Azure Datacenter | ServerTurbine | XGN3F-F394H-FD2MY-PP6FD-8MCRC | | Windows Server 2025 Azure Datacenter | ServerTurbine | XGN3F-F394H-FD2MY-PP6FD-8MCRC |
| Windows Server 2022 Datacenter | ServerDatacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |
| Windows Server 2022 Standard | ServerStandard | VDYBN-27WPP-V4HQT-9VMD4-VMK7H |
| Windows Server 2022 Azure Core | ServerAzureCor | 6N379-GGTMK-23C6M-XVVTC-CKFRQ |
| Windows Server 2022 Azure Datacenter | ServerTurbine | NTBV8-9K7Q8-V27C6-M2BTV-KHMXV |
| Windows Server 2019 Datacenter | ServerDatacenter | WMDGN-G9PQG-XVVXX-R3X43-63DFG |
| Windows Server 2019 Standard | ServerStandard | N69G4-B89J2-4G8F4-WWYCC-J464C |
| Windows Server 2019 Essentials | ServerSolution | WVDHN-86M7X-466P6-VHXV7-YY726 |
| Windows Server 2019 Azure Core | ServerAzureCor | FDNH6-VW9RW-BXPJ7-4XTYG-239TB |
| Windows Server 2019 ARM64 | ServerARM64 | GRFBW-QNDC4-6QBHG-CCK3B-2PR88 |
| Windows Server 2016 ARM64 | ServerARM64 | K9FYF-G6NCK-73M32-XMVPY-F9DRR |
| Windows Server 2016 Datacenter | ServerDatacenter | CB7KF-BWN84-R7R2Y-793K2-8XDDG |
| Windows Server 2016 Standard | ServerStandard | WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY |
| Windows Server 2016 Essentials | ServerSolution | JCKRF-N37P4-C2D82-9YXRT-4M63B |
| Windows Server 2016 Cloud Storage | ServerCloudStorage | QN4C6-GBJD2-FB422-GHWJK-GJG2R |
| Windows Server 2016 Azure Core | ServerAzureCor | VP34G-4NPPG-79JTQ-864T4-R3MQX |
### Windows Server (Annual Channel) ### Windows Server 2022 (LTSC)
| Windows Server (Annual Channel) | EditionID | Generic Volume License Key | | Product Names | EditionID | Generic Volume License Key |
|----------------------------------|------------------|-------------------------------| |--------------------------------------|------------------|-------------------------------|
| Windows Server Datacenter (23H2) | ServerDatacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 | | Windows Server 2022 Datacenter | ServerDatacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |
| Windows Server 2022 Standard | ServerStandard | VDYBN-27WPP-V4HQT-9VMD4-VMK7H |
| Windows Server 2022 Azure Core | ServerAzureCor | 6N379-GGTMK-23C6M-XVVTC-CKFRQ |
| Windows Server 2022 Azure Datacenter | ServerTurbine | NTBV8-9K7Q8-V27C6-M2BTV-KHMXV |
### Windows Server (Semi-Annual Channel) ### Windows Server 2019 (LTSC)
| Windows Server (Semi-Annual Channel) | EditionID | Generic Volume License Key | | Product Names | EditionID | Generic Volume License Key |
|--------------------------------------|----------------------|-------------------------------| |--------------------------------|------------------|-------------------------------|
| **20H2, 2004, 1909, 1903, and 1809** | | | | Windows Server 2019 Datacenter | ServerDatacenter | WMDGN-G9PQG-XVVXX-R3X43-63DFG |
| Windows Server Datacenter | ServerDatacenterACor | 6NMRW-2C8FM-D24W7-TQWMY-CWH2D | | Windows Server 2019 Standard | ServerStandard | N69G4-B89J2-4G8F4-WWYCC-J464C |
| Windows Server Standard | ServerStandardACor | N2KJX-J94YW-TQVFB-DG9YT-724CC | | Windows Server 2019 Essentials | ServerSolution | WVDHN-86M7X-466P6-VHXV7-YY726 |
| **1803** | | | | Windows Server 2019 Azure Core | ServerAzureCor | FDNH6-VW9RW-BXPJ7-4XTYG-239TB |
| Windows Server Datacenter | ServerDatacenterACor | 2HXDN-KRXHB-GPYC7-YCKFJ-7FVDG | | Windows Server 2019 ARM64 | ServerARM64 | GRFBW-QNDC4-6QBHG-CCK3B-2PR88 |
| Windows Server Standard | ServerStandardACor | PTXN8-JFHJM-4WC78-MPCBR-9W4KR |
| **1709** | | | ### Windows Server 2016 (LTSC)
| Windows Server Datacenter | ServerDatacenterACor | 6Y6KB-N82V8-D8CQV-23MJW-BWTG6 | | Product Names | EditionID | Generic Volume License Key |
| Windows Server Standard | ServerStandardACor | DPCNP-XQFKJ-BJF7R-FRC8D-GF6G4 | |-----------------------------------|--------------------|-------------------------------|
| Windows Server 2016 ARM64 | ServerARM64 | K9FYF-G6NCK-73M32-XMVPY-F9DRR |
| Windows Server 2016 Datacenter | ServerDatacenter | CB7KF-BWN84-R7R2Y-793K2-8XDDG |
| Windows Server 2016 Standard | ServerStandard | WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY |
| Windows Server 2016 Essentials | ServerSolution | JCKRF-N37P4-C2D82-9YXRT-4M63B |
| Windows Server 2016 Cloud Storage | ServerCloudStorage | QN4C6-GBJD2-FB422-GHWJK-GJG2R |
| Windows Server 2016 Azure Core | ServerAzureCor | VP34G-4NPPG-79JTQ-864T4-R3MQX |
### Windows Server 23H2 (Annual Channel)
| Product Names | EditionID | Generic Volume License Key |
|---------------------------|------------------|-------------------------------|
| Windows Server Datacenter | ServerDatacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |
### Windows Server 20H2, 2004, 1909, 1903, and 1809 (Semi-Annual Channel)
| Product Names | EditionID | Generic Volume License Key |
|---------------------------|----------------------|-------------------------------|
| Windows Server Datacenter | ServerDatacenterACor | 6NMRW-2C8FM-D24W7-TQWMY-CWH2D |
| Windows Server Standard | ServerStandardACor | N2KJX-J94YW-TQVFB-DG9YT-724CC |
### Windows Server 1803 (Semi-Annual Channel)
| Product Names | EditionID | Generic Volume License Key |
|---------------------------|----------------------|-------------------------------|
| Windows Server Datacenter | ServerDatacenterACor | 2HXDN-KRXHB-GPYC7-YCKFJ-7FVDG |
| Windows Server Standard | ServerStandardACor | PTXN8-JFHJM-4WC78-MPCBR-9W4KR |
### Windows Server 1709 (Semi-Annual Channel)
| Product Names | EditionID | Generic Volume License Key |
|---------------------------|----------------------|-------------------------------|
| Windows Server Datacenter | ServerDatacenterACor | 6Y6KB-N82V8-D8CQV-23MJW-BWTG6 |
| Windows Server Standard | ServerStandardACor | DPCNP-XQFKJ-BJF7R-FRC8D-GF6G4 |
:::info :::info
- Systems in all architectures (x86, x64 and arm64) are supported. - Systems in all architectures (x86, x64 and arm64) are supported.
- Any Evaluation version of Windows (i.e. 'EVAL' LTSB/C) cannot be activated. - Any Evaluation version of Windows (i.e. 'EVAL' LTSB/C) [cannot be activated](evaluation_editions.md).
- KMS38 only supports Windows/server version 14393 (1607) and newer versions. - KMS38 only supports Windows/server version 14393 (1607) and newer versions.
- Initial release (19044.1288) of Iot LTSC 2021 doesn't support KMS license and it was added later in update 19044.2788. - Initial release (19044.1288) of Iot LTSC 2021 doesn't support KMS license and it was added later in update 19044.2788.
- ServerRdsh, Server Azure Datacenter editions [officially](https://learn.microsoft.com/en-us/azure/virtual-desktop/windows-10-multisession-faq) do not support activation on non-azure systems. - Server Azure Datacenter (ServerTurbine) edition does not support activation on non-azure systems.
::: :::

View File

@ -3,32 +3,27 @@
## Overview ## Overview
- How to use it? Please find the instructions [here](intro.md#download--how-to-use-it). - How to use it? Please find the instructions [here](intro.md#download--how-to-use-it).
- This Online KMS Activation script is a fork of abbodi1406's [KMS_VL_ALL](https://github.com/abbodi1406/KMS_VL_ALL_AIO/)
- This fork's purpose is to avoid having any KMS binary files and activate Windows / Office using only transparent batch script with online public KMS servers IP (Not hostname).
- This script requires Internet for activation.
- KMS activates Windows / Office for 180 Days. For Windows Core / ProWMC editions it is 30 / 45 Days. - KMS activates Windows / Office for 180 Days. For Windows Core / ProWMC editions it is 30 / 45 Days.
- This script can activate both Retail and Volume Windows installation. - This script can activate both Retail and Volume Windows installation.
- This script can activate C2R Retail and VL Office, but not 2010 / 2013 MSI Retail Office and UWP Office. - This script can activate C2R Retail and VL Office, but not 2010 / 2013 MSI Retail Office and UWP Office.
- This script skips the activation of any permanently / KMS38 activated product. - This script skips the activation if Windows is permanently / KMS38 activated.
- As mentioned, KMS activates only for a limited period and it's not permanent, read below on how to achieve lifetime activation. - As mentioned, KMS activates only for a limited period and it's not permanent, read below on how to achieve lifetime activation.
------------------------------------------------------------------------ ------------------------------------------------------------------------
## Activation Renewal ## Activation Renewal
- By design in the genuine [KMS](https://docs.microsoft.com/en-us/previous-versions/tn-archive/ee939272(v=technet.10)?redirectedfrom=MSDN#kms-overview) activation method, the system contacts the registered server every 7 days, and if contacted successfully it will automatically renew and reset the activation for the full period of 180 days again, starting from the day of successful contact. If the system cannot contact the server, it will be deactivated after 180 days and it will remain deactivated until contact can be restored. By design in the genuine [KMS](https://docs.microsoft.com/en-us/previous-versions/tn-archive/ee939272(v=technet.10)?redirectedfrom=MSDN#kms-overview) activation method, the system contacts the registered server every 7 days, and if contacted successfully it will automatically renew and reset the activation for the full period of 180 days again, starting from the day of successful contact. If the system cannot contact the server, it will be deactivated after 180 days and it will remain deactivated until contact can be restored.
- To get the lifetime activation, you need to do either one of the below two things,
1. **Manual Activation**
Run the online KMS activation whenever required.
2. **Activation Auto-Renewal**
You can install the auto-renewal in the script.
This method puts the following two files,
`C:\Program Files\Activation-Renewal\Activation_task.cmd`
`C:\Program Files\Activation-Renewal\Info.txt`
And creates a scheduled task `\Activation-Renewal` to run the script every 7 days. This task registers the working KMS server and triggers activation commands only for the installed Volume products. To get the lifetime activation, script by default creates auto renewal task.
The scheduled task runs only if the system is connected to the Internet. It creates the following two files,
`C:\Program Files\Activation-Renewal\Activation_task.cmd`
`C:\Program Files\Activation-Renewal\Info.txt`
And creates a scheduled task `\Activation-Renewal` to run the script every 7 days. This task registers the working KMS server and triggers activation commands only for the installed Volume products. The scheduled task runs only if the system is connected to the Internet.
If you don't want to install this renewal task, you can turn off the "Renewal Task With Activation" option in script menu.
------------------------------------------------------------------------ ------------------------------------------------------------------------
## Remarks ## Remarks
@ -46,61 +41,326 @@
## Supported Products ## Supported Products
**Volume-capable:** ### Windows 10 / 11
| Product Names | EditionID | Generic Volume License Key |
|--------------------------------------------------------|--------------------------|-------------------------------|
| Education | Education | NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 |
| Education N | EducationN | 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ |
| Enterprise | Enterprise | NPPR9-FWDCX-D2C8J-H872K-2YT43 |
| Enterprise N | EnterpriseN | DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 |
| Enterprise G | EnterpriseG | YYVX9-NTFWV-6MDM3-9PT4T-4M68B |
| Enterprise G N | EnterpriseGN | 44RPN-FTY23-9VTTB-MP9BX-T84FV |
| Enterprise LTSB 2016 | EnterpriseS | DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ |
| Enterprise LTSC 2019 | EnterpriseS | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |
| Enterprise LTSC 2021 | EnterpriseS | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |
| Enterprise LTSC 2024 | EnterpriseS | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |
| Enterprise N LTSB 2016 | EnterpriseSN | QFFDN-GRT3P-VKWWX-X7T3R-8B639 |
| Enterprise N LTSC 2019 | EnterpriseSN | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |
| Enterprise N LTSC 2021 | EnterpriseSN | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |
| Enterprise N LTSC 2024 | EnterpriseSN | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |
| IoT Enterprise LTSC 2021 <br /> (19044.2788 and later) | IoTEnterpriseS | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |
| IoT Enterprise LTSC 2024 | IoTEnterpriseS | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |
| Home | Core | TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 |
| Home N | CoreN | 3KHY7-WNT83-DGQKR-F7HPR-844BM |
| Home China | CoreCountrySpecific | PVMJN-6DFY6-9CCP6-7BKTT-D3WVR |
| Home Single Language | CoreSingleLanguage | 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH |
| Lean | CloudE | NBTWJ-3DR69-3C4V8-C26MC-GQ9M6 |
| Enterprise multi-session <br /> (17763 and later) | ServerRdsh | CPWHC-NT2C7-VYW78-DHDB2-PG3GK |
| Enterprise multi-session <br /> (17134 and before) | ServerRdsh | 7NBT4-WGBQX-MP4H7-QXFF8-YP3KX |
| Pro | Professional | W269N-WFGWX-YVC9B-4J6C9-T83GX |
| Pro N | ProfessionalN | MH37W-N47XK-V7XM9-C7227-GCQG9 |
| Pro Education | ProfessionalEducation | 6TP4R-GNPTD-KYYHQ-7B7DP-J447Y |
| Pro Education N | ProfessionalEducationN | YVWGF-BXNMC-HTQYQ-CPQ99-66QFC |
| Pro for Workstations | ProfessionalWorkstation | NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J |
| Pro N for Workstations | ProfessionalWorkstationN | 9FNHH-K3HBT-3W4TD-6383H-6XYWF |
| SE | CloudEdition | 37D7F-N49CB-WQR8W-TBJ73-FM8RX |
| SE N | CloudEditionN | 6XN7V-PCBDC-BDBRH-8DQY7-G6R44 |
- **Windows 11:** ### Windows Server 2025 (LTSC)
Enterprise, Enterprise LTSC, IoT Enterprise LTSC, Enterprise G, Enterprise multi-session, SE (CloudEdition), Education, Pro, Pro Workstation, Pro Education, Home, Home Single Language, Home China | Product Names | EditionID | Generic Volume License Key |
|--------------------------------------|------------------|-------------------------------|
| Windows Server 2025 Standard | ServerStandard | TVRH6-WHNXV-R9WG3-9XRFY-MY832 |
| Windows Server 2025 Datacenter | ServerDatacenter | D764K-2NDRG-47T6Q-P8T8W-YP6DF |
| Windows Server 2025 Azure Core | ServerAzureCor | FCNV3-279Q9-BQB46-FTKXX-9HPRH |
| Windows Server 2025 Azure Datacenter | ServerTurbine | XGN3F-F394H-FD2MY-PP6FD-8MCRC |
- **Windows 10:** ### Windows Server 2022 (LTSC)
Enterprise, Enterprise LTSC/LTSB, IoT Enterprise LTSC, Enterprise G, Enterprise multi-session, Education, Pro, Pro Workstation, Pro Education, Home, Home Single Language, Home China | Product Names | EditionID | Generic Volume License Key |
|--------------------------------------|------------------|-------------------------------|
| Windows Server 2022 Datacenter | ServerDatacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |
| Windows Server 2022 Standard | ServerStandard | VDYBN-27WPP-V4HQT-9VMD4-VMK7H |
| Windows Server 2022 Azure Core | ServerAzureCor | 6N379-GGTMK-23C6M-XVVTC-CKFRQ |
| Windows Server 2022 Azure Datacenter | ServerTurbine | NTBV8-9K7Q8-V27C6-M2BTV-KHMXV |
- **Windows 8.1:** ### Windows Server 2019 (LTSC)
Enterprise, Pro, Pro with Media Center, Core, Core Single Language, Core China, Pro for Students, Bing, Bing Single Language, Bing China, Embedded Industry Enterprise/Pro/Automotive | Product Names | EditionID | Generic Volume License Key |
|--------------------------------|------------------|-------------------------------|
| Windows Server 2019 Datacenter | ServerDatacenter | WMDGN-G9PQG-XVVXX-R3X43-63DFG |
| Windows Server 2019 Standard | ServerStandard | N69G4-B89J2-4G8F4-WWYCC-J464C |
| Windows Server 2019 Essentials | ServerSolution | WVDHN-86M7X-466P6-VHXV7-YY726 |
| Windows Server 2019 Azure Core | ServerAzureCor | FDNH6-VW9RW-BXPJ7-4XTYG-239TB |
| Windows Server 2019 ARM64 | ServerARM64 | GRFBW-QNDC4-6QBHG-CCK3B-2PR88 |
- **Windows 8:** ### Windows Server 2016 (LTSC)
Enterprise, Pro, Pro with Media Center, Core, Core Single Language, Core China, Embedded Industry Enterprise/Pro | Product Names | EditionID | Generic Volume License Key |
|-----------------------------------|--------------------|-------------------------------|
| Windows Server 2016 ARM64 | ServerARM64 | K9FYF-G6NCK-73M32-XMVPY-F9DRR |
| Windows Server 2016 Datacenter | ServerDatacenter | CB7KF-BWN84-R7R2Y-793K2-8XDDG |
| Windows Server 2016 Standard | ServerStandard | WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY |
| Windows Server 2016 Essentials | ServerSolution | JCKRF-N37P4-C2D82-9YXRT-4M63B |
| Windows Server 2016 Cloud Storage | ServerCloudStorage | QN4C6-GBJD2-FB422-GHWJK-GJG2R |
| Windows Server 2016 Azure Core | ServerAzureCor | VP34G-4NPPG-79JTQ-864T4-R3MQX |
- Windows 10/11 on **ARM64** is supported. Windows 8/8.1/10/11 **N editions** variants are also supported (e.g. Pro N) ### Windows Server 23H2 (Annual Channel)
| Product Names | EditionID | Generic Volume License Key |
|---------------------------|------------------|-------------------------------|
| Windows Server Datacenter | ServerDatacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |
- **Windows 7:** ### Windows Server 20H2, 2004, 1909, 1903, and 1809 (Semi-Annual Channel)
Enterprise /N/E, Professional /N/E, Embedded POSReady/ThinPC | Product Names | EditionID | Generic Volume License Key |
|---------------------------|----------------------|-------------------------------|
| Windows Server Datacenter | ServerDatacenterACor | 6NMRW-2C8FM-D24W7-TQWMY-CWH2D |
| Windows Server Standard | ServerStandardACor | N2KJX-J94YW-TQVFB-DG9YT-724CC |
- **Windows Server 2022/2019/2016:** ### Windows Server 1803 (Semi-Annual Channel)
LTSC editions (Standard, Datacenter, Essentials, Cloud Storage, Azure Core, Server ARM64), SAC editions (Standard ACor, Datacenter ACor, Azure Datacenter) | Product Names | EditionID | Generic Volume License Key |
|---------------------------|----------------------|-------------------------------|
| Windows Server Datacenter | ServerDatacenterACor | 2HXDN-KRXHB-GPYC7-YCKFJ-7FVDG |
| Windows Server Standard | ServerStandardACor | PTXN8-JFHJM-4WC78-MPCBR-9W4KR |
- **Windows Server 2012 R2:** ### Windows Server 1709 (Semi-Annual Channel)
Standard, Datacenter, Essentials, Cloud Storage | Product Names | EditionID | Generic Volume License Key |
|---------------------------|----------------------|-------------------------------|
| Windows Server Datacenter | ServerDatacenterACor | 6Y6KB-N82V8-D8CQV-23MJW-BWTG6 |
| Windows Server Standard | ServerStandardACor | DPCNP-XQFKJ-BJF7R-FRC8D-GF6G4 |
- **Windows Server 2012:** ### Windows 8.1
Standard, Datacenter, MultiPoint Standard, MultiPoint Premium | EditionID | Generic Volume License Key |
|------------------------------|-------------------------------|
| Enterprise | MHF9N-XY6XB-WVXMC-BTDCT-MKKG7 |
| EnterpriseN | TT4HM-HN7YT-62K67-RGRQJ-JFFXW |
| Professional | GCRJD-8NW9H-F2CDX-CCM8D-9D6T9 |
| ProfessionalN | HMCNV-VVBFX-7HMBH-CTY9B-B4FXY |
| EmbeddedIndustryA | VHXM3-NR6FT-RY6RT-CK882-KW2CJ |
| EmbeddedIndustry | NMMPB-38DD4-R2823-62W8D-VXKJB |
| EmbeddedIndustryE | FNFKF-PWTVT-9RC8H-32HB2-JB34X |
| CoreARM | XYTND-K6QKT-K2MRH-66RTM-43JKP |
| CoreN | 7B9N3-D94CG-YTVHR-QBPX3-RJP64 |
| CoreCountrySpecific | NCTT7-2RGK8-WMHRF-RY7YQ-JTXG3 |
| CoreSingleLanguage | BB6NG-PQ82V-VRDPW-8XVD2-V8P66 |
| Core | M9Q9P-WNJJT-6PXPY-DWX8H-6XWKK |
| ProfessionalWMC | 789NJ-TQK6T-6XTH8-J39CJ-J8D3P |
| CoreConnected | 3PY8R-QHNP9-W7XQD-G6DPH-3J2C9 |
| CoreConnectedN | Q6HTR-N24GM-PMJFP-69CD8-2GXKR |
| CoreConnectedSingleLanguage | KF37N-VDV38-GRRTV-XH8X6-6F3BB |
| CoreConnectedCountrySpecific | R962J-37N87-9VVK2-WJ74P-XTMHR |
| ProfessionalStudent | MX3RK-9HNGX-K3QKC-6PJ3F-W8D7B |
| ProfessionalStudentN | TNFGH-2R6PB-8XM3K-QYHX2-J4296 |
- **Windows Server 2008 R2:** ### Windows Server 2012 R2
Standard, Datacenter, Enterprise, MultiPoint, Web, HPC Cluster | EditionID | Generic Volume License Key |
|--------------------|-------------------------------|
| ServerStandard | D2N9P-3P6X9-2R39C-7RTCD-MDVJX |
| ServerDatacenter | W3GGN-FT8W3-Y4M27-J84CP-Q3VJ9 |
| ServerSolution | KNC87-3J2TX-XB4WP-VCPJV-M4FWM |
| ServerCloudStorage | 3NPTF-33KPT-GGBPR-YX76B-39KDD |
- **Office Volume 2010 / 2013 / 2016 / 2019 / 2021** ### Windows 8
| EditionID | Generic Volume License Key |
|---------------------|-------------------------------|
| Enterprise | 32JNW-9KQ84-P47T8-D8GGY-CWCK7 |
| EnterpriseN | JMNMF-RHW7P-DMY6X-RF3DR-X2BQT |
| Professional | NG4HW-VH26C-733KW-K6F98-J8CK4 |
| ProfessionalN | XCVCF-2NXM9-723PB-MHCB7-2RYQQ |
| EmbeddedIndustry | RYXVT-BNQG7-VD29F-DBMRY-HT73M |
| EmbeddedIndustryE | NKB3R-R2F8T-3XCDP-7Q2KW-XWYQ2 |
| CoreARM | DXHJF-N9KQX-MFPVR-GHGQK-Y7RKV |
| CoreN | 8N2M2-HWPGY-7PGT9-HGDD8-GVGGY |
| CoreCountrySpecific | 4K36P-JN4VD-GDC6V-KDT89-DYFKP |
| CoreSingleLanguage | 2WN2H-YGCQR-KFX6K-CD6TF-84YXQ |
| Core | BN3D2-R7TKB-3YPBD-8DRP2-27GG4 |
| ProfessionalWMC | GNBB8-YVD74-QJHX6-27H4K-8QHDG |
**Notes:** ### Windows Server 2012
| EditionID | Generic Volume License Key |
|--------------------------|-------------------------------|
| ServerStandard | XC9B7-NBPP2-83J2H-RHMBY-92BT4 |
| ServerDatacenter | 48HP8-DN98B-MYWDG-T2DCC-8W83P |
| ServerSolution | HTDQM-NBMMG-KGYDT-2DTKT-J2MPV |
| ServerMultiPointStandard | HM7DN-YVMH3-46JC3-XYTG7-CYQJJ |
| ServerMultiPointPremium | XNH6W-2V9GX-RGJ4K-Y8X6F-QGJ2G |
- X86-X64 and ARM64 architecture systems are supported. ### Windows 7
- Any Evaluation version of Windows (i.e. 'EVAL' LTSB/C) cannot be activated. | EditionID | Generic Volume License Key |
- ServerRdsh edition does not [officially](https://docs.microsoft.com/en-us/azure/virtual-desktop/windows-10-multisession-faq#can-i-run-windows-10-enterprise-multi-session-on-premises) support activation on non-azure systems. |-------------------|-------------------------------|
- Supported Windows products do not need volume conversion, only the GVLK (KMS key) is needed, which the script will install accordingly. | Enterprise | 33PXH-7Y6KF-2VJC9-XBBR8-HVTHH |
- KMS activation on Windows 7 has a limitation related to OEM Activation 2.0 and Windows marker. For more info, see [here](https://support.microsoft.com/en-us/help/942962) and [here](https://technet.microsoft.com/en-us/library/ff793426(v=ws.10).aspx#activation-of-windows-oem-computers). To verify the activation possibility before attempting, see [this](https://forums.mydigitallife.net/posts/1553139/). | EnterpriseN | YDRBP-3D83W-TY26F-D46B2-XCKRJ |
| Professional | FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4 |
| ProfessionalN | MRPKT-YTG23-K7D7T-X2JMM-QY7MG |
| Embedded_POSReady | YBYF6-BHCR3-JPKRB-CDW7B-F9BK4 |
| Embedded_Standard | XGY72-BRBBT-FF8MH-2GG8H-W7KCW |
| Embedded_ThinPC | 73KQT-CD9G6-K7TQG-66MRP-CQ22C |
| ProfessionalE | W82YF-2Q76Y-63HXB-FGJG9-GF7QX |
| EnterpriseE | C29WB-22CC8-VJ326-GHFJW-H9DH4 |
### Windows Server 2008 R2
| EditionID | Generic Volume License Key |
|------------------------|-------------------------------|
| ServerStandard | YC6KT-GKW9T-YTKYR-T4X34-R7VHC |
| ServerDatacenter | 74YFP-3QFB3-KQT8W-PMXWJ-7M648 |
| ServerEnterprise | 489J6-VHDMP-X63PK-3K798-CPX3Y |
| ServerDatacenterCore | 74YFP-3QFB3-KQT8W-PMXWJ-7M648 |
| ServerStandardCore | YC6KT-GKW9T-YTKYR-T4X34-R7VHC |
| ServerEnterpriseCore | 489J6-VHDMP-X63PK-3K798-CPX3Y |
| ServerEnterpriseIA64 | GT63C-RJFQ3-4GMB6-BRFB9-CB83V |
| ServerWeb | 6TPJF-RBVHG-WBW2R-86QPH-6RTM4 |
| ServerHPC | TT8MH-CG224-D3D7Q-498W2-9QCTX |
| ServerWebCore | 6TPJF-RBVHG-WBW2R-86QPH-6RTM4 |
| ServerEmbeddedSolution | 736RG-XDKJK-V34PF-BHK87-J6X3K |
### Office 2010
| EditionID | Generic Volume License Key |
|------------------|-------------------------------|
| AccessVL | V7Y44-9T38C-R2VJK-666HK-T7DDX |
| ExcelVL | H62QG-HXVKF-PP4HP-66KMR-CW9BM |
| GrooveVL | QYYW6-QP4CB-MBV6G-HYMCJ-4T3J4 |
| InfoPathVL | K96W8-67RPQ-62T9Y-J8FQJ-BT37T |
| MondoVL | YBJTT-JG6MD-V9Q7P-DBKXJ-38W9R |
| OneNoteVL | Q4Y4M-RHWJM-PY37F-MTKWH-D3XHX |
| OutlookVL | 7YDC2-CWM8M-RRTJC-8MDVC-X3DWQ |
| PowerPointVL | RC8FX-88JRY-3PF7C-X8P67-P4VTT |
| ProjectProVL | YGX6F-PGV49-PGW3J-9BTGG-VHKC6 |
| ProjectStdVL | 4HP3K-88W3F-W2K3D-6677X-F9PGB |
| ProPlusVL | VYBBJ-TRJPB-QFQRF-QFT4D-H3GVB |
| PublisherVL | BFK7F-9MYHM-V68C7-DRQ66-83YTP |
| SmallBusBasicsVL | D6QFG-VBYP2-XQHM7-J97RH-VVRCK |
| StandardVL | V7QKV-4XVVR-XYV4D-F7DFM-8R6BM |
| VisioSIVL | D9DWC-HPYVV-JGF4P-BTWQB-WX8BJ |
| WordVL | HVHB3-C6FV7-KQX9W-YQG79-CRY7T |
### Office 2013
| EditionID | Generic Volume License Key |
|------------------|-------------------------------|
| AccessVolume | NG2JY-H4JBT-HQXYP-78QH9-4JM2D |
| ExcelVolume | VGPNG-Y7HQW-9RHP7-TKPV3-BG7GB |
| GrooveVolume | H7R7V-WPNXQ-WCYYC-76BGV-VT7GH |
| InfoPathVolume | DKT8B-N7VXH-D963P-Q4PHY-F8894 |
| LyncVolume | 2MG3G-3BNTT-3MFW9-KDQW3-TCK7R |
| MondoRetail | CWH2Y-NPYJW-3C7HD-BJQWB-G28JJ |
| MondoVolume | 42QTK-RN8M7-J3C4G-BBGYM-88CYV |
| OneNoteVolume | TGN6P-8MMBC-37P2F-XHXXK-P34VW |
| OutlookVolume | QPN8Q-BJBTJ-334K3-93TGY-2PMBT |
| PowerPointVolume | 4NT99-8RJFH-Q2VDH-KYG2C-4RD4F |
| ProjectProVolume | FN8TT-7WMH6-2D4X9-M337T-2342K |
| ProjectStdVolume | 6NTH3-CW976-3G3Y2-JK3TX-8QHTT |
| ProPlusVolume | YC7DK-G2NP3-2QQC3-J6H88-GVGXT |
| PublisherVolume | PN2WF-29XG2-T9HJ7-JQPJR-FCXK4 |
| StandardVolume | KBKQT-2NMXY-JJWGP-M62JB-92CD4 |
| VisioProVolume | C2FG9-N6J68-H8BTJ-BW3QX-RM3B3 |
| VisioStdVolume | J484Y-4NKBF-W2HMG-DBMJC-PGWR7 |
| WordVolume | 6Q7VD-NX8JD-WJ2VH-88V73-4GBJ7 |
### Office 2016
| EditionID | Generic Volume License Key |
|------------------------|-------------------------------|
| AccessVolume | GNH9Y-D2J4T-FJHGG-QRVH7-QPFDW |
| ExcelVolume | 9C2PK-NWTVB-JMPW8-BFT28-7FTBF |
| MondoRetail | DMTCJ-KNRKX-26982-JYCKT-P7KB6 |
| MondoVolume | HFTND-W9MK4-8B7MJ-B6C4G-XQBR2 |
| OneNoteVolume | DR92N-9HTF2-97XKM-XW2WJ-XW3J6 |
| OutlookVolume | R69KK-NTPKF-7M3Q4-QYBHW-6MT9B |
| PowerPointVolume | J7MQP-HNJ4Y-WJ7YM-PFYGF-BY6C6 |
| ProjectProVolume | YG9NW-3K39V-2T3HJ-93F3Q-G83KT |
| ProjectProXVolume | WGT24-HCNMF-FQ7XH-6M8K7-DRTW9 |
| ProjectStdVolume | GNFHQ-F6YQM-KQDGJ-327XX-KQBVC |
| ProjectStdXVolume | D8NRQ-JTYM3-7J2DX-646CT-6836M |
| ProPlusVolume | XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99 |
| PublisherVolume | F47MM-N3XJP-TQXJ9-BP99D-8K837 |
| SkypeforBusinessVolume | 869NQ-FJ69K-466HW-QYCP2-DDBV6 |
| StandardVolume | JNRGM-WHDWX-FJJG3-K47QV-DRTFM |
| VisioProVolume | PD3PC-RHNGV-FXJ29-8JK7D-RJRJK |
| VisioProXVolume | 69WXN-MBYV6-22PQG-3WGHK-RM6XC |
| VisioStdVolume | 7WHWN-4T7MP-G96JF-G33KR-W8GF4 |
| VisioStdXVolume | NY48V-PPYYH-3F4PX-XJRKJ-W4423 |
| WordVolume | WXY84-JN2Q9-RBCCQ-3Q3J3-3PFJ6 |
### Office 2019
| EditionID | Generic Volume License Key |
|----------------------------|-------------------------------|
| Access2019Volume | 9N9PT-27V4Y-VJ2PD-YXFMF-YTFQT |
| Excel2019Volume | TMJWT-YYNMB-3BKTF-644FC-RVXBD |
| Outlook2019Volume | 7HD7K-N4PVK-BHBCQ-YWQRW-XW4VK |
| PowerPoint2019Volume | RRNCX-C64HY-W2MM7-MCH9G-TJHMQ |
| ProjectPro2019Volume | B4NPR-3FKK7-T2MBV-FRQ4W-PKD2B |
| ProjectStd2019Volume | C4F7P-NCP8C-6CQPT-MQHV9-JXD2M |
| ProPlus2019Volume | NMMKJ-6RK4F-KMJVX-8D9MJ-6MWKP |
| Publisher2019Volume | G2KWX-3NW6P-PY93R-JXK2T-C9Y9V |
| SkypeforBusiness2019Volume | NCJ33-JHBBY-HTK98-MYCV8-HMKHJ |
| Standard2019Volume | 6NWWJ-YQWMR-QKGCB-6TMB3-9D9HK |
| VisioPro2019Volume | 9BGNQ-K37YR-RQHF2-38RQ3-7VCBB |
| VisioStd2019Volume | 7TQNQ-K3YQQ-3PFH7-CCPPM-X4VQ2 |
| Word2019Volume | PBX3G-NWMT6-Q7XBW-PYJGG-WXD33 |
### Office 2021
| EditionID | Generic Volume License Key |
|----------------------------|-------------------------------|
| Access2021Volume | WM8YG-YNGDD-4JHDC-PG3F4-FC4T4 |
| Excel2021Volume | NWG3X-87C9K-TC7YY-BC2G7-G6RVC |
| Outlook2021Volume | C9FM6-3N72F-HFJXB-TM3V9-T86R9 |
| PowerPoint2021Volume | TY7XF-NFRBR-KJ44C-G83KF-GX27K |
| ProjectPro2021Volume | FTNWT-C6WBT-8HMGF-K9PRX-QV9H8 |
| ProjectStd2021Volume | J2JDC-NJCYY-9RGQ4-YXWMH-T3D4T |
| ProPlus2021Volume | FXYTK-NJJ8C-GB6DW-3DYQT-6F7TH |
| Publisher2021Volume | 2MW9D-N4BXM-9VBPG-Q7W6M-KFBGQ |
| SkypeforBusiness2021Volume | HWCXN-K3WBT-WJBKY-R8BD9-XK29P |
| Standard2021Volume | KDX7X-BNVR8-TXXGX-4Q7Y8-78VT3 |
| VisioPro2021Volume | KNH8D-FGHT4-T8RK3-CTDYJ-K2HT4 |
| VisioStd2021Volume | MJVNY-BYWPY-CWV6J-2RKRT-4M8QG |
| Word2021Volume | TN8H9-M34D3-Y64V9-TR72V-X79KV |
### Office 2024
| EditionID | Generic Volume License Key |
|------------------------------|--------------------------------------------------|
| ProPlus2024Volume-Preview | 2TDPW-NDQ7G-FMG99-DXQ7M-TX3T2 |
| ProjectPro2024Volume-Preview | D9GTG-NP7DV-T6JP3-B6B62-JB89R |
| VisioPro2024Volume-Preview | YW66X-NH62M-G6YFP-B7KCT-WXGKQ |
| Access2024Volume | 82FTR-NCHR7-W3944-MGRHM-JMCWD |
| Excel2024Volume | F4DYN-89BP2-WQTWJ-GR8YC-CKGJG |
| Outlook2024Volume | D2F8D-N3Q3B-J28PV-X27HD-RJWB9 |
| PowerPoint2024Volume | CW94N-K6GJH-9CTXY-MG2VC-FYCWP |
| ProjectPro2024Volume | NBBBB-BBBBB-BBBBB-BBBH4-GX3R4 <br /> (Generated) |
| ProjectStd2024Volume | PD3TT-NTHQQ-VC7CY-MFXK3-G87F8 |
| ProPlus2024Volume | NBBBB-BBBBB-BBBBB-BBBJD-VXRPM <br /> (Generated) |
| SkypeforBusiness2024Volume | 4NKHF-9HBQF-Q3B6C-7YV34-F64P3 |
| Standard2024Volume | V28N4-JG22K-W66P8-VTMGK-H6HGR |
| VisioPro2024Volume | NBBBB-BBBBB-BBBBB-BBBCW-6MX6T <br /> (Generated) |
| VisioStd2024Volume | JMMVY-XFNQC-KK4HK-9H7R3-WQQTV |
| Word2024Volume | MQ84N-7VYDM-FXV7C-6K7CC-VFW9J |
:::info
- Systems in all architectures (x86, x64 and arm64) are supported.
- Office C2R retail products are converted to thier corresponding Volume products to enable KMS activation.
- These editions are only KMS-activatable for *45* days at max: - These editions are only KMS-activatable for *45* days at max:
- Windows 10/11 Home edition variants - Windows 10/11 Home edition variants
- Windows 8.1 Core edition variants, Pro with Media Center, Pro for Students - Windows 8.1 Core edition variants, Pro with Media Center, Pro for Students
These editions are only KMS-activatable for *30* days at max: These editions are only KMS-activatable for *30* days at max:
- Windows 8 Core edition variants, Pro with Media Center - Windows 8 Core edition variants, Pro with Media Center
:::
------------------------------------------------------------------------ ------------------------------------------------------------------------
## Unsupported Products ## Unsupported Products
- Office MSI Retail 2010/2013, Office 2010 C2R Retail - Office MSI Retail 2010/2013, Office 2010 C2R Retail, Office UWP
- Office UWP (Windows 10/11 Apps) - Any Evaluation version of Windows (i.e. 'EVAL' LTSB/C) [cannot be activated](evaluation_editions.md).
- Windows editions that do not support KMS activation by design: Windows Evaluation Editions\ - Server Azure Datacenter (ServerTurbine) edition does not support activation on non-azure systems.
Windows 7 (Starter, HomeBasic, HomePremium, Ultimate)\ - KMS activation on Windows 7 has a limitation related to OEM Activation 2.0 and Windows marker. For more info, see [here](https://support.microsoft.com/en-us/help/942962) and [here](https://technet.microsoft.com/en-us/library/ff793426(v=ws.10).aspx#activation-of-windows-oem-computers).
Windows 10 (Cloud "S", IoTEnterprise, IoTEnterpriseS, ProfessionalSingleLanguage... etc)\ - Windows editions that do not support KMS activation by design:
Windows Evaluation Editions
Windows 7 (Starter, HomeBasic, HomePremium, Ultimate)
Windows 10 (Cloud "S", IoTEnterprise, ProfessionalSingleLanguage... etc)
Windows Server (Server Foundation, Storage Server, Home Server 2011... etc) Windows Server (Server Foundation, Storage Server, Home Server 2011... etc)
------------------------------------------------------------------------ ------------------------------------------------------------------------
@ -154,32 +414,13 @@ HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion\SoftwareProtection
Office Retail must be converted to Volume first before it can be activated with KMS. Office Retail must be converted to Volume first before it can be activated with KMS.
By default, this activation script will convert Office C2R Retail to Volume. By default, this activation script will convert Office C2R Retail to Volume.
- Supported Click-to-Run products: Office 365 (Microsoft 365 Apps), Office 2021 / 2019 / 2016, Office 2013 - Supported Click-to-Run products: Office 365 (Microsoft 365 Apps), Office 2024 / 2021 / 2019 / 2016, Office 2013
- Activated Office Retail or Subscription products will be skipped from conversion
- Office 365 itself does not have volume licenses, therefore it will be converted to Office Mondo licenses - Office 365 itself does not have volume licenses, therefore it will be converted to Office Mondo licenses
- Windows 10/11: Office 2016 products will be converted with corresponding Office 2019 licenses (if RTM detected)
- Windows 8.1: Office 2016/2019 products will be converted with corresponding Office 2021 licenses (if RTM detected)
- Office Professional suite will be converted with Office Professional Plus licenses - Office Professional suite will be converted with Office Professional Plus licenses
- Office HomeBusiness/HomeStudent suites will be converted with Office Standard licenses - Office HomeBusiness/HomeStudent suites will be converted with Office Standard licenses
- Office 2013 products follow the same logic, but handled separately - Office 2013 products follow the same logic
Alternatively, if the automatic conversion did not work, or if you prefer to use the standalone converter script: [Office-C2R-Retail2Volume](https://forums.mydigitallife.net/posts/1150042/) If you don't want the script to convert the Retail Office to Volume, you can turn off "Change Edition If Needed" option in the script.
------------------------------------------------------------------------
## Debug Mode
- With debug mode, we can get a log file with more details of the activation script process and it can be used to troubleshoot the activation issues.
- In the Online KMS option, you can enable `Debug Mode` by pressing 6. When the activation is run with Debug Mode enabled, it creates a log file that contains details of the activation process, this is useful to detect activation errors. You can send that log to us to check. Check troubleshoot heading.
------------------------------------------------------------------------
## Override Office vNext
- The script is set by default to override Office C2R vNext license (subscription or lifetime) or its residue.
- However, if you prefer to turn OFF this function from the menu, press 7 in keyboard to change the state to Override Office vNext [No] and then proceed to activate Office.
- You will need to turn off this option if you have O365 subscription and wants to use KMS for Project and Visio.
- If Office vNext license is detected, the option and state will be highlighted, to draw the user attention.
------------------------------------------------------------------------ ------------------------------------------------------------------------

View File

@ -8,6 +8,57 @@ In this page, those product activation methods are mentioned which are not suppo
------------------------------------------------------------------------ ------------------------------------------------------------------------
## Windows 7
- Download Windows 7 - [Link](windows_7_links.md)
- **Activation**
- MAS online KMS option supports Windows 7 Pro and Enterprise.
- To activate other Windows 7 editions in,
- Non-UEFI/GPT systems - Use Windows Loader [Official thread](https://forums.mydigitallife.net/forums/windows-loader.39/) | [Mirror](https://app.box.com/s/bnchc6hten44adunlcpz9ya9j0uucfs2)
- UEFI-GPT systems - [EzWindSLIC](https://github.com/Dir3ctr1x/EzWindSLIC)
**Note:** loader/slic activators sometimes may cause the system boot issue.
------------------------------------------------------------------------
## Windows Vista
- Download Windows Vista - [Link](windows_vista_links.md)
- **Activation**
- MAS doesn't support Windows Vista.
- Business and Enterprise Editions can be activated with KMS-VL-ALL by qewlpal [Official thread](https://forums.mydigitallife.net/threads/kms-vl-all-online-offline-kms-activator-for-microsoft-products.63471/) | [Mirror](https://app.box.com/s/q0nyib6bfylosvbbm5x8ztg87vy0kl8a) (Use 7.2RC2 version from the mirror link)
- To activate other Windows Vista editions in,
- Non-UEFI/GPT systems - Use Windows Loader [Official thread](https://forums.mydigitallife.net/forums/windows-loader.39/) | [Mirror](https://app.box.com/s/bnchc6hten44adunlcpz9ya9j0uucfs2)
- UEFI-GPT systems - [EzWindSLIC](https://github.com/Dir3ctr1x/EzWindSLIC)
**Note:** loader/slic activators sometimes may cause the system boot issue.
------------------------------------------------------------------------
## Windows XP Pro VL
- Download Windows XP Pro VL - [Link](windows_xp_links.md)
- 32-bit (x86) Windows XP Pro VL SP3 ISO Activation key - `XCYBK-2B3KV-G8T8F-WXJM7-WCTYT`
- 64-bit (x64) Windows XP Pro VL SP2 ISO Activation key - `VCFQD-V9FX9-46WVH-K3CD4-4J3JM`
------------------------------------------------------------------------
## Office 2010 VL on Windows XP / Vista
- Download Office 2010 VL - [Link](office_msi_links#office-2010-pro-plus)
- Activate with KMS-VL-ALL by qewlpal [Official thread](https://forums.mydigitallife.net/threads/kms-vl-all-online-offline-kms-activator-for-microsoft-products.63471/) | [Mirror](https://app.box.com/s/q0nyib6bfylosvbbm5x8ztg87vy0kl8a) (Use 7.2RC2 version from the mirror link)
**Note:** Online KMS option in MAS supports Office 2010 on Windows 7 and later versions.
------------------------------------------------------------------------
## Office 2007 Enterprise
- Download Office 2007 Enterprise - [Link](office_msi_links.md#office-2007-enterprise)
- Activation key - `BQDQB-KRRY9-43DBR-4P9J4-DH7D8`
------------------------------------------------------------------------
## HEVC Video Extensions ## HEVC Video Extensions
- It's a [paid Microsoft extension](https://apps.microsoft.com/detail/9nmzlz57r3t7) to play High Efficiency Video Coding (HEVC) videos in any video app on your Windows 10/11 device. - It's a [paid Microsoft extension](https://apps.microsoft.com/detail/9nmzlz57r3t7) to play High Efficiency Video Coding (HEVC) videos in any video app on your Windows 10/11 device.
@ -73,55 +124,4 @@ Activation Key - `BXH69-M62YX-QQD6R-3GPWX-8WMFY`
------------------------------------------------------------------------ ------------------------------------------------------------------------
## Windows 7
- Download Windows 7 - [Link](windows_7_links.md)
- **Activation**
- MAS online KMS option supports Windows 7 Pro and Enterprise.
- To activate other Windows 7 editions in,
- Non-UEFI/GPT systems - Use Windows Loader [Official thread](https://forums.mydigitallife.net/forums/windows-loader.39/) | [Mirror](https://app.box.com/s/bnchc6hten44adunlcpz9ya9j0uucfs2)
- UEFI-GPT systems - [EzWindSLIC](https://github.com/Dir3ctr1x/EzWindSLIC)
**Note:** loader/slic activators sometimes may cause the system boot issue.
------------------------------------------------------------------------
## Windows Vista
- Download Windows Vista - [Link](windows_vista_links.md)
- **Activation**
- MAS doesn't support Windows Vista.
- Business and Enterprise Editions can be activated with KMS-VL-ALL by qewlpal [Official thread](https://forums.mydigitallife.net/threads/kms-vl-all-online-offline-kms-activator-for-microsoft-products.63471/) | [Mirror](https://app.box.com/s/q0nyib6bfylosvbbm5x8ztg87vy0kl8a) (Use 7.2RC2 version from the mirror link)
- To activate other Windows Vista editions in,
- Non-UEFI/GPT systems - Use Windows Loader [Official thread](https://forums.mydigitallife.net/forums/windows-loader.39/) | [Mirror](https://app.box.com/s/bnchc6hten44adunlcpz9ya9j0uucfs2)
- UEFI-GPT systems - [EzWindSLIC](https://github.com/Dir3ctr1x/EzWindSLIC)
**Note:** loader/slic activators sometimes may cause the system boot issue.
------------------------------------------------------------------------
## Windows XP Pro VL
- Download Windows XP Pro VL - [Link](windows_xp_links.md)
- 32-bit (x86) Windows XP Pro VL SP3 ISO Activation key - `XCYBK-2B3KV-G8T8F-WXJM7-WCTYT`
- 64-bit (x64) Windows XP Pro VL SP2 ISO Activation key - `VCFQD-V9FX9-46WVH-K3CD4-4J3JM`
------------------------------------------------------------------------
## Office 2010 VL on Windows XP / Vista
- Download Office 2010 VL - [Link](office_msi_links#office-2010-pro-plus)
- Activate with KMS-VL-ALL by qewlpal [Official thread](https://forums.mydigitallife.net/threads/kms-vl-all-online-offline-kms-activator-for-microsoft-products.63471/) | [Mirror](https://app.box.com/s/q0nyib6bfylosvbbm5x8ztg87vy0kl8a) (Use 7.2RC2 version from the mirror link)
**Note:** Online KMS option in MAS supports Office 2010 on Windows 7 and later versions.
------------------------------------------------------------------------
## Office 2007 Enterprise
- Download Office 2007 Enterprise - [Link](office_msi_links.md#office-2007-enterprise)
- Activation key - `BQDQB-KRRY9-43DBR-4P9J4-DH7D8`
------------------------------------------------------------------------
- If you need help with some other Microsoft products, reach out to us [here](contactus.md). - If you need help with some other Microsoft products, reach out to us [here](contactus.md).

View File

@ -26,7 +26,7 @@ const sidebars = {
{ {
type: 'category', type: 'category',
label: 'Docs', label: 'Docs',
items: ['hwid','kms38','ohook','online_kms','command_line_switches','check_activation_status','oem-folder','change_edition'], items: ['hwid','kms38','ohook','online_kms','command_line_switches','check_activation_status','oem-folder','change_windows_edition','change_office_edition'],
}, },
'guide_links', 'guide_links',
'news', 'news',

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB