0% found this document useful (0 votes)
737 views

Windows 10 Activator

This document contains a batch script that activates different versions of Windows 10 by applying product keys and configuring the KMS server. The script first lists the supported Windows 10 editions, then applies 12 product keys using the slmgr tool. It then loops through 4 KMS servers until it successfully activates Windows and prompts the user to restart.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
737 views

Windows 10 Activator

This document contains a batch script that activates different versions of Windows 10 by applying product keys and configuring the KMS server. The script first lists the supported Windows 10 editions, then applies 12 product keys using the slmgr tool. It then loops through 4 KMS servers until it successfully activates Windows and prompts the user to restart.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

@echo off

title Windows 10 ALL version activator&cls&echo ********************************


****&echo Supported products:&echo - Windows 10 Home&echo - Windows 10 Professio
nal&echo - Windows 10 Enterprise, Enterprise LTSB&echo - Windows 10 Education&ec
ho.&echo.&echo ************************************ &echo Windows 10 activation.
..
cscript //nologo c:\windows\system32\slmgr.vbs /ipk TX9XD-98N7V-6WMQ6-BX7FG-H8Q9
9 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk 3KHY7-WNT83-DGQKR-F7HPR-844B
M >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDF
H >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk PVMJN-6DFY6-9CCP6-7BKTT-D3WV
R >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk W269N-WFGWX-YVC9B-4J6C9-T83G
X >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk MH37W-N47XK-V7XM9-C7227-GCQG
9 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk NW6C2-QMPVW-D7KKK-3GKT6-VCFB
2 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk 2WH4N-8QGBV-H22JP-CT43Q-MDWW
J >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk NPPR9-FWDCX-D2C8J-H872K-2YT4
3 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk DPH2V-TTNVB-4X9Q3-TJR4H-KHJW
4 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk WNMTR-4C88C-JK8YV-HQ7T2-76DF
9 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk 2F77B-TNFGY-69QQF-B8YKP-D69T
J >nul
echo ************************************ &echo.&echo.&set i=1
:server
if %i%==1 set KMS_Sev=AlwaysSmile.uk.to
if %i%==2 set KMS_Sev=NextLevel.uk.to
if %i%==3 set KMS_Sev=GuangPeng.uk.to
if %i%==4 exit
cscript //nologo c:\windows\system32\slmgr.vbs /skms %KMS_Sev% >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ato | find /i "successfully" &&
(echo.& echo ************************************ & echo. & choice /n /c YN /m "
Do you want to restart your PC now [Y,N]?" & if errorlevel 2 exit) || (echo The
connection to the server failed! Trying to connect to another one... & echo Plea
se wait... & echo. & echo. & set /a i+=1 & goto server)
shutdown.exe /r /t 00

You might also like