-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
622fce7
commit 9fe2ded
Showing
1 changed file
with
13 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
$version = (systeminfo | Select-String -Pattern 'Microsoft Windows 10') -split 'Microsoft ' | ||
|
||
Switch ($version) { | ||
"Windows 10 Home" { slmgr /ipk TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 } | ||
"Windows 10 Home N" { slmgr /ipk 3KHY7-WNT83-DGQKR-F7HPR-844BM } | ||
"Windows 10 Home Single Language" { slmgr /ipk 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH } | ||
"Windows 10 Professional" { slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX } | ||
"Windows 10 Professional N" { slmgr /ipk MH37W-N47XK-V7XM9-C7227-GCQG9 } | ||
"Windows 10 Education" { slmgr /ipk NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 } | ||
"Windows 10 Education N" { slmgr /ipk 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ } | ||
"Windows 10 Enterprise" { slmgr /ipk NPPR9-FWDCX-D2C8J-H872K-2YT43 } | ||
"Windows 10 Enterprise LTSC" { slmgr /ipk NPPR9-FWDCX-D2C8J-H872K-2YT43 } | ||
"Windows 10 Enterprise N" { slmgr /ipk DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 } | ||
"Windows 10 Enterprise N LTSC" { slmgr /ipk DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 } | ||
$key = switch ($version) { | ||
"Windows 10 Home" { "TX9XD-98N7V-6WMQ6-BX7FG-H8Q99" } | ||
"Windows 10 Home N" { "3KHY7-WNT83-DGQKR-F7HPR-844BM" } | ||
"Windows 10 Home Single Language" { "7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH" } | ||
"Windows 10 Professional" { "W269N-WFGWX-YVC9B-4J6C9-T83GX" } | ||
"Windows 10 Professional N" { "MH37W-N47XK-V7XM9-C7227-GCQG9" } | ||
"Windows 10 Education" { "NW6C2-QMPVW-D7KKK-3GKT6-VCFB2" } | ||
"Windows 10 Education N" { "2WH4N-8QGBV-H22JP-CT43Q-MDWWJ" } | ||
"Windows 10 Enterprise" { "NPPR9-FWDCX-D2C8J-H872K-2YT43" } | ||
"Windows 10 Enterprise LTSC" { "NPPR9-FWDCX-D2C8J-H872K-2YT43" } | ||
"Windows 10 Enterprise N" { "DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4" } | ||
"Windows 10 Enterprise N LTSC" { "DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4" } | ||
} | ||
|
||
slmgr /ipk $key | ||
slmgr /skms kms8.msguides.com | ||
slmgr /ato |