massgrave.dev/docs/change_windows_edition.md

43 lines
2.7 KiB
Markdown
Raw Normal View History

2022-07-25 20:03:20 +02:00
# Change Windows Edition
2022-08-10 19:01:29 +02:00
- You can find this option in the MAS extras section.
2023-10-25 18:47:27 +02:00
- It can change the Windows 7-8-8.1-10-11 and their Server equivalent editions.
- The script incorporates 4 methods for edition changing:
2024-02-12 13:05:09 +01:00
- May's DISM Api Method - Used in Windows 10/11 Core to Non-Core edition change
2024-09-06 01:05:13 +02:00
- [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/windows-server/get-started/upgrade-conversion-options) - Used in Server 2016 and later server versions
2024-02-12 13:05:09 +01:00
- [CBS Upgrade Method](https://github.com/asdcorp/Set-WindowsCbsEdition) - Used in Windows versions before 10
2023-10-25 18:47:27 +02:00
- Available editions that can be changed to are shown in the script based on all these 4 options.
2024-02-12 13:05:09 +01:00
- 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 blocks changing to CountrySpecific, ServerRdsh, and to/from CloudEdition editions since it's officially not supported and the user may face issues.
- The script cannot change,
2024-04-12 05:05:28 +02:00
- Non-Core editions to Core editions (For example, Pro > Home isn't available)
- GAC editions to LTSC editions (For example, Enterprise > Enterprise LTSC isn't available)
2024-02-12 13:05:09 +01:00
------------------------------------------------------------------------
## Manual Edition Change
If you want to manually change the edition instead of using the script, please follow the steps below.
### Windows 10/11
2024-04-12 05:05:28 +02:00
- To view the list of available editions, open the command prompt as admin and enter
2024-02-12 13:05:09 +01:00
`dism /online /english /Get-TargetEditions`
2024-04-12 05:05:28 +02:00
- Get the keys for the desired edition from [here](hwid.md#supported-products)
2024-02-12 13:05:09 +01:00
- If you are upgrading from Home to Pro, you will need to disable the Internet before performing the upgrade.
2024-04-12 05:05:28 +02:00
- Now enter that product key with this command, replace `<product_key>` with the actual key.
2024-02-12 13:05:09 +01:00
`changepk.exe /ProductKey <product_key>`
- In the Home to Pro upgrade, it may show an error, restart the system anyway. (Use the script if it's still not working)
- Activate the changed edition with MAS, that's all.
### Windows Server 2016 and Later
2024-09-06 01:05:13 +02:00
- 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).
2022-07-25 20:03:20 +02:00
------------------------------------------------------------------------
2024-02-12 13:05:09 +01:00
## Troubleshooting
2024-04-12 05:05:28 +02:00
- Check [here](change_edition_issues.md).