Rework manual activation sections for easier consumption (#33)
* add tickets to static * simplify manual hwid activation section and move it into it's own separate page, (from scratch section WIP) * remove decorative window * rename tickets * remove tickets from website * more table work * tabel * add links to table * add stub to hwid page * kms38 page, move guide pages to sidebar section * remove unnecessary whitespace * ohook work * more ohook work * add info box to kms38 page * revert guides list changes * edit info blobs * minor tweaks * minor tweaks again * add ticket generation section to hwid page * finish up with ticket gen section * unnecessary command in manual kms38 page * wonky structure fix * point to latest release instead * Fix double dot * minor changes * add manual activation to dropdown on top bar
This commit is contained in:
parent
f7a2daf0da
commit
b131a351df
59
docs/hwid.md
59
docs/hwid.md
@ -120,45 +120,21 @@ Now a question, can Microsoft block the new requests or revoke already establish
|
|||||||
|
|
||||||
## Manual Activation
|
## Manual Activation
|
||||||
|
|
||||||
This is for those who wants to perform manual activation. If you want a tool to do this for you, then check [here](intro.md#download--how-to-use-it).
|
- Check [here](manual_hwid_activation.md).
|
||||||
We can perform the manual activation process in 2 ways.
|
|
||||||
|
|
||||||
### 1- From Ready-Made Ticket
|
|
||||||
|
|
||||||
- Make sure the internet is enabled.
|
|
||||||
- Open Windows PowerShell as administrator, and enter the following commands in the sequence in which they are given.
|
|
||||||
- Enter the Key (Replace `<key>` with the key from the above list) with the following command:
|
|
||||||
`slmgr /ipk <key>`
|
|
||||||
- Download Universal tickets from [here](https://app.box.com/s/326odzt3lhkv77m15b17k6dzx6j24cvw) and extract the downloaded file.
|
|
||||||
- Now enter below code in PowerShell:
|
|
||||||
`(Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Control\ProductOptions).OSProductPfn`
|
|
||||||
- This command will you show you some text like `Microsoft.Windows.48.X19-98841_8wekyb3d8bbwe`
|
|
||||||
- You need to find the exact same name ticket file in the folder which you have extracted earlier.
|
|
||||||
- Copy that ticket file and paste it in the following folder:
|
|
||||||
`C:\ProgramData\Microsoft\Windows\ClipSVC\GenuineTicket`
|
|
||||||
- Now run below command in PowerShell to apply the ticket:
|
|
||||||
`clipup -v -o`
|
|
||||||
- Activate Windows with the following command:
|
|
||||||
`slmgr /ato`
|
|
||||||
- Check Activation Status with the following command:
|
|
||||||
`slmgr /xpr`
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
### 2- From Scratch
|
## Manual Ticket Generation
|
||||||
|
|
||||||
In this process, we will perform activation from scratch. This is based on the Universal ticket method. Here, we will create identical tickets that are used in the MAS HWID script and activate the system with them.
|
This guide is for manually creating the same kind of tickets that are used in the MAS script.
|
||||||
|
|
||||||
- Download the file from the official MS link and extract the .cab file.
|
- Download the .cab file from the following official Microsoft link:
|
||||||
https://download.microsoft.com/download/9/A/E/9AE69DD5-BA93-44E0-864E-180F5E700AB4/adk/Installers/14f4df8a2a7fc82a4f415cf6a341415d.cab
|
https://download.microsoft.com/download/9/A/E/9AE69DD5-BA93-44E0-864E-180F5E700AB4/adk/Installers/14f4df8a2a7fc82a4f415cf6a341415d.cab
|
||||||
- Find the file named `filf8377e82b29deadca67bc4858ed3fba9` (Size: 330 KB) and rename it to `gatherosstate.exe`
|
- Find the file named `filf8377e82b29deadca67bc4858ed3fba9` (Size: 330 KB) and rename it to `gatherosstate.exe`.
|
||||||
- Make a folder named `Files` in the C drive, `C:\Files` and copy the `gatherosstate.exe` file into that folder.
|
- Make a folder named `Files` in the root of the C: drive (`C:\Files`) and copy the `gatherosstate.exe` file to that folder.
|
||||||
- Make sure that the internet is enabled.
|
- Make sure you have a working internet connection.
|
||||||
- Open Windows PowerShell as administrator and enter the following commands in the sequence in which they are given.
|
- Open Windows PowerShell as Administrator and enter the following commands.
|
||||||
- Enter the key (Replace `<key>` with the key from the above list) with the following command:
|
- Copy the entire block of code below and enter it in PowerShell to patch the `gatherosstate.exe` file. The patches are based on [GamersOsState](https://github.com/asdcorp/GamersOsState).
|
||||||
`slmgr /ipk <key>`
|
|
||||||
- Copy the below code all at once and enter it in PowerShell to modify the `gatherosstate.exe` file. This code to modify the file is based on [GamersOsState](https://github.com/asdcorp/GamersOsState).
|
|
||||||
```
|
```
|
||||||
$bytes = [System.IO.File]::ReadAllBytes("C:\Files\gatherosstate.exe")
|
$bytes = [System.IO.File]::ReadAllBytes("C:\Files\gatherosstate.exe")
|
||||||
$bytes[320] = 0xf8
|
$bytes[320] = 0xf8
|
||||||
@ -229,28 +205,21 @@ $bytes[34376] = 0xeb
|
|||||||
$bytes[34377] = 0x63
|
$bytes[34377] = 0x63
|
||||||
[System.IO.File]::WriteAllBytes("C:\Files\gatherosstatemodified.exe", $bytes)
|
[System.IO.File]::WriteAllBytes("C:\Files\gatherosstatemodified.exe", $bytes)
|
||||||
```
|
```
|
||||||
- Now right click on the file `gatherosstatemodified.exe`, go to properties and set the compatibility mode to Windows XP SP3.
|
- Right click on the newly created file, `gatherosstatemodified.exe`, click the "Properties" option and set the Compatibility mode to Windows XP SP3.
|
||||||
- Now we need to generate the ticket, to do that, enter the below command:
|
- To generate the ticket using our modified `gatherosstate.exe`, run these commands:
|
||||||
```
|
```
|
||||||
$value = (Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Control\ProductOptions).OSProductPfn
|
$value = (Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Control\ProductOptions).OSProductPfn
|
||||||
|
|
||||||
C:\Files\gatherosstatemodified.exe /c Pfn=$value`;PKeyIID=465145217131314304264339481117862266242033457260311819664735280
|
C:\Files\gatherosstatemodified.exe /c Pfn=$value`;PKeyIID=465145217131314304264339481117862266242033457260311819664735280
|
||||||
```
|
```
|
||||||
- A GenuineTicket.xml file should be created in the folder `C:\Files\`. Now, let's apply it.
|
- A GenuineTicket.xml file should be created in the `C:\Files\` folder.
|
||||||
`clipup -v -o -altto C:\Files\`
|
|
||||||
- Activate Windows with the following command:
|
|
||||||
`slmgr /ato`
|
|
||||||
- Check Activation Status with the following command:
|
|
||||||
`slmgr /xpr`
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
**Notes:**
|
**Notes:**
|
||||||
|
|
||||||
- If the system is already activated then, then the created ticket will be a Lockbox ticket. If not, it will be a Downlevel ticket.
|
- There are two types of tickets: Lockbox and Downlevel. If the system is already activated, then the created ticket will be a Lockbox ticket. If not, it will be a Downlevel ticket.
|
||||||
- To make the exact ticket used in MAS HWID script, make sure system is already activated and fix the time with the below PowerShell command and then initiate the ticket generation process as per the steps mentioned above.\
|
- To make the exact ticket used by the MAS script for HWID activation, make sure the system is already activated and change the time with the below PowerShell command. Then, start the ticket generation process according to the steps above.\
|
||||||
`Set-TimeZone -Id "UTC"; $date=[datetime]"2022/10/11 12:00";while($true){set-date $date; start-sleep -milliseconds 10}`
|
`Set-TimeZone -Id "UTC"; $date=[datetime]"2022/10/11 12:00";while($true){set-date $date; start-sleep -milliseconds 10}`
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
|
||||||
|
|
||||||
## Setup Preactivate
|
## Setup Preactivate
|
||||||
|
|
||||||
|
@ -181,40 +181,22 @@
|
|||||||
|
|
||||||
## Manual Activation
|
## Manual Activation
|
||||||
|
|
||||||
This is for those who want to perform manual activation. If you want a tool to do this for you, then check [here](intro.md#download--how-to-use-it).
|
- Check [here](manual_kms38_activation.md)
|
||||||
We can perform the manual activation process in 2 ways.
|
|
||||||
|
|
||||||
### 1- From Ready-Made Ticket
|
|
||||||
|
|
||||||
- Open Windows PowerShell as administrator, and enter the following commands in the sequence in which they are given.
|
|
||||||
- Enter the key (Replace `<key>` with the key from the above list) with the following command:
|
|
||||||
`slmgr /ipk <key>`
|
|
||||||
- Download the Universal ticket from [here](https://app.box.com/s/326odzt3lhkv77m15b17k6dzx6j24cvw) and extract the downloaded file.
|
|
||||||
- Find a file named `KMS.xml` in the extracted folder.
|
|
||||||
- Copy that ticket file and paste it in the following folder:
|
|
||||||
`C:\ProgramData\Microsoft\Windows\ClipSVC\GenuineTicket`
|
|
||||||
- Now run the below command in PowerShell to apply the ticket:
|
|
||||||
`clipup -v -o`
|
|
||||||
- Check the Activation Status with the following command:
|
|
||||||
`slmgr /xpr`
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
### 2- From Scratch
|
## Manual Ticket Generation
|
||||||
|
|
||||||
In this process, we will perform activation from scratch. This is based on the Universal ticket method. Here, we will create identical tickets that are used in the MAS HWID script and activate the system with them.
|
This guide is for manually creating the same kind of tickets that are used in the MAS script.
|
||||||
|
|
||||||
- Download the file from the official MS link and extract the .cab file.
|
- Download the .cab file from the following official Microsoft link:
|
||||||
https://download.microsoft.com/download/9/A/E/9AE69DD5-BA93-44E0-864E-180F5E700AB4/adk/Installers/14f4df8a2a7fc82a4f415cf6a341415d.cab
|
https://download.microsoft.com/download/9/A/E/9AE69DD5-BA93-44E0-864E-180F5E700AB4/adk/Installers/14f4df8a2a7fc82a4f415cf6a341415d.cab
|
||||||
- Find the file named `filf8377e82b29deadca67bc4858ed3fba9` (Size: 330 KB) and rename it as `gatherosstate.exe`
|
- Find the file named `filf8377e82b29deadca67bc4858ed3fba9` (Size: 330 KB) and rename it to `gatherosstate.exe`.
|
||||||
- Make a folder named `Files` in C drive, `C:\Files` and copy the `gatherosstate.exe` file in that folder.
|
- Make a folder named `Files` in the root of the C: drive (`C:\Files`) and copy the `gatherosstate.exe` file to that folder.
|
||||||
- Open Windows PowerShell as administrator and enter the following commands in the sequence in which they are given.
|
- Make sure you have a working internet connection.
|
||||||
- Enter the key (Replace `<key>` with the key from the above list) with the following command:
|
- Open Windows PowerShell as Administrator and enter the following commands.
|
||||||
`slmgr /ipk <key>`
|
- Copy the entire block of code below and enter it in PowerShell to patch the `gatherosstate.exe` file. The patches are based on [GamersOsState](https://github.com/asdcorp/GamersOsState).
|
||||||
- Copy the below code all at once and enter in PowerShell to modify the `gatherosstate.exe` file.
|
```
|
||||||
This code to modify the file is based on [GamersOsState](https://github.com/asdcorp/GamersOsState).
|
|
||||||
```
|
|
||||||
$bytes = [System.IO.File]::ReadAllBytes("C:\Files\gatherosstate.exe")
|
$bytes = [System.IO.File]::ReadAllBytes("C:\Files\gatherosstate.exe")
|
||||||
$bytes[320] = 0xf8
|
$bytes[320] = 0xf8
|
||||||
$bytes[321] = 0xfb
|
$bytes[321] = 0xfb
|
||||||
@ -284,29 +266,18 @@ $bytes[34376] = 0xeb
|
|||||||
$bytes[34377] = 0x63
|
$bytes[34377] = 0x63
|
||||||
[System.IO.File]::WriteAllBytes("C:\Files\gatherosstatemodified.exe", $bytes)
|
[System.IO.File]::WriteAllBytes("C:\Files\gatherosstatemodified.exe", $bytes)
|
||||||
```
|
```
|
||||||
|
- Right click on the newly created file, `gatherosstatemodified.exe`, click the "Properties" option and set the Compatibility mode to Windows XP SP3.
|
||||||
- Now right click on the file `gatherosstatemodified.exe`, go to properties and set the compatibility mode to Windows XP SP3.
|
- To generate the ticket using our modified `gatherosstate.exe`, run these commands:
|
||||||
- Now we need to generate the ticket, to do that, enter the below command:
|
|
||||||
```
|
```
|
||||||
C:\Files\gatherosstatemodified.exe /c GVLKExp=2038-01-19T03:14:07Z`;DownlevelGenuineState=1
|
C:\Files\gatherosstatemodified.exe /c GVLKExp=2038-01-19T03:14:07Z`;DownlevelGenuineState=1
|
||||||
```
|
```
|
||||||
|
- A GenuineTicket.xml file should be created in the `C:\Files\` folder.
|
||||||
- A GenuineTicket.xml file should be created in the folder `C:\Files\`. Now, let's apply it:
|
|
||||||
`clipup -v -o -altto C:\Files\`
|
|
||||||
- Check Activation Status with the following command:
|
|
||||||
`slmgr /xpr`
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
**Notes:**
|
**Notes:**
|
||||||
|
|
||||||
- To make the exact ticket used in MAS KMS38 script, fix the time with the below PowerShell command and then initiate the ticket generation process as per the steps mentioned above.
|
- There are two types of tickets: Lockbox and Downlevel. If the system is already activated, then the created ticket will be a Lockbox ticket. If not, it will be a Downlevel ticket.
|
||||||
|
- To make the exact ticket used by the MAS script for HWID activation, make sure the system is already activated and change the time using the PowerShell command below. Then, start the ticket generation process according to the steps above.\
|
||||||
`Set-TimeZone -Id "UTC"; $date=[datetime]"2022/10/11 12:00";while($true){set-date $date; start-sleep -milliseconds 10}`
|
`Set-TimeZone -Id "UTC"; $date=[datetime]"2022/10/11 12:00";while($true){set-date $date; start-sleep -milliseconds 10}`
|
||||||
- In the case of Windows Server Cor/Acor (No GUI) editions, the system doesn't have the `clipup.exe` file.
|
|
||||||
To KMS38 activate it, you need to download the missing `ClipUp.exe` file from [this link](https://app.box.com/s/cwoxub9tqyowhnyva6ign6qnogb6vk0o).
|
|
||||||
`File: ClipUp.exe`
|
|
||||||
`SHA-256: 0d6e9f6bbd0321eda149658d96040cb4f79e0bd93ba60061f25b28fecbf4d4ef`
|
|
||||||
This file has digital signatures that can be verified. You can also get this file from the official [Windows Server 2016 x64 RTM ISO](https://download.microsoft.com/download/1/6/F/16FA20E6-4662-482A-920B-1A45CF5AAE3C/14393.0.160715-1616.RS1_RELEASE_SERVER_EVAL_X64FRE_EN-US.ISO).
|
|
||||||
Put the `ClipUp.exe` in the `C:\Windows\System32` folder and then initiate the above-mentioned activation process. Once the activation is complete, you can remove the file.
|
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
57
docs/manual_hwid_activation.md
Normal file
57
docs/manual_hwid_activation.md
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
# HWID
|
||||||
|
|
||||||
|
This page is for people who do not want to use the script for any reason and would rather perform the HWID activation process themselves. If you'd like to use a tool for this, please check [here](intro.md#download--how-to-use-it).
|
||||||
|
|
||||||
|
:::info
|
||||||
|
HWID activation is only supported on Windows 10/11.
|
||||||
|
:::
|
||||||
|
|
||||||
|
## Manually Activate Windows
|
||||||
|
To manually activate Windows, follow these steps:
|
||||||
|
- Make sure you have a working internet connection.
|
||||||
|
- Determine your Windows Edition. You can find this by searching for "About your PC" in the start menu.
|
||||||
|
- Download the appropriate ticket file from the table below; the ticket file must match your Windows edition.
|
||||||
|
- Copy the downloaded ticket file to:
|
||||||
|
`C:\ProgramData\Microsoft\Windows\ClipSVC\GenuineTicket`
|
||||||
|
The `ProgramData` folder is hidden by default. You can access it directly by pasting the full path above into the Windows Explorer address bar.
|
||||||
|
- Open the Windows Activation settings and click the "Change product key" button.
|
||||||
|
- Copy the corresponding product key from the table below and paste it into the product key field.
|
||||||
|
- After waiting for a few seconds, Windows should be activated.
|
||||||
|
|
||||||
|
### Windows 10/11
|
||||||
|
|
||||||
|
| Edition | Key | Ticket |
|
||||||
|
|---------------------------------------|-------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
| Education | YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Education.xml) |
|
||||||
|
| Education N | 84NGF-MHBT6-FXBX8-QWJK7-DRR8H | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Education.N.xml) |
|
||||||
|
| Enterprise | XGVPP-NMH47-7TTHJ-W3FW7-8HV2C | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.xml) |
|
||||||
|
| Enterprise N | 3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.N.xml) |
|
||||||
|
| Enterprise LTSB 2015 | FWN7H-PF93Q-4GGP8-M8RF3-MDWWW | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.LTSB.2015.xml) |
|
||||||
|
| Enterprise LTSB 2016 | NK96Y-D9CD8-W44CQ-R8YTK-DYJWX | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.LTSB.2016.xml) |
|
||||||
|
| Enterprise LTSC 2019 | 43TBQ-NH92J-XKTM7-KT3KK-P39PB | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.LTSC.2019.xml) |
|
||||||
|
| Enterprise N LTSB 2015 | NTX6B-BRYC2-K6786-F6MVQ-M7V2X | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.N.LTSB.2015.xml) |
|
||||||
|
| Enterprise N LTSB 2016 | 2DBW3-N2PJG-MVHW3-G7TDK-9HKR4 | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.N.LTSB.2016.xml) |
|
||||||
|
| Home | YTMG3-N6DKC-DKB77-7M9GH-8HVX7 | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Home.xml) |
|
||||||
|
| Home N | 4CPRK-NM3K3-X6XXQ-RXX86-WXCHW | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Home.N.xml) |
|
||||||
|
| Home China | N2434-X9D7W-8PF6X-8DV9T-8TYMD | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Home.China.xml) |
|
||||||
|
| Home Single Language | BT79Q-G7N6G-PGBYW-4YWX6-6F4BT | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Home.Single.Language.xml) |
|
||||||
|
| IoT Enterprise | XQQYW-NFFMW-XJPBH-K8732-CKFFD | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/IoT.Enterprise.xml) |
|
||||||
|
| IoT Enterprise Subscription | P8Q7T-WNK7X-PMFXY-VXHBG-RRK69 | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/IoT.Enterprise.Subscription.xml) |
|
||||||
|
| IoT Enterprise LTSC 2021 | QPM6N-7J2WJ-P88HH-P3YRH-YY74H | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/IoT.Enterprise.LTSC.2021.xml) |
|
||||||
|
| IoT Enterprise LTSC 2024 | CGK42-GYN6Y-VD22B-BX98W-J8JXD | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/IoT.Enterprise.LTSC.2024.xml) |
|
||||||
|
| IoT Enterprise LTSC Subscription 2024 | N979K-XWD77-YW3GB-HBGH6-D32MH | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/IoT.Enterprise.LTSC.Subscription.2024.xml) |
|
||||||
|
| Pro | VK7JG-NPHTM-C97JM-9MPGT-3V66T | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.xml) |
|
||||||
|
| Pro N | 2B87N-8KFHP-DKV6R-Y2C8J-PKCKT | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.N.xml) |
|
||||||
|
| Pro Education | 8PTT6-RNW4C-6V7J2-C2D3X-MHBPB | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.Education.xml) |
|
||||||
|
| Pro Education N | GJTYN-HDMQY-FRR76-HVGC7-QPF8P | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.Education.N.xml) |
|
||||||
|
| Pro for Workstations | DXG7C-N36C4-C4HTG-X4T3X-2YV77 | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.for.Workstations.xml) |
|
||||||
|
| Pro N for Workstations | WYPNQ-8C467-V2W6J-TX4WX-WT2RQ | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.N.for.Workstations.xml) |
|
||||||
|
| S | V3WVW-N2PV2-CGWC3-34QGF-VMJ2C | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Cloud.S.xml) |
|
||||||
|
| S N | NH9J3-68WK7-6FB93-4K3DF-DJ4F6 | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Cloud.S.N.xml) |
|
||||||
|
| SE | KY7PN-VR6RX-83W6Y-6DDYQ-T6R4W | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/CloudEdition.SE.xml) |
|
||||||
|
| SE N | K9VKN-3BGWV-Y624W-MCRMQ-BHDCD | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/CloudEdition.SE.N.xml) |
|
||||||
|
| Team | XKCNC-J26Q9-KFHD2-FKTHY-KD72Y | [Link](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Team.xml) |
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
Check [here](troubleshoot.md) for links to our support channels.
|
125
docs/manual_kms38_activation.md
Normal file
125
docs/manual_kms38_activation.md
Normal file
@ -0,0 +1,125 @@
|
|||||||
|
# KMS38
|
||||||
|
|
||||||
|
This page is intended for users who do not want to use the script for any reason and would rather perform the KMS38 activation process themselves. If you'd like to use a tool for this instead, please check [here](intro.md#download--how-to-use-it).
|
||||||
|
|
||||||
|
:::info
|
||||||
|
KMS38 activation is only supported on Windows 10/11 Client and Server editions.
|
||||||
|
:::
|
||||||
|
|
||||||
|
## Manually Activate Windows
|
||||||
|
To manually activate Windows, follow these steps:
|
||||||
|
- Open Windows Powershell as administrator and enter the below commands.
|
||||||
|
- Install the generic key which matches your Windows edition and version:
|
||||||
|
`slmgr /ipk <key>`
|
||||||
|
*(Refer to the table below for the appropriate key.)*
|
||||||
|
- Download the [KMS38 ticket file](https://github.com/massgravel/hwid-kms38-tickets/releases/download/2.0/KMS38.xml).
|
||||||
|
- Copy the downloaded ticket file to the root of the C: drive.
|
||||||
|
- Migrate the ticket to a license and activate Windows by running the commands:
|
||||||
|
`clipup -v -o -altto C:\`
|
||||||
|
- After waiting for a few seconds, Windows should be activated.
|
||||||
|
|
||||||
|
**Notes:**
|
||||||
|
- For Windows Server Cor/Acor editions, the system does not have the `clipup.exe` file.
|
||||||
|
To activate it using KMS38, download the missing `ClipUp.exe` file from [this link](https://app.box.com/s/cwoxub9tqyowhnyva6ign6qnogb6vk0o).
|
||||||
|
`File: ClipUp.exe`
|
||||||
|
`SHA-256: 0d6e9f6bbd0321eda149658d96040cb4f79e0bd93ba60061f25b28fecbf4d4ef`
|
||||||
|
The file is digitally signed and verifiable. You can also obtain this file from the official [Windows Server 2016 x64 RTM ISO](https://download.microsoft.com/download/1/6/F/16FA20E6-4662-482A-920B-1A45CF5AAE3C/14393.0.160715-1616.RS1_RELEASE_SERVER_EVAL_X64FRE_EN-US.ISO).
|
||||||
|
Place the `ClipUp.exe` file in the `C:\Windows\System32` folder and perform the KMS38 activation process. Once the activation is complete, you can remove the file.
|
||||||
|
|
||||||
|
### Windows 10 / 11
|
||||||
|
| Product Names | Generic Volume License Key |
|
||||||
|
|--------------------------------------------------------|-------------------------------|
|
||||||
|
| Education | NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 |
|
||||||
|
| Education N | 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ |
|
||||||
|
| Enterprise | NPPR9-FWDCX-D2C8J-H872K-2YT43 |
|
||||||
|
| Enterprise N | DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 |
|
||||||
|
| Enterprise G | YYVX9-NTFWV-6MDM3-9PT4T-4M68B |
|
||||||
|
| Enterprise G N | 44RPN-FTY23-9VTTB-MP9BX-T84FV |
|
||||||
|
| Enterprise LTSB 2016 | DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ |
|
||||||
|
| Enterprise LTSC 2019 | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |
|
||||||
|
| Enterprise LTSC 2021 | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |
|
||||||
|
| Enterprise LTSC 2024 | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |
|
||||||
|
| Enterprise N LTSB 2016 | QFFDN-GRT3P-VKWWX-X7T3R-8B639 |
|
||||||
|
| Enterprise N LTSC 2019 | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |
|
||||||
|
| Enterprise N LTSC 2021 | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |
|
||||||
|
| Enterprise N LTSC 2024 | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |
|
||||||
|
| IoT Enterprise LTSC 2021 <br /> (19044.2788 and later) | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |
|
||||||
|
| IoT Enterprise LTSC 2024 | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |
|
||||||
|
| Home | TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 |
|
||||||
|
| Home N | 3KHY7-WNT83-DGQKR-F7HPR-844BM |
|
||||||
|
| Home China | PVMJN-6DFY6-9CCP6-7BKTT-D3WVR |
|
||||||
|
| Home Single Language | 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH |
|
||||||
|
| Lean | NBTWJ-3DR69-3C4V8-C26MC-GQ9M6 |
|
||||||
|
| Enterprise multi-session <br /> (17763 and later) | CPWHC-NT2C7-VYW78-DHDB2-PG3GK |
|
||||||
|
| Enterprise multi-session <br /> (17134 and before) | 7NBT4-WGBQX-MP4H7-QXFF8-YP3KX |
|
||||||
|
| Pro | W269N-WFGWX-YVC9B-4J6C9-T83GX |
|
||||||
|
| Pro N | MH37W-N47XK-V7XM9-C7227-GCQG9 |
|
||||||
|
| Pro Education | 6TP4R-GNPTD-KYYHQ-7B7DP-J447Y |
|
||||||
|
| Pro Education N | YVWGF-BXNMC-HTQYQ-CPQ99-66QFC |
|
||||||
|
| Pro for Workstations | NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J |
|
||||||
|
| Pro N for Workstations | 9FNHH-K3HBT-3W4TD-6383H-6XYWF |
|
||||||
|
| SE | 37D7F-N49CB-WQR8W-TBJ73-FM8RX |
|
||||||
|
| SE N | 6XN7V-PCBDC-BDBRH-8DQY7-G6R44 |
|
||||||
|
|
||||||
|
### Windows Server 2025 (LTSC)
|
||||||
|
| Product Names | Generic Volume License Key |
|
||||||
|
|--------------------------------------|-------------------------------|
|
||||||
|
| Windows Server 2025 Standard | TVRH6-WHNXV-R9WG3-9XRFY-MY832 |
|
||||||
|
| Windows Server 2025 Datacenter | D764K-2NDRG-47T6Q-P8T8W-YP6DF |
|
||||||
|
| Windows Server 2025 Azure Core | FCNV3-279Q9-BQB46-FTKXX-9HPRH |
|
||||||
|
| Windows Server 2025 Azure Datacenter | XGN3F-F394H-FD2MY-PP6FD-8MCRC |
|
||||||
|
|
||||||
|
### Windows Server 2022 (LTSC)
|
||||||
|
| Product Names | Generic Volume License Key |
|
||||||
|
|--------------------------------------|-------------------------------|
|
||||||
|
| Windows Server 2022 Datacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |
|
||||||
|
| Windows Server 2022 Standard | VDYBN-27WPP-V4HQT-9VMD4-VMK7H |
|
||||||
|
| Windows Server 2022 Azure Core | 6N379-GGTMK-23C6M-XVVTC-CKFRQ |
|
||||||
|
| Windows Server 2022 Azure Datacenter | NTBV8-9K7Q8-V27C6-M2BTV-KHMXV |
|
||||||
|
|
||||||
|
### Windows Server 2019 (LTSC)
|
||||||
|
| Product Names | Generic Volume License Key |
|
||||||
|
|--------------------------------|-------------------------------|
|
||||||
|
| Windows Server 2019 Datacenter | WMDGN-G9PQG-XVVXX-R3X43-63DFG |
|
||||||
|
| Windows Server 2019 Standard | N69G4-B89J2-4G8F4-WWYCC-J464C |
|
||||||
|
| Windows Server 2019 Essentials | WVDHN-86M7X-466P6-VHXV7-YY726 |
|
||||||
|
| Windows Server 2019 Azure Core | FDNH6-VW9RW-BXPJ7-4XTYG-239TB |
|
||||||
|
| Windows Server 2019 ARM64 | GRFBW-QNDC4-6QBHG-CCK3B-2PR88 |
|
||||||
|
|
||||||
|
### Windows Server 2016 (LTSC)
|
||||||
|
| Product Names | Generic Volume License Key |
|
||||||
|
|-----------------------------------|-------------------------------|
|
||||||
|
| Windows Server 2016 ARM64 | K9FYF-G6NCK-73M32-XMVPY-F9DRR |
|
||||||
|
| Windows Server 2016 Datacenter | CB7KF-BWN84-R7R2Y-793K2-8XDDG |
|
||||||
|
| Windows Server 2016 Standard | WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY |
|
||||||
|
| Windows Server 2016 Essentials | JCKRF-N37P4-C2D82-9YXRT-4M63B |
|
||||||
|
| Windows Server 2016 Cloud Storage | QN4C6-GBJD2-FB422-GHWJK-GJG2R |
|
||||||
|
| Windows Server 2016 Azure Core | VP34G-4NPPG-79JTQ-864T4-R3MQX |
|
||||||
|
|
||||||
|
### Windows Server 23H2 (Annual Channel)
|
||||||
|
| Product Names | Generic Volume License Key |
|
||||||
|
|---------------------------|-------------------------------|
|
||||||
|
| Windows Server Datacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |
|
||||||
|
|
||||||
|
### Windows Server 20H2, 2004, 1909, 1903, and 1809 (Semi-Annual Channel)
|
||||||
|
| Product Names | Generic Volume License Key |
|
||||||
|
|---------------------------|-------------------------------|
|
||||||
|
| Windows Server Datacenter | 6NMRW-2C8FM-D24W7-TQWMY-CWH2D |
|
||||||
|
| Windows Server Standard | N2KJX-J94YW-TQVFB-DG9YT-724CC |
|
||||||
|
|
||||||
|
### Windows Server 1803 (Semi-Annual Channel)
|
||||||
|
| Product Names | Generic Volume License Key |
|
||||||
|
|---------------------------|-------------------------------|
|
||||||
|
| Windows Server Datacenter | 2HXDN-KRXHB-GPYC7-YCKFJ-7FVDG |
|
||||||
|
| Windows Server Standard | PTXN8-JFHJM-4WC78-MPCBR-9W4KR |
|
||||||
|
|
||||||
|
### Windows Server 1709 (Semi-Annual Channel)
|
||||||
|
| Product Names | Generic Volume License Key |
|
||||||
|
|---------------------------|-------------------------------|
|
||||||
|
| Windows Server Datacenter | 6Y6KB-N82V8-D8CQV-23MJW-BWTG6 |
|
||||||
|
| Windows Server Standard | DPCNP-XQFKJ-BJF7R-FRC8D-GF6G4 |
|
||||||
|
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
Check [here](troubleshoot.md) for links to our support channels.
|
202
docs/manual_ohook_activation.md
Normal file
202
docs/manual_ohook_activation.md
Normal file
@ -0,0 +1,202 @@
|
|||||||
|
# Ohook
|
||||||
|
|
||||||
|
This page is intended for users who do not want to use the script for any reason and would rather perform the Ohook activation process themselves. If you'd like to use a tool for this instead, please check [here](intro.md#download--how-to-use-it).
|
||||||
|
|
||||||
|
:::info
|
||||||
|
The steps below only apply to Office 16.0 (2016, 2019, 2021 and 365) C2R x64 bit versions running on an x64 bit Windows 8+ machine.
|
||||||
|
For older Office versions, please follow [this](intro.md#download--how-to-use-it) instead.
|
||||||
|
:::
|
||||||
|
|
||||||
|
## Manually Activate Office
|
||||||
|
|
||||||
|
To manually activate Office, follow these steps:
|
||||||
|
|
||||||
|
- Download the Ohook sppc.dll files from [here](https://github.com/asdcorp/ohook/releases/download/0.5/ohook_0.5.zip) or compile the sppc.dll files yourself using [this guide](ohook#custom-sppcdll-info).
|
||||||
|
- Create a new folder called `ohook` in the root of your C: drive and extract the zip file to it. The path to the folder should be `C:\ohook`.
|
||||||
|
- Open Command Prompt as Administrator and enter the following command to create a symlink of the system's sppc.dll as sppcs.dll in the Office C2R System directory:
|
||||||
|
`mklink "%ProgramFiles%\Microsoft Office\root\vfs\System\sppcs.dll" "%windir%\System32\sppc.dll"`
|
||||||
|
- Enter the following commands to copy the hook library `sppc64.dll` to the Office C2R system directory:
|
||||||
|
`cd /d C:\ohook`
|
||||||
|
`copy /y sppc64.dll "%ProgramFiles%\Microsoft Office\root\vfs\System\sppc.dll"`
|
||||||
|
- Some Office 365 editions check the license status and display the banner "There was a problem checking this device's license status". To prevent this, enter the following command:
|
||||||
|
`reg add HKCU\Software\Microsoft\Office\16.0\Common\Licensing\Resiliency /v "TimeOfLastHeartbeatFailure" /t REG_SZ /d "2040-01-01T00:00:00Z" /f`
|
||||||
|
- Install the generic key which matches your Office edition and version:
|
||||||
|
`slmgr /ipk <key>`
|
||||||
|
*(Refer to the table below for the appropriate key.)*
|
||||||
|
- Office should be activated now.
|
||||||
|
|
||||||
|
### Office 365
|
||||||
|
|
||||||
|
| Office Product | Generated Generic Key |
|
||||||
|
|------------------------|-------------------------------|
|
||||||
|
| O365BusinessRetail | Y9NF9-M2QWD-FF6RJ-QJW36-RRF2T |
|
||||||
|
| O365EduCloudRetail | W62NQ-267QR-RTF74-PF2MH-JQMTH |
|
||||||
|
| O365HomePremRetail | 3NMDC-G7C3W-68RGP-CB4MH-4CXCH |
|
||||||
|
| O365ProPlusRetail | H8DN8-Y2YP3-CR9JT-DHDR9-C7GP3 |
|
||||||
|
| O365SmallBusPremRetail | 2QCNB-RMDKJ-GC8PB-7QGQV-7QTQJ |
|
||||||
|
|
||||||
|
### Office 2016
|
||||||
|
|
||||||
|
| Office Product | Generated Generic Key |
|
||||||
|
|-----------------------------|-------------------------------|
|
||||||
|
| AccessRetail | WHK4N-YQGHB-XWXCC-G3HYC-6JF94 |
|
||||||
|
| AccessRuntimeRetail | RNB7V-P48F4-3FYY6-2P3R3-63BQV |
|
||||||
|
| AccessVolume | JJ2Y4-N8KM3-Y8KY3-Y22FR-R3KVK |
|
||||||
|
| ExcelRetail | RKJBN-VWTM2-BDKXX-RKQFD-JTYQ2 |
|
||||||
|
| ExcelVolume | FVGNR-X82B2-6PRJM-YT4W7-8HV36 |
|
||||||
|
| HomeBusinessPipcRetail | 2WQNF-GBK4B-XVG6F-BBMX7-M4F2Y |
|
||||||
|
| HomeBusinessRetail | HM6FM-NVF78-KV9PM-F36B8-D9MXD |
|
||||||
|
| HomeStudentARMRetail | PBQPJ-NC22K-69MXD-KWMRF-WFG77 |
|
||||||
|
| HomeStudentPlusARMRetail | 6F2NY-7RTX4-MD9KM-TJ43H-94TBT |
|
||||||
|
| HomeStudentRetail | PNPRV-F2627-Q8JVC-3DGR9-WTYRK |
|
||||||
|
| HomeStudentVNextRetail | YWD4R-CNKVT-VG8VJ-9333B-RC3B8 |
|
||||||
|
| MondoRetail | VNWHF-FKFBW-Q2RGD-HYHWF-R3HH2 |
|
||||||
|
| MondoVolume | FMTQQ-84NR8-2744R-MXF4P-PGYR3 |
|
||||||
|
| OneNoteFreeRetail | XYNTG-R96FY-369HX-YFPHY-F9CPM |
|
||||||
|
| OneNoteRetail | FXF6F-CNC26-W643C-K6KB7-6XXW3 |
|
||||||
|
| OneNoteVolume | 9TYVN-D76HK-BVMWT-Y7G88-9TPPV |
|
||||||
|
| OutlookRetail | 7N4KG-P2QDH-86V9C-DJFVF-369W9 |
|
||||||
|
| OutlookVolume | 7QPNR-3HFDG-YP6T9-JQCKQ-KKXXC |
|
||||||
|
| PersonalPipcRetail | 9CYB3-NFMRW-YFDG6-XC7TF-BY36J |
|
||||||
|
| PersonalRetail | FT7VF-XBN92-HPDJV-RHMBY-6VKBF |
|
||||||
|
| PowerPointRetail | N7GCB-WQT7K-QRHWG-TTPYD-7T9XF |
|
||||||
|
| PowerPointVolume | X3RT9-NDG64-VMK2M-KQ6XY-DPFGV |
|
||||||
|
| ProPlusRetail | GM43N-F742Q-6JDDK-M622J-J8GDV |
|
||||||
|
| ProPlusVolume | FNVK8-8DVCJ-F7X3J-KGVQB-RC2QY |
|
||||||
|
| ProfessionalPipcRetail | CF9DD-6CNW2-BJWJQ-CVCFX-Y7TXD |
|
||||||
|
| ProfessionalRetail | NXFTK-YD9Y7-X9MMJ-9BWM6-J2QVH |
|
||||||
|
| ProjectProRetail | WPY8N-PDPY4-FC7TF-KMP7P-KWYFY |
|
||||||
|
| ProjectProVolume | PKC3N-8F99H-28MVY-J4RYY-CWGDH |
|
||||||
|
| ProjectProXVolume | JBNPH-YF2F7-Q9Y29-86CTG-C9YGV |
|
||||||
|
| ProjectStdRetail | NTHQT-VKK6W-BRB87-HV346-Y96W8 |
|
||||||
|
| ProjectStdVolume | 4TGWV-6N9P6-G2H8Y-2HWKB-B4G93 |
|
||||||
|
| ProjectStdXVolume | N3W2Q-69MBT-27RD9-BH8V3-JT2C8 |
|
||||||
|
| PublisherRetail | WKWND-X6G9G-CDMTV-CPGYJ-6MVBF |
|
||||||
|
| PublisherVolume | 9QVN2-PXXRX-8V4W8-Q7926-TJGD8 |
|
||||||
|
| SkypeServiceBypassRetail | 6MDN4-WF3FV-4WH3Q-W699V-RGCMY |
|
||||||
|
| SkypeforBusinessEntryRetail | 4N4D8-3J7Y3-YYW7C-73HD2-V8RHY |
|
||||||
|
| SkypeforBusinessRetail | PBJ79-77NY4-VRGFG-Y8WYC-CKCRC |
|
||||||
|
| SkypeforBusinessVolume | DMTCJ-KNRKR-JV8TQ-V2CR2-VFTFH |
|
||||||
|
| StandardRetail | 2FPWN-4H6CM-KD8QQ-8HCHC-P9XYW |
|
||||||
|
| StandardVolume | WHGMQ-JNMGT-MDQVF-WDR69-KQBWC |
|
||||||
|
| VisioProRetail | NVK2G-2MY4G-7JX2P-7D6F2-VFQBR |
|
||||||
|
| VisioProVolume | NRKT9-C8GP2-XDYXQ-YW72K-MG92B |
|
||||||
|
| VisioProXVolume | G98Q2-B6N77-CFH9J-K824G-XQCC4 |
|
||||||
|
| VisioStdRetail | NCRB7-VP48F-43FYY-62P3R-367WK |
|
||||||
|
| VisioStdVolume | XNCJB-YY883-JRW64-DPXMX-JXCR6 |
|
||||||
|
| VisioStdXVolume | B2HTN-JPH8C-J6Y6V-HCHKB-43MGT |
|
||||||
|
| WordRetail | P8K82-NQ7GG-JKY8T-6VHVY-88GGD |
|
||||||
|
| WordVolume | YHMWC-YN6V9-WJPXD-3WQKP-TMVCV |
|
||||||
|
|
||||||
|
### Office 2019
|
||||||
|
|
||||||
|
| Office Product | Generated Generic Key |
|
||||||
|
|---------------------------------|-------------------------------|
|
||||||
|
| Access2019Retail | WRYJ6-G3NP7-7VH94-8X7KP-JB7HC |
|
||||||
|
| Access2019Volume | 6FWHX-NKYXK-BW34Q-7XC9F-Q9PX7 |
|
||||||
|
| AccessRuntime2019Retail | FGQNJ-JWJCG-7Q8MG-RMRGJ-9TQVF |
|
||||||
|
| Excel2019Retail | KBPNW-64CMM-8KWCB-23F44-8B7HM |
|
||||||
|
| Excel2019Volume | 8NT4X-GQMCK-62X4P-TW6QP-YKPYF |
|
||||||
|
| HomeBusiness2019Retail | QBN2Y-9B284-9KW78-K48PB-R62YT |
|
||||||
|
| HomeStudentARM2019Retail | DJTNY-4HDWM-TDWB2-8PWC2-W2RRT |
|
||||||
|
| HomeStudentPlusARM2019Retail | NM8WT-CFHB2-QBGXK-J8W6J-GVK8F |
|
||||||
|
| HomeStudent2019Retail | XNWPM-32XQC-Y7QJC-QGGBV-YY7JK |
|
||||||
|
| Outlook2019Retail | WR43D-NMWQQ-HCQR2-VKXDR-37B7H |
|
||||||
|
| Outlook2019Volume | RN3QB-GT6D7-YB3VH-F3RPB-3GQYB |
|
||||||
|
| Personal2019Retail | NMBY8-V3CV7-BX6K6-2922Y-43M7T |
|
||||||
|
| PowerPoint2019Retail | HN27K-JHJ8R-7T7KK-WJYC3-FM7MM |
|
||||||
|
| PowerPoint2019Volume | 29GNM-VM33V-WR23K-HG2DT-KTQYR |
|
||||||
|
| ProPlus2019Retail | BN4XJ-R9DYY-96W48-YK8DM-MY7PY |
|
||||||
|
| ProPlus2019Volume | T8YBN-4YV3X-KK24Q-QXBD7-T3C63 |
|
||||||
|
| Professional2019Retail | 9NXDK-MRY98-2VJV8-GF73J-TQ9FK |
|
||||||
|
| ProjectPro2019Retail | JDTNC-PP77T-T9H2W-G4J2J-VH8JK |
|
||||||
|
| ProjectPro2019Volume | TBXBD-FNWKJ-WRHBD-KBPHH-XD9F2 |
|
||||||
|
| ProjectStd2019Retail | R3JNT-8PBDP-MTWCK-VD2V8-HMKF9 |
|
||||||
|
| ProjectStd2019Volume | RBRFX-MQNDJ-4XFHF-7QVDR-JHXGC |
|
||||||
|
| Publisher2019Retail | 4QC36-NW3YH-D2Y9D-RJPC7-VVB9D |
|
||||||
|
| Publisher2019Volume | K8F2D-NBM32-BF26V-YCKFJ-29Y9W |
|
||||||
|
| SkypeforBusiness2019Retail | JBDKF-6NCD6-49K3G-2TV79-BKP73 |
|
||||||
|
| SkypeforBusiness2019Volume | 9MNQ7-YPQ3B-6WJXM-G83T3-CBBDK |
|
||||||
|
| SkypeforBusinessEntry2019Retail | N9722-BV9H6-WTJTT-FPB93-978MK |
|
||||||
|
| Standard2019Retail | NDGVM-MD27H-2XHVC-KDDX2-YKP74 |
|
||||||
|
| Standard2019Volume | NT3V6-XMBK7-Q66MF-VMKR4-FC33M |
|
||||||
|
| VisioPro2019Retail | 2NWVW-QGF4T-9CPMB-WYDQ9-7XP79 |
|
||||||
|
| VisioPro2019Volume | 33YF4-GNCQ3-J6GDM-J67P3-FM7QP |
|
||||||
|
| VisioStd2019Retail | 263WK-3N797-7R437-28BKG-3V8M8 |
|
||||||
|
| VisioStd2019Volume | BGNHX-QTPRJ-F9C9G-R8QQG-8T27F |
|
||||||
|
| Word2019Retail | JXR8H-NJ3MK-X66W8-78CWD-QRVR2 |
|
||||||
|
| Word2019Volume | 9F36R-PNVHH-3DXGQ-7CD2H-R9D3V |
|
||||||
|
|
||||||
|
### Office 2021
|
||||||
|
|
||||||
|
| Office Product | Generated Generic Key |
|
||||||
|
|----------------------------|-------------------------------|
|
||||||
|
| Access2021Retail | P286B-N3XYP-36QRQ-29CMP-RVX9M |
|
||||||
|
| AccessRuntime2021Retail | MNX9D-PB834-VCGY2-K2RW2-2DP3D |
|
||||||
|
| Access2021Volume | JBH3N-P97FP-FRTJD-MGK2C-VFWG6 |
|
||||||
|
| Excel2021Retail | V6QFB-7N7G9-PF7W9-M8FQM-MY8G9 |
|
||||||
|
| Excel2021Volume | WNYR4-KMR9H-KVC8W-7HJ8B-K79DQ |
|
||||||
|
| HomeBusiness2021Retail | JM99N-4MMD8-DQCGJ-VMYFY-R63YK |
|
||||||
|
| HomeStudent2021Retail | N3CWD-38XVH-KRX2Y-YRP74-6RBB2 |
|
||||||
|
| OneNoteFree2021Retail | CNM3W-V94GB-QJQHH-BDQ3J-33Y8H |
|
||||||
|
| OneNote2021Retail | NB2TQ-3Y79C-77C6M-QMY7H-7QY8P |
|
||||||
|
| OneNote2021Volume | THNKC-KFR6C-Y86Q9-W8CB3-GF7PD |
|
||||||
|
| Outlook2021Retail | 4NCWR-9V92Y-34VB2-RPTHR-YTGR7 |
|
||||||
|
| Outlook2021Volume | JQ9MJ-QYN6B-67PX9-GYFVY-QJ6TB |
|
||||||
|
| Personal2021Retail | RRRYB-DN749-GCPW4-9H6VK-HCHPT |
|
||||||
|
| PowerPoint2021Retail | 3KXXQ-PVN2C-8P7YY-HCV88-GVM96 |
|
||||||
|
| PowerPoint2021Volume | 39G2N-3BD9C-C4XCM-BD4QG-FVYDY |
|
||||||
|
| ProPlus2021Retail | 8WXTP-MN628-KY44G-VJWCK-C7PCF |
|
||||||
|
| ProPlus2021Volume | RNHJY-DTFXW-HW9F8-4982D-MD2CW |
|
||||||
|
| ProPlusSPLA2021Volume | JRJNJ-33M7C-R73X3-P9XF7-R9F6M |
|
||||||
|
| Professional2021Retail | DJPHV-NCJV6-GWPT6-K26JX-C7PBG |
|
||||||
|
| ProjectPro2021Retail | QKHNX-M9GGH-T3QMW-YPK4Q-QRWMV |
|
||||||
|
| ProjectPro2021Volume | HVC34-CVNPG-RVCMT-X2JRF-CR7RK |
|
||||||
|
| ProjectStd2021Retail | 2B96V-X9NJY-WFBRC-Q8MP2-7CHRR |
|
||||||
|
| ProjectStd2021Volume | 3CNQX-T34TY-99RH4-C4YD2-KW6WH |
|
||||||
|
| Publisher2021Retail | CDNFG-77T8D-VKQJX-B7KT3-KK28V |
|
||||||
|
| Publisher2021Volume | 2KXJH-3NHTW-RDBPX-QFRXJ-MTGXF |
|
||||||
|
| SkypeforBusiness2021Retail | DVBXN-HFT43-CVPRQ-J89TF-VMMHG |
|
||||||
|
| SkypeforBusiness2021Volume | R3FCY-NHGC7-CBPVP-8Q934-YTGXG |
|
||||||
|
| Standard2021Retail | HXNXB-J4JGM-TCF44-2X2CV-FJVVH |
|
||||||
|
| Standard2021Volume | 2CJN4-C9XK2-HFPQ6-YH498-82TXH |
|
||||||
|
| StandardSPLA2021Volume | BQWDW-NJ9YF-P7Y79-H6DCT-MKQ9C |
|
||||||
|
| VisioPro2021Retail | T6P26-NJVBR-76BK8-WBCDY-TX3BC |
|
||||||
|
| VisioPro2021Volume | JNKBX-MH9P4-K8YYV-8CG2Y-VQ2C8 |
|
||||||
|
| VisioStd2021Retail | 89NYY-KB93R-7X22F-93QDF-DJ6YM |
|
||||||
|
| VisioStd2021Volume | BW43B-4PNFP-V637F-23TR2-J47TX |
|
||||||
|
| Word2021Retail | VNCC4-CJQVK-BKX34-77Y8H-CYXMR |
|
||||||
|
| Word2021Volume | BJG97-NW3GM-8QQQ7-FH76G-686XM |
|
||||||
|
|
||||||
|
### Office 2024
|
||||||
|
|
||||||
|
| Office Product | Generated Generic Key |
|
||||||
|
|----------------------------|-------------------------------|
|
||||||
|
| Access2024Retail | P6NMW-JMTRC-R6MQ6-HH3F2-BTHKB |
|
||||||
|
| Access2024Volume | CXNJT-98HPP-92HX7-MX6GY-2PVFR |
|
||||||
|
| Excel2024Retail | 82CNJ-W82TW-BY23W-BVJ6W-W48GP |
|
||||||
|
| Excel2024Volume | 7Y287-9N2KC-8MRR3-BKY82-2DQRV |
|
||||||
|
| Home2024Retail | N69X7-73KPT-899FD-P8HQ4-QGTP4 |
|
||||||
|
| HomeBusiness2024Retail | PRKQM-YNPQR-77QT6-328D7-BD223 |
|
||||||
|
| Outlook2024Retail | 2CFK4-N44KG-7XG89-CWDG6-P7P27 |
|
||||||
|
| Outlook2024Volume | NQPXP-WVB87-H3MMB-FYBW2-9QFPB |
|
||||||
|
| PowerPoint2024Retail | CT2KT-GTNWH-9HFGW-J2PWJ-XW7KJ |
|
||||||
|
| PowerPoint2024Volume | RRXFN-JJ26R-RVWD2-V7WMP-27PWQ |
|
||||||
|
| ProjectPro2024Retail | GNJ6P-Y4RBM-C32WW-2VJKJ-MTHKK |
|
||||||
|
| ProjectPro2024Volume | WNFMR-HK4R7-7FJVM-VQ3JC-76HF6 |
|
||||||
|
| ProjectStd2024Retail | C2PNM-2GQFC-CY3XR-WXCP4-GX3XM |
|
||||||
|
| ProjectStd2024Volume | F2VNW-MW8TT-K622Q-4D96H-PWJ8X |
|
||||||
|
| ProPlus2024Retail | VWCNX-7FKBD-FHJYG-XBR4B-88KC6 |
|
||||||
|
| ProPlus2024Volume | 4YV2J-VNG7W-YGTP3-443TK-TF8CP |
|
||||||
|
| SkypeforBusiness2024Volume | XKRBW-KN2FF-G8CKY-HXVG6-FVY2V |
|
||||||
|
| Standard2024Volume | GVG6N-6WCHH-K2MVP-RQ78V-3J7GJ |
|
||||||
|
| VisioPro2024Retail | HGRBX-N68QF-6DY8J-CGX4W-XW7KP |
|
||||||
|
| VisioPro2024Volume | GBNHB-B2G3Q-G42YB-3MFC2-7CJCX |
|
||||||
|
| VisioStd2024Retail | VBXPJ-38NR3-C4DKF-C8RT7-RGHKQ |
|
||||||
|
| VisioStd2024Volume | YNFTY-63K7P-FKHXK-28YYT-D32XB |
|
||||||
|
| Word2024Retail | XN33R-RP676-GMY2F-T3MH7-GCVKR |
|
||||||
|
| Word2024Volume | WD8CQ-6KNQM-8W2CX-2RT63-KK3TP |
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
Check [here](troubleshoot.md) for links to our support channels.
|
@ -321,21 +321,7 @@ TL;DR all kinds of Office products are supported on Windows 8 and higher and the
|
|||||||
|
|
||||||
## Manual Activation
|
## Manual Activation
|
||||||
|
|
||||||
This is for those who wants to perform manual activation. If you want a tool to do this for you then check [here](intro.md).
|
- Check [here](manual_ohook_activation.md)
|
||||||
|
|
||||||
- These steps are listed for Office 16.0 (2016, 2019, 2021, O365) C2R x64 bit on Windows x64 bit version.
|
|
||||||
- Download ohook sppc.dll files from [here](https://github.com/asdcorp/ohook/releases/download/0.5/ohook_0.5.zip) or create sppc.dll files from scratch as per the above instructions.
|
|
||||||
- Extract this zip file to a folder named `C:\ohook`
|
|
||||||
- Open command prompt as admin and enter below command to create a symlink of the system sppc.dll in the Office C2R System directory as sppcs.dll,
|
|
||||||
`mklink "%ProgramFiles%\Microsoft Office\root\vfs\System\sppcs.dll" "%windir%\System32\sppc.dll"`
|
|
||||||
- Now enter below command to copy the hook library as sppc.dll to the Office C2R system directory,
|
|
||||||
`cd /d C:\ohook`
|
|
||||||
`copy /y sppc64.dll "%ProgramFiles%\Microsoft Office\root\vfs\System\sppc.dll"`
|
|
||||||
- Some O365 editions check the license status and show the banner "There was a problem checking this device's license status". To stop this, enter below command,
|
|
||||||
`reg add HKCU\Software\Microsoft\Office\16.0\Common\Licensing\Resiliency /v "TimeOfLastHeartbeatFailure" /t REG_SZ /d "2040-01-01T00:00:00Z" /f`
|
|
||||||
- Enter the key, (Replace `<key>` with the key from the above list) with the following command,
|
|
||||||
`slmgr /ipk <key>`
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -116,6 +116,10 @@ const config = {
|
|||||||
label: 'Docs',
|
label: 'Docs',
|
||||||
to: '/hwid',
|
to: '/hwid',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: 'Manual Activation',
|
||||||
|
to: '/manual_hwid_activation'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: 'Guides',
|
label: 'Guides',
|
||||||
to: '/guide_links',
|
to: '/guide_links',
|
||||||
|
@ -27,6 +27,11 @@ const sidebars = {
|
|||||||
type: 'category',
|
type: 'category',
|
||||||
label: 'Docs',
|
label: 'Docs',
|
||||||
items: ['hwid','ohook','tsforge','kms38','online_kms','chart','command_line_switches','check_activation_status','oem-folder','change_windows_edition','change_office_edition'],
|
items: ['hwid','ohook','tsforge','kms38','online_kms','chart','command_line_switches','check_activation_status','oem-folder','change_windows_edition','change_office_edition'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'category',
|
||||||
|
label: 'Manual Activation',
|
||||||
|
items: ['manual_hwid_activation', 'manual_ohook_activation', 'manual_kms38_activation']
|
||||||
},
|
},
|
||||||
'guide_links',
|
'guide_links',
|
||||||
'news',
|
'news',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user