mirror of
https://github.com/massgravel/Microsoft-Activation-Scripts.git
synced 2025-02-22 04:59:56 +00:00
Compare commits
56 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
ed91ab5ac2 | ||
![]() |
bc8ae03488 | ||
![]() |
d17d7496e0 | ||
![]() |
22938f30e1 | ||
![]() |
987b518ba1 | ||
![]() |
eecd977184 | ||
![]() |
7323b3ab18 | ||
![]() |
f551f61998 | ||
![]() |
43ce3cc4be | ||
![]() |
6791e7a73f | ||
![]() |
f0fefb7baa | ||
![]() |
73b1085da6 | ||
![]() |
47e3aa20dc | ||
![]() |
f27b3fbe6e | ||
![]() |
d62eeb9355 | ||
![]() |
f22b577af8 | ||
![]() |
76f9092e80 | ||
![]() |
1b3bb6b4ef | ||
![]() |
2d24a4cba4 | ||
![]() |
e309ccf1d0 | ||
![]() |
9e76e9ef6e | ||
![]() |
c76fe2fbd6 | ||
![]() |
0a0db38cea | ||
![]() |
e481c0db85 | ||
![]() |
65354304c9 | ||
![]() |
602747a8d3 | ||
![]() |
5ff9ff8db3 | ||
![]() |
c95ccceabc | ||
![]() |
a6184d2387 | ||
![]() |
167bc1febf | ||
![]() |
e54b15a5b1 | ||
![]() |
9a15265109 | ||
![]() |
f9c7a5cd99 | ||
![]() |
7e5a1c6f79 | ||
![]() |
35473624e2 | ||
![]() |
4f94317021 | ||
![]() |
0cd0268854 | ||
![]() |
86bd13a2d8 | ||
![]() |
27b9b4a154 | ||
![]() |
b92b73b792 | ||
![]() |
bd6a1b5aed | ||
![]() |
6093d81287 | ||
![]() |
2b1a3af5a1 | ||
![]() |
5437958fd2 | ||
![]() |
a49a5cf358 | ||
![]() |
a03754a676 | ||
![]() |
ff64060957 | ||
![]() |
fb37d27024 | ||
![]() |
de0fb31d28 | ||
![]() |
4af8aae1e7 | ||
![]() |
333cf9c6c1 | ||
![]() |
6d2b3c12ca | ||
![]() |
d4b8f942ec | ||
![]() |
118379f292 | ||
![]() |
fdb5155092 | ||
![]() |
af621ad8ab |
9037
MAS/All-In-One-Version/MAS_AIO.cmd
Normal file
9037
MAS/All-In-One-Version/MAS_AIO.cmd
Normal file
File diff suppressed because it is too large
Load Diff
1318
MAS/Separate-Files-Version/Activation_Troubleshoot.cmd
Normal file
1318
MAS/Separate-Files-Version/Activation_Troubleshoot.cmd
Normal file
File diff suppressed because it is too large
Load Diff
1022
MAS/Separate-Files-Version/Change_Edition.cmd
Normal file
1022
MAS/Separate-Files-Version/Change_Edition.cmd
Normal file
File diff suppressed because it is too large
Load Diff
233
MAS/Separate-Files-Version/Check-Activation-Status-vbs.cmd
Normal file
233
MAS/Separate-Files-Version/Check-Activation-Status-vbs.cmd
Normal file
@ -0,0 +1,233 @@
|
|||||||
|
@setlocal DisableDelayedExpansion
|
||||||
|
@echo off
|
||||||
|
@cls
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
:: Check-Activation-Status-vbs.cmd
|
||||||
|
:: Written by @abbodi1406
|
||||||
|
:: forums.mydigitallife.net/posts/838808
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set _args=
|
||||||
|
set _args=%*
|
||||||
|
for %%A in (%_args%) do (
|
||||||
|
if /i "%%A"=="-wow" set _rel1=1
|
||||||
|
if /i "%%A"=="-arm" set _rel2=1
|
||||||
|
)
|
||||||
|
set "_cmdf=%~f0"
|
||||||
|
if exist "%SystemRoot%\Sysnative\cmd.exe" if not defined _rel1 (
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
start %SystemRoot%\Sysnative\cmd.exe /c ""!_cmdf!" -wow"
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
if exist "%SystemRoot%\SysArm32\cmd.exe" if /i %PROCESSOR_ARCHITECTURE%==AMD64 if not defined _rel2 (
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
start %SystemRoot%\SysArm32\cmd.exe /c ""!_cmdf!" -arm"
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
color 07
|
||||||
|
title Check Activation Status [vbs]
|
||||||
|
set "SysPath=%SystemRoot%\System32"
|
||||||
|
set "Path=%SystemRoot%\System32;%SystemRoot%\System32\Wbem;%SystemRoot%\System32\WindowsPowerShell\v1.0\"
|
||||||
|
if exist "%SystemRoot%\Sysnative\reg.exe" (
|
||||||
|
set "SysPath=%SystemRoot%\Sysnative"
|
||||||
|
set "Path=%SystemRoot%\Sysnative;%SystemRoot%\Sysnative\Wbem;%SystemRoot%\Sysnative\WindowsPowerShell\v1.0\;%Path%"
|
||||||
|
)
|
||||||
|
|
||||||
|
:: Check LF line ending
|
||||||
|
|
||||||
|
pushd "%~dp0"
|
||||||
|
>nul findstr /rxc:".*" "%~nx0"
|
||||||
|
if not %errorlevel%==0 (
|
||||||
|
echo:
|
||||||
|
echo Error: This is not a correct file. It has LF line ending issue.
|
||||||
|
echo:
|
||||||
|
ping 127.0.0.1 -n 6 > nul
|
||||||
|
popd
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
popd
|
||||||
|
|
||||||
|
set "_bit=64"
|
||||||
|
set "_wow=1"
|
||||||
|
if /i "%PROCESSOR_ARCHITECTURE%"=="x86" if "%PROCESSOR_ARCHITEW6432%"=="" set "_wow=0"&set "_bit=32"
|
||||||
|
set "_utemp=%TEMP%"
|
||||||
|
set "line2=************************************************************"
|
||||||
|
set "line3=____________________________________________________________"
|
||||||
|
set _sO16vbs=0
|
||||||
|
set _sO15vbs=0
|
||||||
|
if exist "%ProgramFiles%\Microsoft Office\Office15\ospp.vbs" (
|
||||||
|
set _sO15vbs=1
|
||||||
|
) else if exist "%ProgramW6432%\Microsoft Office\Office15\ospp.vbs" (
|
||||||
|
set _sO15vbs=1
|
||||||
|
) else if exist "%ProgramFiles(x86)%\Microsoft Office\Office15\ospp.vbs" (
|
||||||
|
set _sO15vbs=1
|
||||||
|
)
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
echo %line2%
|
||||||
|
echo *** Windows Status ***
|
||||||
|
echo %line2%
|
||||||
|
pushd "!_utemp!"
|
||||||
|
copy /y %SystemRoot%\System32\slmgr.vbs . >nul 2>&1
|
||||||
|
net start sppsvc /y >nul 2>&1
|
||||||
|
cscript //nologo slmgr.vbs /dli || (echo Error executing slmgr.vbs&del /f /q slmgr.vbs&popd&goto :casVend)
|
||||||
|
cscript //nologo slmgr.vbs /xpr
|
||||||
|
del /f /q slmgr.vbs >nul 2>&1
|
||||||
|
popd
|
||||||
|
echo %line3%
|
||||||
|
|
||||||
|
:casVo16
|
||||||
|
set office=
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('"reg query HKLM\SOFTWARE\Microsoft\Office\16.0\Common\InstallRoot /v Path" 2^>nul') do (set "office=%%b")
|
||||||
|
if exist "!office!\ospp.vbs" (
|
||||||
|
set _sO16vbs=1
|
||||||
|
echo.
|
||||||
|
echo %line2%
|
||||||
|
if %_sO15vbs% EQU 0 (
|
||||||
|
echo *** Office 2016 %_bit%-bit Status ***
|
||||||
|
) else (
|
||||||
|
echo *** Office 2013/2016 Status ***
|
||||||
|
)
|
||||||
|
echo %line2%
|
||||||
|
cscript //nologo "!office!\ospp.vbs" /dstatus
|
||||||
|
)
|
||||||
|
if %_wow%==0 goto :casVo13
|
||||||
|
set office=
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('"reg query HKLM\SOFTWARE\Wow6432Node\Microsoft\Office\16.0\Common\InstallRoot /v Path" 2^>nul') do (set "office=%%b")
|
||||||
|
if exist "!office!\ospp.vbs" (
|
||||||
|
set _sO16vbs=1
|
||||||
|
echo.
|
||||||
|
echo %line2%
|
||||||
|
if %_sO15vbs% EQU 0 (
|
||||||
|
echo *** Office 2016 32-bit Status ***
|
||||||
|
) else (
|
||||||
|
echo *** Office 2013/2016 Status ***
|
||||||
|
)
|
||||||
|
echo %line2%
|
||||||
|
cscript //nologo "!office!\ospp.vbs" /dstatus
|
||||||
|
)
|
||||||
|
|
||||||
|
:casVo13
|
||||||
|
if %_sO16vbs% EQU 1 goto :casVo10
|
||||||
|
set office=
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('"reg query HKLM\SOFTWARE\Microsoft\Office\15.0\Common\InstallRoot /v Path" 2^>nul') do (set "office=%%b")
|
||||||
|
if exist "!office!\ospp.vbs" (
|
||||||
|
echo.
|
||||||
|
echo %line2%
|
||||||
|
echo *** Office 2013 %_bit%-bit Status ***
|
||||||
|
echo %line2%
|
||||||
|
cscript //nologo "!office!\ospp.vbs" /dstatus
|
||||||
|
)
|
||||||
|
if %_wow%==0 goto :casVo10
|
||||||
|
set office=
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('"reg query HKLM\SOFTWARE\Wow6432Node\Microsoft\Office\15.0\Common\InstallRoot /v Path" 2^>nul') do (set "office=%%b")
|
||||||
|
if exist "!office!\ospp.vbs" (
|
||||||
|
echo.
|
||||||
|
echo %line2%
|
||||||
|
echo *** Office 2013 32-bit Status ***
|
||||||
|
echo %line2%
|
||||||
|
cscript //nologo "!office!\ospp.vbs" /dstatus
|
||||||
|
)
|
||||||
|
|
||||||
|
:casVo10
|
||||||
|
set office=
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('"reg query HKLM\SOFTWARE\Microsoft\Office\14.0\Common\InstallRoot /v Path" 2^>nul') do (set "office=%%b")
|
||||||
|
if exist "!office!\ospp.vbs" (
|
||||||
|
echo.
|
||||||
|
echo %line2%
|
||||||
|
echo *** Office 2010 %_bit%-bit Status ***
|
||||||
|
echo %line2%
|
||||||
|
cscript //nologo "!office!\ospp.vbs" /dstatus
|
||||||
|
)
|
||||||
|
if %_wow%==0 goto :casVc16
|
||||||
|
set office=
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('"reg query HKLM\SOFTWARE\Wow6432Node\Microsoft\Office\14.0\Common\InstallRoot /v Path" 2^>nul') do (set "office=%%b")
|
||||||
|
if exist "!office!\ospp.vbs" (
|
||||||
|
echo.
|
||||||
|
echo %line2%
|
||||||
|
echo *** Office 2010 32-bit Status ***
|
||||||
|
echo %line2%
|
||||||
|
cscript //nologo "!office!\ospp.vbs" /dstatus
|
||||||
|
)
|
||||||
|
|
||||||
|
:casVc16
|
||||||
|
reg query HKLM\SOFTWARE\Microsoft\Office\ClickToRun /v InstallPath >nul 2>&1 || (
|
||||||
|
reg query HKLM\SOFTWARE\WOW6432Node\Microsoft\Office\ClickToRun /v InstallPath >nul 2>&1 || goto :casVc13
|
||||||
|
)
|
||||||
|
set office=
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('"reg query HKLM\SOFTWARE\Microsoft\Office\ClickToRun /v InstallPath" 2^>nul') do (set "office=%%b\Office16")
|
||||||
|
if exist "!office!\ospp.vbs" (
|
||||||
|
set _sO16vbs=1
|
||||||
|
echo.
|
||||||
|
echo %line2%
|
||||||
|
if %_sO15vbs% EQU 0 (
|
||||||
|
echo *** Office 2016-2021 C2R Status ***
|
||||||
|
) else (
|
||||||
|
echo *** Office 2013-2021 Status ***
|
||||||
|
)
|
||||||
|
echo %line2%
|
||||||
|
cscript //nologo "!office!\ospp.vbs" /dstatus
|
||||||
|
)
|
||||||
|
if %_wow%==0 goto :casVc13
|
||||||
|
set office=
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('"reg query HKLM\SOFTWARE\WOW6432Node\Microsoft\Office\ClickToRun /v InstallPath" 2^>nul') do (set "office=%%b\Office16")
|
||||||
|
if exist "!office!\ospp.vbs" (
|
||||||
|
set _sO16vbs=1
|
||||||
|
echo.
|
||||||
|
echo %line2%
|
||||||
|
if %_sO15vbs% EQU 0 (
|
||||||
|
echo *** Office 2016-2021 C2R Status ***
|
||||||
|
) else (
|
||||||
|
echo *** Office 2013-2021 Status ***
|
||||||
|
)
|
||||||
|
echo %line2%
|
||||||
|
cscript //nologo "!office!\ospp.vbs" /dstatus
|
||||||
|
)
|
||||||
|
|
||||||
|
:casVc13
|
||||||
|
if %_sO16vbs% EQU 1 goto :casVc10
|
||||||
|
reg query HKLM\SOFTWARE\Microsoft\Office\15.0\ClickToRun /v InstallPath >nul 2>&1 || (
|
||||||
|
reg query HKLM\SOFTWARE\WOW6432Node\Microsoft\Office\15.0\ClickToRun /v InstallPath >nul 2>&1 || goto :casVc10
|
||||||
|
)
|
||||||
|
set office=
|
||||||
|
if exist "%ProgramFiles%\Microsoft Office\Office15\ospp.vbs" (
|
||||||
|
set "office=%ProgramFiles%\Microsoft Office\Office15"
|
||||||
|
) else if exist "%ProgramW6432%\Microsoft Office\Office15\ospp.vbs" (
|
||||||
|
set "office=%ProgramW6432%\Microsoft Office\Office15"
|
||||||
|
) else if exist "%ProgramFiles(x86)%\Microsoft Office\Office15\ospp.vbs" (
|
||||||
|
set "office=%ProgramFiles(x86)%\Microsoft Office\Office15"
|
||||||
|
)
|
||||||
|
if exist "!office!\ospp.vbs" (
|
||||||
|
echo.
|
||||||
|
echo %line2%
|
||||||
|
echo *** Office 2013 C2R Status ***
|
||||||
|
echo %line2%
|
||||||
|
cscript //nologo "!office!\ospp.vbs" /dstatus
|
||||||
|
)
|
||||||
|
|
||||||
|
:casVc10
|
||||||
|
if %_wow%==0 reg query HKLM\SOFTWARE\Microsoft\Office\14.0\CVH /f Click2run /k >nul 2>&1 || goto :casVend
|
||||||
|
if %_wow%==1 reg query HKLM\SOFTWARE\Wow6432Node\Microsoft\Office\14.0\CVH /f Click2run /k >nul 2>&1 || goto :casVend
|
||||||
|
set office=
|
||||||
|
if exist "%ProgramFiles%\Microsoft Office\Office14\ospp.vbs" (
|
||||||
|
set "office=%ProgramFiles%\Microsoft Office\Office14"
|
||||||
|
) else if exist "%ProgramW6432%\Microsoft Office\Office14\ospp.vbs" (
|
||||||
|
set "office=%ProgramW6432%\Microsoft Office\Office14"
|
||||||
|
) else if exist "%ProgramFiles(x86)%\Microsoft Office\Office14\ospp.vbs" (
|
||||||
|
set "office=%ProgramFiles(x86)%\Microsoft Office\Office14"
|
||||||
|
)
|
||||||
|
if exist "!office!\ospp.vbs" (
|
||||||
|
echo.
|
||||||
|
echo %line2%
|
||||||
|
echo *** Office 2010 C2R Status ***
|
||||||
|
echo %line2%
|
||||||
|
cscript //nologo "!office!\ospp.vbs" /dstatus
|
||||||
|
)
|
||||||
|
|
||||||
|
:casVend
|
||||||
|
echo.
|
||||||
|
echo Press any key to exit.
|
||||||
|
pause >nul
|
||||||
|
exit /b
|
537
MAS/Separate-Files-Version/Check-Activation-Status-wmi.cmd
Normal file
537
MAS/Separate-Files-Version/Check-Activation-Status-wmi.cmd
Normal file
@ -0,0 +1,537 @@
|
|||||||
|
<!-- : Begin batch script
|
||||||
|
@setlocal DisableDelayedExpansion
|
||||||
|
@echo off
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
:: Check-Activation-Status-wmi.cmd
|
||||||
|
:: Written by @abbodi1406
|
||||||
|
:: forums.mydigitallife.net/posts/838808
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set WMI_VBS=0
|
||||||
|
@cls
|
||||||
|
set _args=
|
||||||
|
set _args=%*
|
||||||
|
for %%A in (%_args%) do (
|
||||||
|
if /i "%%A"=="-wow" set _rel1=1
|
||||||
|
if /i "%%A"=="-arm" set _rel2=1
|
||||||
|
)
|
||||||
|
set "_cmdf=%~f0"
|
||||||
|
if exist "%SystemRoot%\Sysnative\cmd.exe" if not defined _rel1 (
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
start %SystemRoot%\Sysnative\cmd.exe /c ""!_cmdf!" -wow"
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
if exist "%SystemRoot%\SysArm32\cmd.exe" if /i %PROCESSOR_ARCHITECTURE%==AMD64 if not defined _rel2 (
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
start %SystemRoot%\SysArm32\cmd.exe /c ""!_cmdf!" -arm"
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
color 07
|
||||||
|
title Check Activation Status [wmi]
|
||||||
|
set wspp=SoftwareLicensingProduct
|
||||||
|
set wsps=SoftwareLicensingService
|
||||||
|
set ospp=OfficeSoftwareProtectionProduct
|
||||||
|
set osps=OfficeSoftwareProtectionService
|
||||||
|
set winApp=55c92734-d682-4d71-983e-d6ec3f16059f
|
||||||
|
set o14App=59a52881-a989-479d-af46-f275c6370663
|
||||||
|
set o15App=0ff1ce15-a989-479d-af46-f275c6370663
|
||||||
|
for %%# in (spp_get,ospp_get,cW1nd0ws,sppw,c0ff1ce15,sppo,osppsvc,ospp14,ospp15) do set "%%#="
|
||||||
|
for /f "tokens=6 delims=[]. " %%# in ('ver') do set winbuild=%%#
|
||||||
|
set "spp_get=Description, DiscoveredKeyManagementServiceMachineName, DiscoveredKeyManagementServiceMachinePort, EvaluationEndDate, GracePeriodRemaining, ID, KeyManagementServiceMachine, KeyManagementServicePort, KeyManagementServiceProductKeyID, LicenseStatus, LicenseStatusReason, Name, PartialProductKey, ProductKeyID, VLActivationInterval, VLRenewalInterval"
|
||||||
|
set "ospp_get=%spp_get%"
|
||||||
|
if %winbuild% GEQ 9200 set "spp_get=%spp_get%, KeyManagementServiceLookupDomain, VLActivationTypeEnabled"
|
||||||
|
if %winbuild% GEQ 9600 set "spp_get=%spp_get%, DiscoveredKeyManagementServiceMachineIpAddress, ProductKeyChannel"
|
||||||
|
set "_work=%~dp0"
|
||||||
|
set "_batf=%~f0"
|
||||||
|
set "_batp=%_batf:'=''%"
|
||||||
|
set "_Local=%LocalAppData%"
|
||||||
|
set _Identity=0
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
dir /b /s /a:-d "!_Local!\Microsoft\Office\Licenses\*1*" 1>nul 2>nul && set _Identity=1
|
||||||
|
dir /b /s /a:-d "!ProgramData!\Microsoft\Office\Licenses\*1*" 1>nul 2>nul && set _Identity=1
|
||||||
|
pushd "!_work!"
|
||||||
|
setlocal DisableDelayedExpansion
|
||||||
|
if %winbuild% LSS 9200 if not exist "%SystemRoot%\servicing\Packages\Microsoft-Windows-PowerShell-WTR-Package~*.mum" set _Identity=0
|
||||||
|
|
||||||
|
set "SysPath=%SystemRoot%\System32"
|
||||||
|
set "Path=%SystemRoot%\System32;%SystemRoot%\System32\Wbem;%SystemRoot%\System32\WindowsPowerShell\v1.0\"
|
||||||
|
if exist "%SystemRoot%\Sysnative\reg.exe" (
|
||||||
|
set "SysPath=%SystemRoot%\Sysnative"
|
||||||
|
set "Path=%SystemRoot%\Sysnative;%SystemRoot%\Sysnative\Wbem;%SystemRoot%\Sysnative\WindowsPowerShell\v1.0\;%Path%"
|
||||||
|
)
|
||||||
|
|
||||||
|
:: Check LF line ending
|
||||||
|
|
||||||
|
pushd "%~dp0"
|
||||||
|
>nul findstr /rxc:".*" "%~nx0"
|
||||||
|
if not %errorlevel%==0 (
|
||||||
|
echo:
|
||||||
|
echo Error: This is not a correct file. It has LF line ending issue.
|
||||||
|
echo:
|
||||||
|
ping 127.0.0.1 -n 6 > nul
|
||||||
|
popd
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
popd
|
||||||
|
|
||||||
|
set _cwmi=0
|
||||||
|
for %%# in (wmic.exe) do @if not "%%~$PATH:#"=="" (
|
||||||
|
wmic path Win32_ComputerSystem get CreationClassName /value 2>nul | find /i "ComputerSystem" 1>nul && set _cwmi=1
|
||||||
|
)
|
||||||
|
|
||||||
|
if %_cwmi% EQU 0 (
|
||||||
|
echo:
|
||||||
|
echo Error: wmic.exe is not responding in the system.
|
||||||
|
echo:
|
||||||
|
echo Press any key to exit...
|
||||||
|
pause >nul
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
|
||||||
|
set "line2=************************************************************"
|
||||||
|
set "line3=____________________________________________________________"
|
||||||
|
set "_psc=powershell"
|
||||||
|
|
||||||
|
set _prsh=1
|
||||||
|
for %%# in (powershell.exe) do @if "%%~$PATH:#"=="" set _prsh=0
|
||||||
|
set "_csg=cscript.exe //NoLogo //Job:WmiMulti "%~nx0?.wsf""
|
||||||
|
set "_csq=cscript.exe //NoLogo //Job:WmiQuery "%~nx0?.wsf""
|
||||||
|
set "_csx=cscript.exe //NoLogo //Job:XPDT "%~nx0?.wsf""
|
||||||
|
if %_cwmi% EQU 0 set WMI_VBS=1
|
||||||
|
if %WMI_VBS% EQU 0 (
|
||||||
|
set "_zz1=wmic path"
|
||||||
|
set "_zz2=where"
|
||||||
|
set "_zz3=get"
|
||||||
|
set "_zz4=/value"
|
||||||
|
set "_zz5=("
|
||||||
|
set "_zz6=)"
|
||||||
|
set "_zz7="wmic path"
|
||||||
|
set "_zz8=/value""
|
||||||
|
) else (
|
||||||
|
set "_zz1=%_csq%"
|
||||||
|
set "_zz2="
|
||||||
|
set "_zz3="
|
||||||
|
set "_zz4="
|
||||||
|
set "_zz5=""
|
||||||
|
set "_zz6=""
|
||||||
|
set "_zz7=%_csq%"
|
||||||
|
set "_zz8="
|
||||||
|
)
|
||||||
|
set _WSH=0
|
||||||
|
set OsppHook=1
|
||||||
|
sc query osppsvc >nul 2>&1
|
||||||
|
if %errorlevel% EQU 1060 set OsppHook=0
|
||||||
|
|
||||||
|
net start sppsvc /y >nul 2>&1
|
||||||
|
call :casWpkey %wspp% %winApp% cW1nd0ws sppw
|
||||||
|
if %winbuild% GEQ 9200 call :casWpkey %wspp% %o15App% c0ff1ce15 sppo
|
||||||
|
if %OsppHook% NEQ 0 (
|
||||||
|
net start osppsvc /y >nul 2>&1
|
||||||
|
call :casWpkey %ospp% %o14App% osppsvc ospp14
|
||||||
|
if %winbuild% LSS 9200 call :casWpkey %ospp% %o15App% osppsvc ospp15
|
||||||
|
)
|
||||||
|
|
||||||
|
echo %line2%
|
||||||
|
echo *** Windows Status ***
|
||||||
|
echo %line2%
|
||||||
|
if not defined cW1nd0ws (
|
||||||
|
echo.
|
||||||
|
echo Error: product key not found.
|
||||||
|
goto :casWcon
|
||||||
|
)
|
||||||
|
set winID=1
|
||||||
|
set "_qr=%_zz7% %wspp% %_zz2% %_zz5%ApplicationID='%winApp%' and PartialProductKey is not null%_zz6% %_zz3% ID %_zz8%"
|
||||||
|
for /f "tokens=2 delims==" %%# in ('%_qr%') do (
|
||||||
|
set "chkID=%%#"
|
||||||
|
call :casWdet "%wspp%" "%wsps%" "%spp_get%"
|
||||||
|
call :casWout
|
||||||
|
echo %line3%
|
||||||
|
echo.
|
||||||
|
)
|
||||||
|
|
||||||
|
:casWcon
|
||||||
|
set winID=0
|
||||||
|
set verbose=1
|
||||||
|
if not defined c0ff1ce15 (
|
||||||
|
if defined osppsvc goto :casWospp
|
||||||
|
goto :casWend
|
||||||
|
)
|
||||||
|
echo %line2%
|
||||||
|
echo *** Office Status ***
|
||||||
|
echo %line2%
|
||||||
|
set "_qr=%_zz7% %wspp% %_zz2% %_zz5%ApplicationID='%o15App%' and PartialProductKey is not null%_zz6% %_zz3% ID %_zz8%"
|
||||||
|
for /f "tokens=2 delims==" %%# in ('%_qr%') do (
|
||||||
|
set "chkID=%%#"
|
||||||
|
call :casWdet "%wspp%" "%wsps%" "%spp_get%"
|
||||||
|
call :casWout
|
||||||
|
echo %line3%
|
||||||
|
echo.
|
||||||
|
)
|
||||||
|
set verbose=0
|
||||||
|
if defined osppsvc goto :casWospp
|
||||||
|
goto :casWend
|
||||||
|
|
||||||
|
:casWospp
|
||||||
|
if %verbose% EQU 1 (
|
||||||
|
echo %line2%
|
||||||
|
echo *** Office Status ***
|
||||||
|
echo %line2%
|
||||||
|
)
|
||||||
|
set "_qr=%_zz7% %ospp% %_zz2% %_zz5%ApplicationID='%o15App%' and PartialProductKey is not null%_zz6% %_zz3% ID %_zz8%"
|
||||||
|
if defined ospp15 for /f "tokens=2 delims==" %%# in ('%_qr%') do (
|
||||||
|
set "chkID=%%#"
|
||||||
|
call :casWdet "%ospp%" "%osps%" "%ospp_get%"
|
||||||
|
call :casWout
|
||||||
|
echo %line3%
|
||||||
|
echo.
|
||||||
|
)
|
||||||
|
set "_qr=%_zz7% %ospp% %_zz2% %_zz5%ApplicationID='%o14App%' and PartialProductKey is not null%_zz6% %_zz3% ID %_zz8%"
|
||||||
|
if defined ospp14 for /f "tokens=2 delims==" %%# in ('%_qr%') do (
|
||||||
|
set "chkID=%%#"
|
||||||
|
call :casWdet "%ospp%" "%osps%" "%ospp_get%"
|
||||||
|
call :casWout
|
||||||
|
echo %line3%
|
||||||
|
echo.
|
||||||
|
)
|
||||||
|
goto :casWend
|
||||||
|
|
||||||
|
:casWpkey
|
||||||
|
set "_qr=%_zz1% %1 %_zz2% %_zz5%ApplicationID='%2' and PartialProductKey is not null%_zz6% %_zz3% ID %_zz4%"
|
||||||
|
%_qr% 2>nul | findstr /i ID 1>nul && (set %3=1&set %4=1)
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
:casWdet
|
||||||
|
for %%# in (%~3) do set "%%#="
|
||||||
|
if /i %~1==%ospp% for %%# in (DiscoveredKeyManagementServiceMachineIpAddress, KeyManagementServiceLookupDomain, ProductKeyChannel, VLActivationTypeEnabled) do set "%%#="
|
||||||
|
set "cKmsClient="
|
||||||
|
set "cTblClient="
|
||||||
|
set "cAvmClient="
|
||||||
|
set "ExpireMsg="
|
||||||
|
set "_xpr="
|
||||||
|
set "_qr="wmic path %~1 where ID='%chkID%' get %~3 /value" ^| findstr ^="
|
||||||
|
if %WMI_VBS% NEQ 0 set "_qr=%_csg% %~1 "ID='%chkID%'" "%~3""
|
||||||
|
for /f "tokens=* delims=" %%# in ('%_qr%') do set "%%#"
|
||||||
|
|
||||||
|
set /a _gpr=(GracePeriodRemaining+1440-1)/1440
|
||||||
|
echo %Description%| findstr /i VOLUME_KMSCLIENT 1>nul && (set cKmsClient=1&set _mTag=Volume)
|
||||||
|
echo %Description%| findstr /i TIMEBASED_ 1>nul && (set cTblClient=1&set _mTag=Timebased)
|
||||||
|
echo %Description%| findstr /i VIRTUAL_MACHINE_ACTIVATION 1>nul && (set cAvmClient=1&set _mTag=Automatic VM)
|
||||||
|
cmd /c exit /b %LicenseStatusReason%
|
||||||
|
set "LicenseReason=%=ExitCode%"
|
||||||
|
set "LicenseMsg=Time remaining: %GracePeriodRemaining% minute(s) (%_gpr% day(s))"
|
||||||
|
if %_gpr% GEQ 1 if %_WSH% EQU 1 (
|
||||||
|
for /f "tokens=* delims=" %%# in ('%_csx% %GracePeriodRemaining%') do set "_xpr=%%#"
|
||||||
|
)
|
||||||
|
if %_gpr% GEQ 1 if %_prsh% EQU 1 if not defined _xpr (
|
||||||
|
for /f "tokens=* delims=" %%# in ('%_psc% "$([DateTime]::Now.addMinutes(%GracePeriodRemaining%)).ToString('yyyy-MM-dd HH:mm:ss')" 2^>nul') do set "_xpr=%%#"
|
||||||
|
title Check Activation Status [wmi]
|
||||||
|
)
|
||||||
|
|
||||||
|
if %LicenseStatus% EQU 0 (
|
||||||
|
set "License=Unlicensed"
|
||||||
|
set "LicenseMsg="
|
||||||
|
)
|
||||||
|
if %LicenseStatus% EQU 1 (
|
||||||
|
set "License=Licensed"
|
||||||
|
set "LicenseMsg="
|
||||||
|
if %GracePeriodRemaining% EQU 0 (
|
||||||
|
if %winID% EQU 1 (set "ExpireMsg=The machine is permanently activated.") else (set "ExpireMsg=The product is permanently activated.")
|
||||||
|
) else (
|
||||||
|
set "LicenseMsg=%_mTag% activation expiration: %GracePeriodRemaining% minute(s) (%_gpr% day(s))"
|
||||||
|
if defined _xpr set "ExpireMsg=%_mTag% activation will expire %_xpr%"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
if %LicenseStatus% EQU 2 (
|
||||||
|
set "License=Initial grace period"
|
||||||
|
if defined _xpr set "ExpireMsg=Initial grace period ends %_xpr%"
|
||||||
|
)
|
||||||
|
if %LicenseStatus% EQU 3 (
|
||||||
|
set "License=Additional grace period (KMS license expired or hardware out of tolerance)"
|
||||||
|
if defined _xpr set "ExpireMsg=Additional grace period ends %_xpr%"
|
||||||
|
)
|
||||||
|
if %LicenseStatus% EQU 4 (
|
||||||
|
set "License=Non-genuine grace period."
|
||||||
|
if defined _xpr set "ExpireMsg=Non-genuine grace period ends %_xpr%"
|
||||||
|
)
|
||||||
|
if %LicenseStatus% EQU 6 (
|
||||||
|
set "License=Extended grace period"
|
||||||
|
if defined _xpr set "ExpireMsg=Extended grace period ends %_xpr%"
|
||||||
|
)
|
||||||
|
if %LicenseStatus% EQU 5 (
|
||||||
|
set "License=Notification"
|
||||||
|
if "%LicenseReason%"=="C004F200" (set "LicenseMsg=Notification Reason: 0xC004F200 (non-genuine)."
|
||||||
|
) else if "%LicenseReason%"=="C004F009" (set "LicenseMsg=Notification Reason: 0xC004F009 (grace time expired)."
|
||||||
|
) else (set "LicenseMsg=Notification Reason: 0x%LicenseReason%"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
if %LicenseStatus% GTR 6 (
|
||||||
|
set "License=Unknown"
|
||||||
|
set "LicenseMsg="
|
||||||
|
)
|
||||||
|
if not defined cKmsClient exit /b
|
||||||
|
|
||||||
|
if %KeyManagementServicePort%==0 set KeyManagementServicePort=1688
|
||||||
|
set "KmsReg=Registered KMS machine name: %KeyManagementServiceMachine%:%KeyManagementServicePort%"
|
||||||
|
if "%KeyManagementServiceMachine%"=="" set "KmsReg=Registered KMS machine name: KMS name not available"
|
||||||
|
|
||||||
|
if %DiscoveredKeyManagementServiceMachinePort%==0 set DiscoveredKeyManagementServiceMachinePort=1688
|
||||||
|
set "KmsDns=KMS machine name from DNS: %DiscoveredKeyManagementServiceMachineName%:%DiscoveredKeyManagementServiceMachinePort%"
|
||||||
|
if "%DiscoveredKeyManagementServiceMachineName%"=="" set "KmsDns=DNS auto-discovery: KMS name not available"
|
||||||
|
|
||||||
|
set "_qr="wmic path %~2 get ClientMachineID, KeyManagementServiceHostCaching /value" ^| findstr ^="
|
||||||
|
if %WMI_VBS% NEQ 0 set "_qr=%_csg% %~2 "ClientMachineID, KeyManagementServiceHostCaching""
|
||||||
|
for /f "tokens=* delims=" %%# in ('%_qr%') do set "%%#"
|
||||||
|
if /i %KeyManagementServiceHostCaching%==True (set KeyManagementServiceHostCaching=Enabled) else (set KeyManagementServiceHostCaching=Disabled)
|
||||||
|
|
||||||
|
if %winbuild% LSS 9200 exit /b
|
||||||
|
if /i %~1==%ospp% exit /b
|
||||||
|
|
||||||
|
if "%KeyManagementServiceLookupDomain%"=="" set "KeyManagementServiceLookupDomain="
|
||||||
|
|
||||||
|
if %VLActivationTypeEnabled% EQU 3 (
|
||||||
|
set VLActivationType=Token
|
||||||
|
) else if %VLActivationTypeEnabled% EQU 2 (
|
||||||
|
set VLActivationType=KMS
|
||||||
|
) else if %VLActivationTypeEnabled% EQU 1 (
|
||||||
|
set VLActivationType=AD
|
||||||
|
) else (
|
||||||
|
set VLActivationType=All
|
||||||
|
)
|
||||||
|
|
||||||
|
if %winbuild% LSS 9600 exit /b
|
||||||
|
if "%DiscoveredKeyManagementServiceMachineIpAddress%"=="" set "DiscoveredKeyManagementServiceMachineIpAddress=not available"
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
:casWout
|
||||||
|
echo.
|
||||||
|
echo Name: %Name%
|
||||||
|
echo Description: %Description%
|
||||||
|
echo Activation ID: %ID%
|
||||||
|
echo Extended PID: %ProductKeyID%
|
||||||
|
if defined ProductKeyChannel echo Product Key Channel: %ProductKeyChannel%
|
||||||
|
echo Partial Product Key: %PartialProductKey%
|
||||||
|
echo License Status: %License%
|
||||||
|
if defined LicenseMsg echo %LicenseMsg%
|
||||||
|
if not %LicenseStatus%==0 if not %EvaluationEndDate:~0,8%==16010101 echo Evaluation End Date: %EvaluationEndDate:~0,4%-%EvaluationEndDate:~4,2%-%EvaluationEndDate:~6,2% %EvaluationEndDate:~8,2%:%EvaluationEndDate:~10,2% UTC
|
||||||
|
if not defined cKmsClient (
|
||||||
|
if defined ExpireMsg echo.&echo. %ExpireMsg%
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
if defined VLActivationTypeEnabled echo Configured Activation Type: %VLActivationType%
|
||||||
|
echo.
|
||||||
|
if not %LicenseStatus%==1 (
|
||||||
|
echo Please activate the product in order to update KMS client information values.
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
echo Most recent activation information:
|
||||||
|
echo Key Management Service client information
|
||||||
|
echo. Client Machine ID (CMID): %ClientMachineID%
|
||||||
|
echo. %KmsDns%
|
||||||
|
echo. %KmsReg%
|
||||||
|
if defined DiscoveredKeyManagementServiceMachineIpAddress echo. KMS machine IP address: %DiscoveredKeyManagementServiceMachineIpAddress%
|
||||||
|
echo. KMS machine extended PID: %KeyManagementServiceProductKeyID%
|
||||||
|
echo. Activation interval: %VLActivationInterval% minutes
|
||||||
|
echo. Renewal interval: %VLRenewalInterval% minutes
|
||||||
|
echo. KMS host caching: %KeyManagementServiceHostCaching%
|
||||||
|
if defined KeyManagementServiceLookupDomain echo. KMS SRV record lookup domain: %KeyManagementServiceLookupDomain%
|
||||||
|
if defined ExpireMsg echo.&echo. %ExpireMsg%
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
:casWend
|
||||||
|
if %_Identity% EQU 1 if %_prsh% EQU 1 (
|
||||||
|
echo %line2%
|
||||||
|
echo *** Office vNext Status ***
|
||||||
|
echo %line2%
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
%_psc% "$f=[IO.File]::ReadAllText('!_batp!') -split ':vNextDiag\:.*';iex ($f[1])"
|
||||||
|
title Check Activation Status [wmi]
|
||||||
|
echo %line3%
|
||||||
|
echo.
|
||||||
|
)
|
||||||
|
echo.
|
||||||
|
echo Press any key to exit.
|
||||||
|
pause >nul
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
:vNextDiag:
|
||||||
|
function PrintModePerPridFromRegistry
|
||||||
|
{
|
||||||
|
$vNextRegkey = "HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Licensing\LicensingNext"
|
||||||
|
$vNextPrids = Get-Item -Path $vNextRegkey -ErrorAction Ignore | Select-Object -ExpandProperty 'property' | Where-Object -FilterScript {$_.ToLower() -like "*retail" -or $_.ToLower() -like "*volume"}
|
||||||
|
If ($vNextPrids -Eq $null)
|
||||||
|
{
|
||||||
|
Write-Host "No registry keys found."
|
||||||
|
Return
|
||||||
|
}
|
||||||
|
$vNextPrids | ForEach `
|
||||||
|
{
|
||||||
|
$mode = (Get-ItemProperty -Path $vNextRegkey -Name $_).$_
|
||||||
|
Switch ($mode)
|
||||||
|
{
|
||||||
|
2 { $mode = "vNext"; Break }
|
||||||
|
3 { $mode = "Device"; Break }
|
||||||
|
Default { $mode = "Legacy"; Break }
|
||||||
|
}
|
||||||
|
Write-Host $_ = $mode
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function PrintSharedComputerLicensing
|
||||||
|
{
|
||||||
|
$scaRegKey = "HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\Configuration"
|
||||||
|
$scaValue = Get-ItemProperty -Path $scaRegKey -ErrorAction Ignore | Select-Object -ExpandProperty "SharedComputerLicensing" -ErrorAction Ignore
|
||||||
|
$scaRegKey2 = "HKLM:\SOFTWARE\Microsoft\Office\16.0\Common\Licensing"
|
||||||
|
$scaValue2 = Get-ItemProperty -Path $scaRegKey2 -ErrorAction Ignore | Select-Object -ExpandProperty "SharedComputerLicensing" -ErrorAction Ignore
|
||||||
|
$scaPolicyKey = "HKLM:\SOFTWARE\Policies\Microsoft\Office\16.0\Common\Licensing"
|
||||||
|
$scaPolicyValue = Get-ItemProperty -Path $scaPolicyKey -ErrorAction Ignore | Select-Object -ExpandProperty "SharedComputerLicensing" -ErrorAction Ignore
|
||||||
|
If ($scaValue -Eq $null -And $scaValue2 -Eq $null -And $scaPolicyValue -Eq $null)
|
||||||
|
{
|
||||||
|
Write-Host "No registry keys found."
|
||||||
|
Return
|
||||||
|
}
|
||||||
|
$scaModeValue = $scaValue -Or $scaValue2 -Or $scaPolicyValue
|
||||||
|
If ($scaModeValue -Eq 0)
|
||||||
|
{
|
||||||
|
$scaMode = "Disabled"
|
||||||
|
}
|
||||||
|
If ($scaModeValue -Eq 1)
|
||||||
|
{
|
||||||
|
$scaMode = "Enabled"
|
||||||
|
}
|
||||||
|
Write-Host "SharedComputerLicensing" = $scaMode
|
||||||
|
Write-Host
|
||||||
|
$tokenFiles = $null
|
||||||
|
$tokenPath = "${env:LOCALAPPDATA}\Microsoft\Office\16.0\Licensing"
|
||||||
|
If (Test-Path $tokenPath)
|
||||||
|
{
|
||||||
|
$tokenFiles = Get-ChildItem -Path $tokenPath -Recurse -File -Filter "*authString*"
|
||||||
|
}
|
||||||
|
If ($tokenFiles.length -Eq 0)
|
||||||
|
{
|
||||||
|
Write-Host "No tokens found."
|
||||||
|
Return
|
||||||
|
}
|
||||||
|
$tokenFiles | ForEach `
|
||||||
|
{
|
||||||
|
$tokenParts = (Get-Content -Encoding Unicode -Path $_.FullName).Split('_')
|
||||||
|
$output = [PSCustomObject] `
|
||||||
|
@{
|
||||||
|
ACID = $tokenParts[0];
|
||||||
|
User = $tokenParts[3]
|
||||||
|
NotBefore = $tokenParts[4];
|
||||||
|
NotAfter = $tokenParts[5];
|
||||||
|
} | ConvertTo-Json
|
||||||
|
Write-Host $output
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function PrintLicensesInformation
|
||||||
|
{
|
||||||
|
Param(
|
||||||
|
[ValidateSet("NUL", "Device")]
|
||||||
|
[String]$mode
|
||||||
|
)
|
||||||
|
If ($mode -Eq "NUL")
|
||||||
|
{
|
||||||
|
$licensePath = "${env:LOCALAPPDATA}\Microsoft\Office\Licenses"
|
||||||
|
}
|
||||||
|
ElseIf ($mode -Eq "Device")
|
||||||
|
{
|
||||||
|
$licensePath = "${env:PROGRAMDATA}\Microsoft\Office\Licenses"
|
||||||
|
}
|
||||||
|
$licenseFiles = $null
|
||||||
|
If (Test-Path $licensePath)
|
||||||
|
{
|
||||||
|
$licenseFiles = Get-ChildItem -Path $licensePath -Recurse -File
|
||||||
|
}
|
||||||
|
If ($licenseFiles.length -Eq 0)
|
||||||
|
{
|
||||||
|
Write-Host "No licenses found."
|
||||||
|
Return
|
||||||
|
}
|
||||||
|
$licenseFiles | ForEach `
|
||||||
|
{
|
||||||
|
$license = (Get-Content -Encoding Unicode $_.FullName | ConvertFrom-Json).License
|
||||||
|
$decodedLicense = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($license)) | ConvertFrom-Json
|
||||||
|
$licenseType = $decodedLicense.LicenseType
|
||||||
|
If ($null -Ne $decodedLicense.ExpiresOn)
|
||||||
|
{
|
||||||
|
$expiry = [DateTime]::Parse($decodedLicense.ExpiresOn, $null, 48)
|
||||||
|
}
|
||||||
|
Else
|
||||||
|
{
|
||||||
|
$expiry = New-Object DateTime
|
||||||
|
}
|
||||||
|
$licenseState = $null
|
||||||
|
If ((Get-Date) -Gt (Get-Date $decodedLicense.MetaData.NotAfter))
|
||||||
|
{
|
||||||
|
$licenseState = "RFM"
|
||||||
|
}
|
||||||
|
ElseIf ((Get-Date) -Lt (Get-Date $expiry))
|
||||||
|
{
|
||||||
|
$licenseState = "Licensed"
|
||||||
|
}
|
||||||
|
Else
|
||||||
|
{
|
||||||
|
$licenseState = "Grace"
|
||||||
|
}
|
||||||
|
if ($mode -Eq "NUL")
|
||||||
|
{
|
||||||
|
$output = [PSCustomObject] `
|
||||||
|
@{
|
||||||
|
Version = $_.Directory.Name
|
||||||
|
Type = "User|${licenseType}";
|
||||||
|
Product = $decodedLicense.ProductReleaseId;
|
||||||
|
Acid = $decodedLicense.Acid;
|
||||||
|
LicenseState = $licenseState;
|
||||||
|
EntitlementStatus = $decodedLicense.Status;
|
||||||
|
EntitlementExpiration = $decodedLicense.ExpiresOn;
|
||||||
|
ReasonCode = $decodedLicense.ReasonCode;
|
||||||
|
NotBefore = $decodedLicense.Metadata.NotBefore;
|
||||||
|
NotAfter = $decodedLicense.Metadata.NotAfter;
|
||||||
|
NextRenewal = $decodedLicense.Metadata.RenewAfter;
|
||||||
|
TenantId = $decodedLicense.Metadata.TenantId;
|
||||||
|
} | ConvertTo-Json
|
||||||
|
}
|
||||||
|
ElseIf ($mode -Eq "Device")
|
||||||
|
{
|
||||||
|
$output = [PSCustomObject] `
|
||||||
|
@{
|
||||||
|
Version = $_.Directory.Name
|
||||||
|
Type = "Device|${licenseType}";
|
||||||
|
Product = $decodedLicense.ProductReleaseId;
|
||||||
|
Acid = $decodedLicense.Acid;
|
||||||
|
DeviceId = $decodedLicense.Metadata.DeviceId;
|
||||||
|
LicenseState = $licenseState;
|
||||||
|
EntitlementStatus = $decodedLicense.Status;
|
||||||
|
EntitlementExpiration = $decodedLicense.ExpiresOn;
|
||||||
|
ReasonCode = $decodedLicense.ReasonCode;
|
||||||
|
NotBefore = $decodedLicense.Metadata.NotBefore;
|
||||||
|
NotAfter = $decodedLicense.Metadata.NotAfter;
|
||||||
|
NextRenewal = $decodedLicense.Metadata.RenewAfter;
|
||||||
|
TenantId = $decodedLicense.Metadata.TenantId;
|
||||||
|
} | ConvertTo-Json
|
||||||
|
}
|
||||||
|
Write-Output $output
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Write-Host
|
||||||
|
Write-Host "========== Mode per ProductReleaseId =========="
|
||||||
|
Write-Host
|
||||||
|
PrintModePerPridFromRegistry
|
||||||
|
Write-Host
|
||||||
|
Write-Host "========== Shared Computer Licensing =========="
|
||||||
|
Write-Host
|
||||||
|
PrintSharedComputerLicensing
|
||||||
|
Write-Host
|
||||||
|
Write-Host "========== vNext licenses =========="
|
||||||
|
Write-Host
|
||||||
|
PrintLicensesInformation -Mode "NUL"
|
||||||
|
Write-Host
|
||||||
|
Write-Host "========== Device licenses =========="
|
||||||
|
Write-Host
|
||||||
|
PrintLicensesInformation -Mode "Device"
|
||||||
|
:vNextDiag:
|
||||||
|
::===================================================
|
472
MAS/Separate-Files-Version/Extract_OEM_Folder.cmd
Normal file
472
MAS/Separate-Files-Version/Extract_OEM_Folder.cmd
Normal file
@ -0,0 +1,472 @@
|
|||||||
|
@setlocal DisableDelayedExpansion
|
||||||
|
@echo off
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
::============================================================================
|
||||||
|
::
|
||||||
|
:: This script is a part of 'Microsoft Activation Scripts' (MAS) project.
|
||||||
|
::
|
||||||
|
:: Homepage: massgrave.dev
|
||||||
|
:: Email: windowsaddict@protonmail.com
|
||||||
|
::
|
||||||
|
::============================================================================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Re-launch the script with x64 process if it was initiated by x86 process on x64 bit Windows
|
||||||
|
:: or with ARM64 process if it was initiated by x86/ARM32 process on ARM64 Windows
|
||||||
|
|
||||||
|
set "_cmdf=%~f0"
|
||||||
|
for %%# in (%*) do (
|
||||||
|
if /i "%%#"=="r1" set r1=1
|
||||||
|
if /i "%%#"=="r2" set r2=1
|
||||||
|
)
|
||||||
|
|
||||||
|
if exist %SystemRoot%\Sysnative\cmd.exe if not defined r1 (
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
start %SystemRoot%\Sysnative\cmd.exe /c ""!_cmdf!" %* r1"
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
|
||||||
|
:: Re-launch the script with ARM32 process if it was initiated by x64 process on ARM64 Windows
|
||||||
|
|
||||||
|
if exist %SystemRoot%\SysArm32\cmd.exe if %PROCESSOR_ARCHITECTURE%==AMD64 if not defined r2 (
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
start %SystemRoot%\SysArm32\cmd.exe /c ""!_cmdf!" %* r2"
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
|
||||||
|
:: Set Path variable, it helps if it is misconfigured in the system
|
||||||
|
|
||||||
|
set "PATH=%SystemRoot%\System32;%SystemRoot%\System32\wbem;%SystemRoot%\System32\WindowsPowerShell\v1.0\"
|
||||||
|
if exist "%SystemRoot%\Sysnative\reg.exe" (
|
||||||
|
set "PATH=%SystemRoot%\Sysnative;%SystemRoot%\Sysnative\wbem;%SystemRoot%\Sysnative\WindowsPowerShell\v1.0\;%PATH%"
|
||||||
|
)
|
||||||
|
|
||||||
|
:: Check LF line ending
|
||||||
|
|
||||||
|
pushd "%~dp0"
|
||||||
|
>nul findstr /rxc:".*" "%~nx0"
|
||||||
|
if not %errorlevel%==0 (
|
||||||
|
echo:
|
||||||
|
echo Error: This is not a correct file. It has LF line ending issue.
|
||||||
|
echo:
|
||||||
|
ping 127.0.0.1 -n 6 > nul
|
||||||
|
popd
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
popd
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
cls
|
||||||
|
color 07
|
||||||
|
title Extract $OEM$ Folder
|
||||||
|
|
||||||
|
set winbuild=1
|
||||||
|
set "nul=>nul 2>&1"
|
||||||
|
set psc=powershell.exe
|
||||||
|
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
||||||
|
|
||||||
|
set _NCS=1
|
||||||
|
if %winbuild% LSS 10586 set _NCS=0
|
||||||
|
if %winbuild% GEQ 10586 reg query "HKCU\Console" /v ForceV2 2>nul | find /i "0x0" 1>nul && (set _NCS=0)
|
||||||
|
|
||||||
|
if %_NCS% EQU 1 (
|
||||||
|
for /F %%a in ('echo prompt $E ^| cmd') do set "esc=%%a"
|
||||||
|
set "Red="41;97m""
|
||||||
|
set "Green="42;97m""
|
||||||
|
set "Magenta="45;97m""
|
||||||
|
set "_White="40;37m""
|
||||||
|
set "_Green="40;92m""
|
||||||
|
set "_Yellow="40;93m""
|
||||||
|
) else (
|
||||||
|
set "Red="Red" "white""
|
||||||
|
set "Green="DarkGreen" "white""
|
||||||
|
set "Magenta="Darkmagenta" "white""
|
||||||
|
set "_White="Black" "Gray""
|
||||||
|
set "_Green="Black" "Green""
|
||||||
|
set "_Yellow="Black" "Yellow""
|
||||||
|
)
|
||||||
|
|
||||||
|
set "nceline=echo: &echo ==== ERROR ==== &echo:"
|
||||||
|
set "eline=echo: &call :ex_color %Red% "==== ERROR ====" &echo:"
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
if %winbuild% LSS 7600 (
|
||||||
|
%nceline%
|
||||||
|
echo Unsupported OS version detected.
|
||||||
|
echo Project is supported only for Windows 7/8/8.1/10/11 and their Server equivalent.
|
||||||
|
goto done2
|
||||||
|
)
|
||||||
|
|
||||||
|
for %%# in (powershell.exe) do @if "%%~$PATH:#"=="" (
|
||||||
|
%nceline%
|
||||||
|
echo Unable to find powershell.exe in the system.
|
||||||
|
goto done2
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Fix for the special characters limitation in path name
|
||||||
|
|
||||||
|
set desktop=
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v Desktop') do call set "desktop=%%b"
|
||||||
|
if not defined desktop for /f "delims=" %%a in ('%psc% "& {write-host $([Environment]::GetFolderPath('Desktop'))}"') do call set "desktop=%%a"
|
||||||
|
|
||||||
|
set "_work=%~dp0"
|
||||||
|
if "%_work:~-1%"=="\" set "_work=%_work:~0,-1%"
|
||||||
|
|
||||||
|
set "_batf=%~f0"
|
||||||
|
set "_batp=%_batf:'=''%"
|
||||||
|
set "_pdesk=%desktop:'=''%"
|
||||||
|
|
||||||
|
set _PSarg="""%~f0""" -el %_args%
|
||||||
|
set "_ttemp=%temp%"
|
||||||
|
|
||||||
|
set "_dir=%desktop%\$OEM$\$$\Setup\Scripts"
|
||||||
|
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
echo "!_batf!" | find /i "!_ttemp!" 1>nul && (
|
||||||
|
if /i not "!_work!"=="!_ttemp!" (
|
||||||
|
%eline%
|
||||||
|
echo Script is launched from the temp folder,
|
||||||
|
echo Most likely you are running the script directly from the archive file.
|
||||||
|
echo:
|
||||||
|
echo Extract the archive file and launch the script from the extracted folder.
|
||||||
|
goto done2
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Elevate script as admin and pass arguments and preventing loop
|
||||||
|
|
||||||
|
>nul fltmc || (
|
||||||
|
if not defined _elev %nul% %psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && exit /b
|
||||||
|
%eline%
|
||||||
|
echo This script require administrator privileges.
|
||||||
|
echo To do so, right click on this script and select 'Run as administrator'.
|
||||||
|
goto done2
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
if not exist "!desktop!\" (
|
||||||
|
%eline%
|
||||||
|
echo Desktop location was not detected, aborting...
|
||||||
|
goto done2
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
mode 66, 26
|
||||||
|
|
||||||
|
if exist "!desktop!\$OEM$\" (
|
||||||
|
echo _____________________________________________________
|
||||||
|
%eline%
|
||||||
|
echo $OEM$ folder already exists on the Desktop.
|
||||||
|
echo _____________________________________________________
|
||||||
|
goto done2
|
||||||
|
)
|
||||||
|
|
||||||
|
set HWID_Activation.cmd=HWID-KMS38_Activation\HWID_Activation.cmd
|
||||||
|
set KMS38_Activation.cmd=HWID-KMS38_Activation\KMS38_Activation.cmd
|
||||||
|
|
||||||
|
set Activate.cmd=Online_KMS_Activation\Activate.cmd
|
||||||
|
set cleanosppx64.exe=Online_KMS_Activation\BIN\cleanosppx64.exe
|
||||||
|
set cleanosppx86.exe=Online_KMS_Activation\BIN\cleanosppx86.exe
|
||||||
|
|
||||||
|
pushd "!_work!"
|
||||||
|
|
||||||
|
set _nofile=
|
||||||
|
for %%# in (
|
||||||
|
%HWID_Activation.cmd%
|
||||||
|
%KMS38_Activation.cmd%
|
||||||
|
%Activate.cmd%
|
||||||
|
%cleanosppx64.exe%
|
||||||
|
%cleanosppx86.exe%
|
||||||
|
) do (
|
||||||
|
if not exist "%%#" set _nofile=1
|
||||||
|
)
|
||||||
|
|
||||||
|
popd
|
||||||
|
|
||||||
|
if defined _nofile (
|
||||||
|
echo _____________________________________________________
|
||||||
|
%eline%
|
||||||
|
echo Some files are missing in the 'Activators' folder.
|
||||||
|
echo _____________________________________________________
|
||||||
|
goto done2
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:Menu
|
||||||
|
|
||||||
|
cls
|
||||||
|
echo:
|
||||||
|
echo:
|
||||||
|
echo:
|
||||||
|
echo:
|
||||||
|
echo: Extract $OEM$ folder on the desktop
|
||||||
|
echo: ________________________________________________________
|
||||||
|
echo:
|
||||||
|
echo: [1] HWID
|
||||||
|
echo: [2] KMS38
|
||||||
|
echo: [3] Online KMS
|
||||||
|
echo:
|
||||||
|
echo: [4] HWID ^(Windows^) ^+ Online KMS ^(Office^)
|
||||||
|
echo: [5] KMS38 ^(Windows^) ^+ Online KMS ^(Office^)
|
||||||
|
echo:
|
||||||
|
echo: [0] Exit
|
||||||
|
echo: ________________________________________________________
|
||||||
|
echo:
|
||||||
|
call :ex_color2 %_White% " " %_Green% "Enter a menu option in the Keyboard [1,2,3,4,5,0]"
|
||||||
|
choice /C:123450 /N
|
||||||
|
set _erl=%errorlevel%
|
||||||
|
|
||||||
|
if %_erl%==6 exit /b
|
||||||
|
if %_erl%==5 goto:kms38_kms
|
||||||
|
if %_erl%==4 goto:hwid_kms
|
||||||
|
if %_erl%==3 goto:kms
|
||||||
|
if %_erl%==2 goto:kms38
|
||||||
|
if %_erl%==1 goto:hwid
|
||||||
|
goto :Menu
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:hwid
|
||||||
|
|
||||||
|
cls
|
||||||
|
md "!desktop!\$OEM$\$$\Setup\Scripts"
|
||||||
|
pushd "!_work!"
|
||||||
|
copy /y /b "%HWID_Activation.cmd%" "!_dir!\HWID_Activation.cmd" %nul%
|
||||||
|
popd
|
||||||
|
call :export hwid_setup
|
||||||
|
|
||||||
|
set _error=
|
||||||
|
if not exist "!_dir!\HWID_Activation.cmd" set _error=1
|
||||||
|
if not exist "!_dir!\SetupComplete.cmd" set _error=1
|
||||||
|
if defined _error goto errorfound
|
||||||
|
|
||||||
|
set oem=HWID
|
||||||
|
goto done
|
||||||
|
|
||||||
|
:hwid_setup:
|
||||||
|
@echo off
|
||||||
|
|
||||||
|
fltmc >nul || exit /b
|
||||||
|
|
||||||
|
start /b /wait cmd /c "%~dp0HWID_Activation.cmd" /HWID
|
||||||
|
|
||||||
|
cd \
|
||||||
|
(goto) 2>nul & (if "%~dp0"=="%SystemRoot%\Setup\Scripts\" rd /s /q "%~dp0")
|
||||||
|
:hwid_setup:
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:kms38
|
||||||
|
|
||||||
|
cls
|
||||||
|
md "!desktop!\$OEM$\$$\Setup\Scripts"
|
||||||
|
pushd "!_work!"
|
||||||
|
copy /y /b "%KMS38_Activation.cmd%" "!_dir!\KMS38_Activation.cmd" %nul%
|
||||||
|
popd
|
||||||
|
call :export kms38_setup
|
||||||
|
|
||||||
|
set _error=
|
||||||
|
if not exist "!_dir!\KMS38_Activation.cmd" set _error=1
|
||||||
|
if not exist "!_dir!\SetupComplete.cmd" set _error=1
|
||||||
|
if defined _error goto errorfound
|
||||||
|
|
||||||
|
set oem=KMS38
|
||||||
|
goto done
|
||||||
|
|
||||||
|
:kms38_setup:
|
||||||
|
@echo off
|
||||||
|
|
||||||
|
fltmc >nul || exit /b
|
||||||
|
|
||||||
|
start /b /wait cmd /c "%~dp0KMS38_Activation.cmd" /KMS38
|
||||||
|
|
||||||
|
cd \
|
||||||
|
(goto) 2>nul & (if "%~dp0"=="%SystemRoot%\Setup\Scripts\" rd /s /q "%~dp0")
|
||||||
|
:kms38_setup:
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:kms
|
||||||
|
|
||||||
|
cls
|
||||||
|
md "!desktop!\$OEM$\$$\Setup\Scripts\BIN"
|
||||||
|
pushd "!_work!"
|
||||||
|
copy /y /b "%Activate.cmd%" "!_dir!\Activate.cmd" %nul%
|
||||||
|
copy /y /b "%cleanosppx64.exe%" "!_dir!\BIN\cleanosppx64.exe" %nul%
|
||||||
|
copy /y /b "%cleanosppx86.exe%" "!_dir!\BIN\cleanosppx86.exe" %nul%
|
||||||
|
popd
|
||||||
|
call :export kms_setup
|
||||||
|
|
||||||
|
set _error=
|
||||||
|
if not exist "!_dir!\Activate.cmd" set _error=1
|
||||||
|
if not exist "!_dir!\SetupComplete.cmd" set _error=1
|
||||||
|
if not exist "!_dir!\BIN\cleanosppx64.exe" set _error=1
|
||||||
|
if not exist "!_dir!\BIN\cleanosppx86.exe" set _error=1
|
||||||
|
if defined _error goto errorfound
|
||||||
|
|
||||||
|
set oem=Online KMS
|
||||||
|
goto done
|
||||||
|
|
||||||
|
:kms_setup:
|
||||||
|
@echo off
|
||||||
|
|
||||||
|
fltmc >nul || exit /b
|
||||||
|
|
||||||
|
start /b /wait cmd /c "%~dp0Activate.cmd" /KMS-ActAndRenewalTask /KMS-WindowsOffice
|
||||||
|
|
||||||
|
cd \
|
||||||
|
(goto) 2>nul & (if "%~dp0"=="%SystemRoot%\Setup\Scripts\" rd /s /q "%~dp0")
|
||||||
|
:kms_setup:
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:hwid_kms
|
||||||
|
|
||||||
|
cls
|
||||||
|
md "!desktop!\$OEM$\$$\Setup\Scripts\BIN"
|
||||||
|
pushd "!_work!"
|
||||||
|
copy /y /b "%HWID_Activation.cmd%" "!_dir!\HWID_Activation.cmd" %nul%
|
||||||
|
copy /y /b "%Activate.cmd%" "!_dir!\Activate.cmd" %nul%
|
||||||
|
copy /y /b "%cleanosppx64.exe%" "!_dir!\BIN\cleanosppx64.exe" %nul%
|
||||||
|
copy /y /b "%cleanosppx86.exe%" "!_dir!\BIN\cleanosppx86.exe" %nul%
|
||||||
|
popd
|
||||||
|
call :export hwid_kms_setup
|
||||||
|
|
||||||
|
set _error=
|
||||||
|
if not exist "!_dir!\HWID_Activation.cmd" set _error=1
|
||||||
|
if not exist "!_dir!\Activate.cmd" set _error=1
|
||||||
|
if not exist "!_dir!\SetupComplete.cmd" set _error=1
|
||||||
|
if not exist "!_dir!\BIN\cleanosppx64.exe" set _error=1
|
||||||
|
if not exist "!_dir!\BIN\cleanosppx86.exe" set _error=1
|
||||||
|
if defined _error goto errorfound
|
||||||
|
|
||||||
|
set oem=HWID [Windows] + Online KMS [Office]
|
||||||
|
goto done
|
||||||
|
|
||||||
|
:hwid_kms_setup:
|
||||||
|
@echo off
|
||||||
|
|
||||||
|
fltmc >nul || exit /b
|
||||||
|
|
||||||
|
start /b /wait cmd /c "%~dp0HWID_Activation.cmd" /HWID
|
||||||
|
|
||||||
|
start /b /wait cmd /c "%~dp0Activate.cmd" /KMS-ActAndRenewalTask /KMS-Office
|
||||||
|
|
||||||
|
cd \
|
||||||
|
(goto) 2>nul & (if "%~dp0"=="%SystemRoot%\Setup\Scripts\" rd /s /q "%~dp0")
|
||||||
|
:hwid_kms_setup:
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:kms38_kms
|
||||||
|
|
||||||
|
cls
|
||||||
|
md "!desktop!\$OEM$\$$\Setup\Scripts\BIN"
|
||||||
|
pushd "!_work!"
|
||||||
|
copy /y /b "%KMS38_Activation.cmd%" "!_dir!\KMS38_Activation.cmd" %nul%
|
||||||
|
copy /y /b "%Activate.cmd%" "!_dir!\Activate.cmd" %nul%
|
||||||
|
copy /y /b "%cleanosppx64.exe%" "!_dir!\BIN\cleanosppx64.exe" %nul%
|
||||||
|
copy /y /b "%cleanosppx86.exe%" "!_dir!\BIN\cleanosppx86.exe" %nul%
|
||||||
|
popd
|
||||||
|
call :export kms38_kms_setup
|
||||||
|
|
||||||
|
set _error=
|
||||||
|
if not exist "!_dir!\KMS38_Activation.cmd" set _error=1
|
||||||
|
if not exist "!_dir!\Activate.cmd" set _error=1
|
||||||
|
if not exist "!_dir!\SetupComplete.cmd" set _error=1
|
||||||
|
if not exist "!_dir!\BIN\cleanosppx64.exe" set _error=1
|
||||||
|
if not exist "!_dir!\BIN\cleanosppx86.exe" set _error=1
|
||||||
|
if defined _error goto errorfound
|
||||||
|
|
||||||
|
set oem=KMS38 [Windows] + Online KMS [Office]
|
||||||
|
goto done
|
||||||
|
|
||||||
|
:kms38_kms_setup:
|
||||||
|
@echo off
|
||||||
|
|
||||||
|
fltmc >nul || exit /b
|
||||||
|
|
||||||
|
start /b /wait cmd /c "%~dp0KMS38_Activation.cmd" /KMS38
|
||||||
|
|
||||||
|
start /b /wait cmd /c "%~dp0Activate.cmd" /KMS-ActAndRenewalTask /KMS-Office
|
||||||
|
|
||||||
|
cd \
|
||||||
|
(goto) 2>nul & (if "%~dp0"=="%SystemRoot%\Setup\Scripts\" rd /s /q "%~dp0")
|
||||||
|
:kms38_kms_setup:
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:errorfound
|
||||||
|
|
||||||
|
%eline%
|
||||||
|
echo $OEM$ Folder was not created successfully...
|
||||||
|
goto :done2
|
||||||
|
|
||||||
|
:done
|
||||||
|
|
||||||
|
echo ______________________________________________________________
|
||||||
|
echo:
|
||||||
|
call :ex_color %Magenta% "%oem%"
|
||||||
|
call :ex_color %Green% "$OEM$ folder is successfully created on the Desktop."
|
||||||
|
echo "%oem%" | find /i "38" %nul% && (
|
||||||
|
echo:
|
||||||
|
echo To KMS38 activate Server Cor/Acor editions ^(No GUI Versions^),
|
||||||
|
echo Check this page https://massgrave.dev/oem-folder
|
||||||
|
)
|
||||||
|
echo ______________________________________________________________
|
||||||
|
|
||||||
|
:done2
|
||||||
|
|
||||||
|
echo:
|
||||||
|
call :ex_color %_Yellow% "Press any key to exit..."
|
||||||
|
pause >nul
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Extract the text from batch script without character and file encoding issue
|
||||||
|
|
||||||
|
:export
|
||||||
|
|
||||||
|
%nul% %psc% "$f=[io.file]::ReadAllText('!_batp!') -split \":%~1\:.*`r`n\"; [io.file]::WriteAllText('!_pdesk!\$OEM$\$$\Setup\Scripts\SetupComplete.cmd',$f[1].Trim(),[System.Text.Encoding]::ASCII);"
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:ex_color
|
||||||
|
|
||||||
|
if %_NCS% EQU 1 (
|
||||||
|
echo %esc%[%~1%~2%esc%[0m
|
||||||
|
) else (
|
||||||
|
if not exist %psc% (echo %~3) else (%psc% write-host -back '%1' -fore '%2' '%3')
|
||||||
|
)
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
:ex_color2
|
||||||
|
|
||||||
|
if %_NCS% EQU 1 (
|
||||||
|
echo %esc%[%~1%~2%esc%[%~3%~4%esc%[0m
|
||||||
|
) else (
|
||||||
|
if not exist %psc% (echo %~3%~6) else (%psc% write-host -back '%1' -fore '%2' '%3' -NoNewline; write-host -back '%4' -fore '%5' '%6')
|
||||||
|
)
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
@ -0,0 +1,925 @@
|
|||||||
|
@setlocal DisableDelayedExpansion
|
||||||
|
@echo off
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
::============================================================================
|
||||||
|
::
|
||||||
|
:: This script is a part of 'Microsoft Activation Scripts' (MAS) project.
|
||||||
|
::
|
||||||
|
:: Homepage: massgrave.dev
|
||||||
|
:: Email: windowsaddict@protonmail.com
|
||||||
|
::
|
||||||
|
::============================================================================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
:: To activate, run the script with "/HWID" parameter or change 0 to 1 in below line
|
||||||
|
set _act=0
|
||||||
|
|
||||||
|
:: To disable changing edition if current edition doesn't support HWID activation, change the value to 1 from 0 or run the script with "/HWID-NoEditionChange" parameter
|
||||||
|
set _NoEditionChange=0
|
||||||
|
|
||||||
|
:: If value is changed in above lines or parameter is used then script will run in unattended mode
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Re-launch the script with x64 process if it was initiated by x86 process on x64 bit Windows
|
||||||
|
:: or with ARM64 process if it was initiated by x86/ARM32 process on ARM64 Windows
|
||||||
|
|
||||||
|
set "_cmdf=%~f0"
|
||||||
|
for %%# in (%*) do (
|
||||||
|
if /i "%%#"=="r1" set r1=1
|
||||||
|
if /i "%%#"=="r2" set r2=1
|
||||||
|
)
|
||||||
|
|
||||||
|
if exist %SystemRoot%\Sysnative\cmd.exe if not defined r1 (
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
start %SystemRoot%\Sysnative\cmd.exe /c ""!_cmdf!" %* r1"
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
|
||||||
|
:: Re-launch the script with ARM32 process if it was initiated by x64 process on ARM64 Windows
|
||||||
|
|
||||||
|
if exist %SystemRoot%\SysArm32\cmd.exe if %PROCESSOR_ARCHITECTURE%==AMD64 if not defined r2 (
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
start %SystemRoot%\SysArm32\cmd.exe /c ""!_cmdf!" %* r2"
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
|
||||||
|
:: Set Path variable, it helps if it is misconfigured in the system
|
||||||
|
|
||||||
|
set "PATH=%SystemRoot%\System32;%SystemRoot%\System32\wbem;%SystemRoot%\System32\WindowsPowerShell\v1.0\"
|
||||||
|
if exist "%SystemRoot%\Sysnative\reg.exe" (
|
||||||
|
set "PATH=%SystemRoot%\Sysnative;%SystemRoot%\Sysnative\wbem;%SystemRoot%\Sysnative\WindowsPowerShell\v1.0\;%PATH%"
|
||||||
|
)
|
||||||
|
|
||||||
|
:: Check LF line ending
|
||||||
|
|
||||||
|
pushd "%~dp0"
|
||||||
|
>nul findstr /rxc:".*" "%~nx0"
|
||||||
|
if not %errorlevel%==0 (
|
||||||
|
echo:
|
||||||
|
echo Error: This is not a correct file. It has LF line ending issue.
|
||||||
|
echo:
|
||||||
|
ping 127.0.0.1 -n 6 > nul
|
||||||
|
popd
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
popd
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
cls
|
||||||
|
color 07
|
||||||
|
title HWID Activation
|
||||||
|
|
||||||
|
set _args=
|
||||||
|
set _elev=
|
||||||
|
set _unattended=0
|
||||||
|
|
||||||
|
set _args=%*
|
||||||
|
if defined _args set _args=%_args:"=%
|
||||||
|
if defined _args (
|
||||||
|
for %%A in (%_args%) do (
|
||||||
|
if /i "%%A"=="/HWID" set _act=1
|
||||||
|
if /i "%%A"=="/HWID-NoEditionChange" set _NoEditionChange=1
|
||||||
|
if /i "%%A"=="-el" set _elev=1
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
for %%A in (%_act% %_NoEditionChange%) do (if "%%A"=="1" set _unattended=1)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
set winbuild=1
|
||||||
|
set "nul=>nul 2>&1"
|
||||||
|
set psc=powershell.exe
|
||||||
|
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
||||||
|
|
||||||
|
set _NCS=1
|
||||||
|
if %winbuild% LSS 10586 set _NCS=0
|
||||||
|
if %winbuild% GEQ 10586 reg query "HKCU\Console" /v ForceV2 2>nul | find /i "0x0" 1>nul && (set _NCS=0)
|
||||||
|
|
||||||
|
if %_NCS% EQU 1 (
|
||||||
|
for /F %%a in ('echo prompt $E ^| cmd') do set "esc=%%a"
|
||||||
|
set "Red="41;97m""
|
||||||
|
set "Gray="100;97m""
|
||||||
|
set "Green="42;97m""
|
||||||
|
set "Magenta="45;97m""
|
||||||
|
set "_White="40;37m""
|
||||||
|
set "_Green="40;92m""
|
||||||
|
set "_Yellow="40;93m""
|
||||||
|
) else (
|
||||||
|
set "Red="Red" "white""
|
||||||
|
set "Gray="Darkgray" "white""
|
||||||
|
set "Green="DarkGreen" "white""
|
||||||
|
set "Magenta="Darkmagenta" "white""
|
||||||
|
set "_White="Black" "Gray""
|
||||||
|
set "_Green="Black" "Green""
|
||||||
|
set "_Yellow="Black" "Yellow""
|
||||||
|
)
|
||||||
|
|
||||||
|
set "nceline=echo: &echo ==== ERROR ==== &echo:"
|
||||||
|
set "eline=echo: &call :dk_color %Red% "==== ERROR ====" &echo:"
|
||||||
|
if %~z0 GEQ 200000 (set "_exitmsg=Go back") else (set "_exitmsg=Exit")
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
if %winbuild% LSS 10240 (
|
||||||
|
%eline%
|
||||||
|
echo Unsupported OS version detected.
|
||||||
|
echo Project is supported for Windows 10/11.
|
||||||
|
goto dk_done
|
||||||
|
)
|
||||||
|
|
||||||
|
if exist "%SystemRoot%\Servicing\Packages\Microsoft-Windows-Server*Edition~*.mum" (
|
||||||
|
%eline%
|
||||||
|
echo HWID Activation is not supported for Windows Server.
|
||||||
|
echo Use KMS38 or KMS Activation.
|
||||||
|
goto dk_done
|
||||||
|
)
|
||||||
|
|
||||||
|
for %%# in (powershell.exe) do @if "%%~$PATH:#"=="" (
|
||||||
|
%nceline%
|
||||||
|
echo Unable to find powershell.exe in the system.
|
||||||
|
goto dk_done
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Fix for the special characters limitation in path name
|
||||||
|
|
||||||
|
set "_work=%~dp0"
|
||||||
|
if "%_work:~-1%"=="\" set "_work=%_work:~0,-1%"
|
||||||
|
|
||||||
|
set "_batf=%~f0"
|
||||||
|
set "_batp=%_batf:'=''%"
|
||||||
|
|
||||||
|
set _PSarg="""%~f0""" -el %_args%
|
||||||
|
|
||||||
|
set "_ttemp=%temp%"
|
||||||
|
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
echo "!_batf!" | find /i "!_ttemp!" 1>nul && (
|
||||||
|
if /i not "!_work!"=="!_ttemp!" (
|
||||||
|
%eline%
|
||||||
|
echo Script is launched from the temp folder,
|
||||||
|
echo Most likely you are running the script directly from the archive file.
|
||||||
|
echo:
|
||||||
|
echo Extract the archive file and launch the script from the extracted folder.
|
||||||
|
goto dk_done
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Elevate script as admin and pass arguments and preventing loop
|
||||||
|
|
||||||
|
>nul fltmc || (
|
||||||
|
if not defined _elev %nul% %psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && exit /b
|
||||||
|
%eline%
|
||||||
|
echo This script require administrator privileges.
|
||||||
|
echo To do so, right click on this script and select 'Run as administrator'.
|
||||||
|
goto dk_done
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
cls
|
||||||
|
mode 102, 33
|
||||||
|
title HWID Activation
|
||||||
|
|
||||||
|
echo:
|
||||||
|
echo Initializing...
|
||||||
|
call :dk_product
|
||||||
|
call :dk_ckeckwmic
|
||||||
|
|
||||||
|
:: Show info for potential script stuck scenario
|
||||||
|
|
||||||
|
sc start sppsvc %nul%
|
||||||
|
if %errorlevel% NEQ 1056 if %errorlevel% NEQ 0 (
|
||||||
|
echo:
|
||||||
|
echo Error code: %errorlevel%
|
||||||
|
call :dk_color %Red% "Failed to start [sppsvc] service, rest of the process may take a long time..."
|
||||||
|
echo:
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Check if system is permanently activated or not
|
||||||
|
|
||||||
|
call :dk_checkperm
|
||||||
|
if defined _perm (
|
||||||
|
cls
|
||||||
|
echo ___________________________________________________________________________________________
|
||||||
|
echo:
|
||||||
|
call :dk_color2 %_White% " " %Green% "Checking: %winos% is Permanently Activated."
|
||||||
|
call :dk_color2 %_White% " " %Gray% "Activation is not required."
|
||||||
|
echo ___________________________________________________________________________________________
|
||||||
|
if %_unattended%==1 goto dk_done
|
||||||
|
echo:
|
||||||
|
choice /C:10 /N /M "> [1] Activate [0] %_exitmsg% : "
|
||||||
|
if errorlevel 2 exit /b
|
||||||
|
)
|
||||||
|
cls
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Check Evaluation version
|
||||||
|
|
||||||
|
if exist "%SystemRoot%\Servicing\Packages\Microsoft-Windows-*EvalEdition~*.mum" (
|
||||||
|
reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v EditionID 2>nul | find /i "Eval" 1>nul && (
|
||||||
|
%eline%
|
||||||
|
echo [%winos% ^| %winbuild%]
|
||||||
|
echo Evaluation Editions cannot be activated. Download ^& Install full version of Windows OS.
|
||||||
|
echo:
|
||||||
|
echo https://massgrave.dev/
|
||||||
|
goto dk_done
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Check SKU value / Check in multiple places to find Edition change corruption
|
||||||
|
|
||||||
|
set osSKU=
|
||||||
|
set regSKU=
|
||||||
|
set wmiSKU=
|
||||||
|
|
||||||
|
for /f "tokens=3 delims=." %%a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions" /v OSProductPfn 2^>nul') do set "regSKU=%%a"
|
||||||
|
if %_wmic% EQU 1 for /f "tokens=2 delims==" %%a in ('"wmic Path Win32_OperatingSystem Get OperatingSystemSKU /format:LIST" 2^>nul') do if not errorlevel 1 set "wmiSKU=%%a"
|
||||||
|
if %_wmic% EQU 0 for /f "tokens=1" %%a in ('%psc% "([WMI]'Win32_OperatingSystem=@').OperatingSystemSKU" 2^>nul') do if not errorlevel 1 set "wmiSKU=%%a"
|
||||||
|
|
||||||
|
set osSKU=%wmiSKU%
|
||||||
|
if not defined osSKU set osSKU=%regSKU%
|
||||||
|
|
||||||
|
if not defined osSKU (
|
||||||
|
%eline%
|
||||||
|
echo SKU value was not detected properly. Aborting...
|
||||||
|
goto dk_done
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
set error=
|
||||||
|
|
||||||
|
:: Check Internet connection
|
||||||
|
|
||||||
|
cls
|
||||||
|
echo:
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v PROCESSOR_ARCHITECTURE') do set arch=%%b
|
||||||
|
echo Checking OS Info [%winos% ^| %winbuild% ^| %arch%]
|
||||||
|
|
||||||
|
set _intcon=
|
||||||
|
for /f "delims=[] tokens=2" %%# in ('ping -n 1 licensing.mp.microsoft.com') do if not [%%#]==[] set _intcon=1
|
||||||
|
|
||||||
|
%psc% "$t = New-Object Net.Sockets.TcpClient;try{$t.Connect("""licensing.mp.microsoft.com""", 443)}catch{};$t.Connected" | findstr /i true 1>nul
|
||||||
|
if %errorlevel% EQU 0 (
|
||||||
|
echo Checking Internet Connection [Connected]
|
||||||
|
) else (
|
||||||
|
set error=1
|
||||||
|
if defined _intcon (
|
||||||
|
call :dk_color %Red% "Checking Internet Connection [Internet Found But Cant Connect licensing.mp.microsoft.com]"
|
||||||
|
call :dk_color %Magenta% "Make sure restricted Internet [Office/College] is not connected and URL is not blocked in the system"
|
||||||
|
) else (
|
||||||
|
call :dk_color %Red% "Checking Internet Connection [Not Connected]"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Check Windows Script Host
|
||||||
|
|
||||||
|
set _WSH=1
|
||||||
|
reg query "HKCU\SOFTWARE\Microsoft\Windows Script Host\Settings" /v Enabled 2>nul | find /i "0x0" 1>nul && (set _WSH=0)
|
||||||
|
reg query "HKLM\SOFTWARE\Microsoft\Windows Script Host\Settings" /v Enabled 2>nul | find /i "0x0" 1>nul && (set _WSH=0)
|
||||||
|
|
||||||
|
if %_WSH% EQU 0 (
|
||||||
|
reg add "HKLM\Software\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_DWORD /d 1 /f %nul%
|
||||||
|
reg add "HKCU\Software\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_DWORD /d 1 /f %nul%
|
||||||
|
if not "%arch%"=="x86" reg add "HKLM\Software\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_DWORD /d 1 /f /reg:32 %nul%
|
||||||
|
echo Enabling Windows Script Host [Successful]
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
echo Initiating Diagnostic Tests...
|
||||||
|
|
||||||
|
set "_serv=ClipSVC wlidsvc sppsvc LicenseManager Winmgmt wuauserv"
|
||||||
|
|
||||||
|
:: Client License Service (ClipSVC)
|
||||||
|
:: Microsoft Account Sign-in Assistant
|
||||||
|
:: Software Protection
|
||||||
|
:: Windows License Manager Service
|
||||||
|
:: Windows Management Instrumentation
|
||||||
|
:: Windows Update
|
||||||
|
|
||||||
|
call :dk_errorcheck
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Detect Key
|
||||||
|
|
||||||
|
set key=
|
||||||
|
set altkey=
|
||||||
|
set changekey=
|
||||||
|
set curedition=
|
||||||
|
set altedition=
|
||||||
|
set notworking=
|
||||||
|
set actidnotfound=
|
||||||
|
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v BuildBranch 2^>nul') do set "branch=%%b"
|
||||||
|
|
||||||
|
if defined applist call :hwiddata key attempt1
|
||||||
|
if not defined key call :hwiddata key attempt2
|
||||||
|
|
||||||
|
if defined notworking call :hwidfallback
|
||||||
|
if not defined key call :hwidfallback
|
||||||
|
|
||||||
|
if defined altkey (set key=%altkey%&set changekey=1&set notworking=)
|
||||||
|
|
||||||
|
if defined notworking if defined notfoundaltactID (
|
||||||
|
call :dk_color %Red% "Checking Alternate Edition For HWID [%altedition% Activation ID Not Found]"
|
||||||
|
if exist "%SystemRoot%\Servicing\Packages\Microsoft-Windows-*EvalEdition~*.mum" (
|
||||||
|
call :dk_color %Magenta% "Evaluation Windows Found. Install Full version of Windows. https://massgrave.dev/"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
if not defined key (
|
||||||
|
%eline%
|
||||||
|
echo [%winos% ^| %winbuild% ^| SKU:%osSKU%]
|
||||||
|
echo Unable to find this product in the supported product list.
|
||||||
|
echo Make sure you are using updated version of the script.
|
||||||
|
echo https://massgrave.dev
|
||||||
|
echo:
|
||||||
|
goto dk_done
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Install key
|
||||||
|
|
||||||
|
echo:
|
||||||
|
if defined changekey (
|
||||||
|
call :dk_color %Magenta% "[%altedition%] Edition product key will be used to enable HWID activation."
|
||||||
|
echo:
|
||||||
|
)
|
||||||
|
|
||||||
|
if %_wmic% EQU 1 wmic path SoftwareLicensingService where __CLASS='SoftwareLicensingService' call InstallProductKey ProductKey="%key%" %nul%
|
||||||
|
if %_wmic% EQU 0 %psc% "(([WMISEARCHER]'SELECT Version FROM SoftwareLicensingService').Get()).InstallProductKey('%key%')" %nul%
|
||||||
|
if not %errorlevel%==0 cscript //nologo %windir%\system32\slmgr.vbs /ipk %key% %nul%
|
||||||
|
set errorcode=%errorlevel%
|
||||||
|
cmd /c exit /b %errorcode%
|
||||||
|
if %errorcode% NEQ 0 set "errorcode=[0x%=ExitCode%]"
|
||||||
|
|
||||||
|
if %errorcode% EQU 0 (
|
||||||
|
call :dk_refresh
|
||||||
|
echo Installing Generic Product Key [%key%] [Successful]
|
||||||
|
) else (
|
||||||
|
set error=1
|
||||||
|
call :dk_color %Red% "Installing Generic Product Key [%key%] [Failed] %errorcode%"
|
||||||
|
if defined applist if defined actidnotfound call :dk_color %Red% "Activation ID not found for this key. Make sure you are using updated version of MAS."
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Change Windows region to USA to avoid activation issues as Windows store license is not available in many countries
|
||||||
|
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('reg query "HKCU\Control Panel\International\Geo" /v Name 2^>nul') do set "name=%%b"
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('reg query "HKCU\Control Panel\International\Geo" /v Nation 2^>nul') do set "nation=%%b"
|
||||||
|
|
||||||
|
set regionchange=
|
||||||
|
if not "%name%"=="US" (
|
||||||
|
set regionchange=1
|
||||||
|
%psc% Set-WinHomeLocation -GeoId 244
|
||||||
|
if !errorlevel! EQU 0 (
|
||||||
|
echo Changing Windows Region To USA [Successful]
|
||||||
|
) else (
|
||||||
|
call :dk_color %Red% "Changing Windows Region To USA [Failed]"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
::==========================================================================================================================================
|
||||||
|
|
||||||
|
:: Generate GenuineTicket.xml and apply
|
||||||
|
:: Most correct way to apply a ticket is by restarting ClipSVC service but we can not check the log details in this way
|
||||||
|
:: To get the log details and also to correctly apply ticket, script will install tickets two times (service restart + clipup -v -o)
|
||||||
|
|
||||||
|
set "tdir=%ProgramData%\Microsoft\Windows\ClipSVC\GenuineTicket"
|
||||||
|
if not exist "%tdir%\" md "%tdir%\" %nul%
|
||||||
|
|
||||||
|
if exist "%tdir%\Genuine*" del /f /q "%tdir%\Genuine*" %nul%
|
||||||
|
if exist "%tdir%\*.xml" del /f /q "%tdir%\*.xml" %nul%
|
||||||
|
|
||||||
|
call :hwiddata ticket
|
||||||
|
|
||||||
|
copy /y /b "%tdir%\GenuineTicket" "%tdir%\GenuineTicket.xml" %nul%
|
||||||
|
|
||||||
|
if not exist "%tdir%\GenuineTicket.xml" (
|
||||||
|
call :dk_color %Red% "Generating GenuineTicket.xml [Failed]"
|
||||||
|
echo [%encoded%]
|
||||||
|
if exist "%tdir%\Genuine*" del /f /q "%tdir%\Genuine*" %nul%
|
||||||
|
goto :dl_final
|
||||||
|
) else (
|
||||||
|
echo Generating GenuineTicket.xml [Successful]
|
||||||
|
)
|
||||||
|
|
||||||
|
set "_xmlexist=if exist "%tdir%\GenuineTicket.xml""
|
||||||
|
|
||||||
|
%_xmlexist% (
|
||||||
|
net stop ClipSVC /y %nul%
|
||||||
|
net start ClipSVC /y %nul%
|
||||||
|
%_xmlexist% timeout /t 2 %nul%
|
||||||
|
%_xmlexist% timeout /t 2 %nul%
|
||||||
|
|
||||||
|
%_xmlexist% (
|
||||||
|
if exist "%tdir%\*.xml" del /f /q "%tdir%\*.xml" %nul%
|
||||||
|
call :dk_color %Red% "Installing GenuineTicket.xml [Failed With ClipSVC Service Restart, Wait...]"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
copy /y /b "%tdir%\GenuineTicket" "%tdir%\GenuineTicket.xml" %nul%
|
||||||
|
clipup -v -o
|
||||||
|
if exist "%tdir%\Genuine*" del /f /q "%tdir%\Genuine*" %nul%
|
||||||
|
|
||||||
|
::==========================================================================================================================================
|
||||||
|
|
||||||
|
call :dk_product
|
||||||
|
|
||||||
|
echo:
|
||||||
|
echo Activating...
|
||||||
|
echo:
|
||||||
|
|
||||||
|
call :dk_act
|
||||||
|
call :dk_checkperm
|
||||||
|
if defined _perm (
|
||||||
|
call :dk_color %Green% "%winos% is permanently activated."
|
||||||
|
goto :dl_final
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
if not defined error (
|
||||||
|
|
||||||
|
REM Clear store ID related registry to fix activation incase if there is any corruption
|
||||||
|
|
||||||
|
set "_ident=HKU\S-1-5-19\SOFTWARE\Microsoft\IdentityCRL"
|
||||||
|
reg delete "!_ident!" /f %nul%
|
||||||
|
reg query "!_ident!" %nul% && (
|
||||||
|
call :dk_color %Red% "Deleting a Registry [Failed] [!_ident!]"
|
||||||
|
) || (
|
||||||
|
echo Deleting a Registry [Successful] [!_ident!]
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Refresh some services and license status
|
||||||
|
|
||||||
|
for %%# in (wlidsvc LicenseManager sppsvc) do (net stop %%# /y %nul% & net start %%# /y %nul%)
|
||||||
|
call :dk_refresh
|
||||||
|
call :dk_act
|
||||||
|
call :dk_checkperm
|
||||||
|
)
|
||||||
|
|
||||||
|
if defined _perm (
|
||||||
|
call :dk_color %Green% "%winos% is permanently activated."
|
||||||
|
) else (
|
||||||
|
call :dk_color %Red% "Activation Failed %error_code%"
|
||||||
|
if defined notworking (
|
||||||
|
call :dk_color %Magenta% "At the time of writing this, HWID Activation was not supported for this product."
|
||||||
|
) else (
|
||||||
|
call :dk_color2 %Magenta% "Check this page for help" %_Yellow% " https://massgrave.dev/troubleshoot"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:dl_final
|
||||||
|
|
||||||
|
echo:
|
||||||
|
|
||||||
|
if defined regionchange (
|
||||||
|
%psc% Set-WinHomeLocation -GeoId %nation%
|
||||||
|
if !errorlevel! EQU 0 (
|
||||||
|
echo Restoring Windows Region [Successful]
|
||||||
|
) else (
|
||||||
|
call :dk_color %Red% "Restoring Windows Region [Failed] [%name%-%nation%]"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
if %osSKU%==175 call :dk_color %Red% "ServerRdsh Editon does not officially support activation on non-azure platforms."
|
||||||
|
|
||||||
|
goto :dk_done
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Get Windows permanent activation status
|
||||||
|
|
||||||
|
:dk_checkperm
|
||||||
|
|
||||||
|
if %_wmic% EQU 1 wmic path SoftwareLicensingProduct where (LicenseStatus='1' and GracePeriodRemaining='0' and PartialProductKey is not NULL) get Name /value 2>nul | findstr /i "Windows" 1>nul && set _perm=1||set _perm=
|
||||||
|
if %_wmic% EQU 0 %psc% "(([WMISEARCHER]'SELECT Name FROM SoftwareLicensingProduct WHERE LicenseStatus=1 AND GracePeriodRemaining=0 AND PartialProductKey IS NOT NULL').Get()).Name | %% {echo ('Name='+$_)}" 2>nul | findstr /i "Windows" 1>nul && set _perm=1||set _perm=
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
:: Refresh license status
|
||||||
|
|
||||||
|
:dk_refresh
|
||||||
|
|
||||||
|
if %_wmic% EQU 1 wmic path SoftwareLicensingService where __CLASS='SoftwareLicensingService' call RefreshLicenseStatus %nul%
|
||||||
|
if %_wmic% EQU 0 %psc% "$null=(([WMICLASS]'SoftwareLicensingService').GetInstances()).RefreshLicenseStatus()" %nul%
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
:: Activation command
|
||||||
|
|
||||||
|
:dk_act
|
||||||
|
|
||||||
|
set error_code=
|
||||||
|
if %_wmic% EQU 1 wmic path SoftwareLicensingProduct where "ApplicationID='55c92734-d682-4d71-983e-d6ec3f16059f' and PartialProductKey<>null" call Activate %nul%
|
||||||
|
if %_wmic% EQU 0 %psc% "(([WMISEARCHER]'SELECT ID FROM SoftwareLicensingProduct WHERE ApplicationID=''55c92734-d682-4d71-983e-d6ec3f16059f'' AND PartialProductKey IS NOT NULL').Get()).Activate()" %nul%
|
||||||
|
if not %errorlevel%==0 cscript //nologo %windir%\system32\slmgr.vbs /ato %nul%
|
||||||
|
set error_code=%errorlevel%
|
||||||
|
cmd /c exit /b %error_code%
|
||||||
|
if %error_code% NEQ 0 (set "error_code=[Error Code: 0x%=ExitCode%]") else (set error_code=)
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
:: Get Windows Activation IDs
|
||||||
|
|
||||||
|
:dk_actids
|
||||||
|
|
||||||
|
set applist=
|
||||||
|
if %_wmic% EQU 1 set "chkapp=for /f "tokens=2 delims==" %%a in ('"wmic path SoftwareLicensingProduct where (ApplicationID='55c92734-d682-4d71-983e-d6ec3f16059f') get ID /VALUE" 2^>nul')"
|
||||||
|
if %_wmic% EQU 0 set "chkapp=for /f "tokens=2 delims==" %%a in ('%psc% "(([WMISEARCHER]'SELECT ID FROM SoftwareLicensingProduct WHERE ApplicationID=''55c92734-d682-4d71-983e-d6ec3f16059f''').Get()).ID ^| %% {echo ('ID='+$_)}" 2^>nul')"
|
||||||
|
%chkapp% do (if defined applist (call set "applist=!applist! %%a") else (call set "applist=%%a"))
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
:: Get Product name (WMI/REG methods are not reliable in all conditions, hence winbrand.dll method is used)
|
||||||
|
|
||||||
|
:dk_product
|
||||||
|
|
||||||
|
set winos=
|
||||||
|
set d1=[DllImport(\"winbrand\",CharSet=CharSet.Unicode)]public static extern string BrandingFormatString(string s);
|
||||||
|
set d2=$AP=Add-Type -Member '%d1%' -Name D1 -PassThru; $AP::BrandingFormatString('%%WINDOWS_LONG%%')
|
||||||
|
for /f "delims=" %%s in ('"%psc% %d2%"') do if not errorlevel 1 (set winos=%%s)
|
||||||
|
echo "%winos%" | find /i "Windows" 1>nul || (
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName 2^>nul') do set "winos=%%b"
|
||||||
|
if %winbuild% GEQ 22000 (
|
||||||
|
set winos=!winos:Windows 10=Windows 11!
|
||||||
|
)
|
||||||
|
)
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
:: Check wmic.exe
|
||||||
|
|
||||||
|
:dk_ckeckwmic
|
||||||
|
|
||||||
|
set _wmic=0
|
||||||
|
for %%# in (wmic.exe) do @if not "%%~$PATH:#"=="" (
|
||||||
|
wmic path Win32_ComputerSystem get CreationClassName /value 2>nul | find /i "computersystem" 1>nul && set _wmic=1
|
||||||
|
)
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:dk_errorcheck
|
||||||
|
|
||||||
|
:: Check disabled services
|
||||||
|
|
||||||
|
set serv_ste=
|
||||||
|
for %%# in (%_serv%) do (
|
||||||
|
set serv_dis=
|
||||||
|
reg query HKLM\SYSTEM\CurrentControlSet\Services\%%# /v Start %nul% || set serv_dis=1
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('reg query HKLM\SYSTEM\CurrentControlSet\Services\%%# /v Start 2^>nul') do if /i %%b equ 0x4 set serv_dis=1
|
||||||
|
if defined serv_dis (if defined serv_ste (set "serv_ste=!serv_ste! %%#") else (set "serv_ste=%%#"))
|
||||||
|
)
|
||||||
|
|
||||||
|
:: Change disabled services startup type to default
|
||||||
|
|
||||||
|
set serv_csts=
|
||||||
|
set serv_cste=
|
||||||
|
|
||||||
|
if defined serv_ste (
|
||||||
|
for %%# in (%serv_ste%) do (
|
||||||
|
if /i %%#==ClipSVC (reg add "HKLM\SYSTEM\CurrentControlSet\Services\%%#" /v "Start" /t REG_DWORD /d "3" /f %nul% & sc config %%# start= demand %nul%)
|
||||||
|
if /i %%#==wlidsvc sc config %%# start= demand %nul%
|
||||||
|
if /i %%#==sppsvc (reg add "HKLM\SYSTEM\CurrentControlSet\Services\%%#" /v "Start" /t REG_DWORD /d "2" /f %nul% & sc config %%# start= delayed-auto %nul%)
|
||||||
|
if /i %%#==LicenseManager sc config %%# start= demand %nul%
|
||||||
|
if /i %%#==Winmgmt sc config %%# start= auto %nul%
|
||||||
|
if /i %%#==wuauserv sc config %%# start= demand %nul%
|
||||||
|
if !errorlevel!==0 (
|
||||||
|
if defined serv_csts (set "serv_csts=!serv_csts! %%#") else (set "serv_csts=%%#")
|
||||||
|
) else (
|
||||||
|
set error=1
|
||||||
|
if defined serv_cste (set "serv_cste=!serv_cste! %%#") else (set "serv_cste=%%#")
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
if defined serv_csts echo Enabling Disabled Services [Successful] [%serv_csts%]
|
||||||
|
|
||||||
|
if defined serv_cste (
|
||||||
|
echo %serv_cste% | findstr /i "ClipSVC sppsvc" %nul% && (
|
||||||
|
call :dk_color %Red% "Enabling Disabled Services [Failed] [%serv_cste%] [Restart System]"
|
||||||
|
) || (
|
||||||
|
call :dk_color %Red% "Enabling Disabled Services [Failed] [%serv_cste%]"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Check if the services are able to run or not
|
||||||
|
:: Workarounds are added to get correct status and error code because sc query doesn't output correct results in some conditions
|
||||||
|
|
||||||
|
set serv_e=
|
||||||
|
for %%# in (%_serv%) do (
|
||||||
|
set errorcode=
|
||||||
|
set checkerror=
|
||||||
|
net start %%# /y %nul%
|
||||||
|
sc query %%# | find /i "4 RUNNING" %nul% || set checkerror=1
|
||||||
|
|
||||||
|
sc start %%# %nul%
|
||||||
|
set errorcode=!errorlevel!
|
||||||
|
if !errorcode! NEQ 1056 if !errorcode! NEQ 0 set checkerror=1
|
||||||
|
if defined checkerror if defined serv_e (set "serv_e=!serv_e!, %%#-!errorcode!") else (set "serv_e=%%#-!errorcode!")
|
||||||
|
)
|
||||||
|
|
||||||
|
if defined serv_e (
|
||||||
|
set error=1
|
||||||
|
call :dk_color %Red% "Starting Services [Failed] [%serv_e%]"
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Various error checks
|
||||||
|
|
||||||
|
for %%# in (wmic.exe) do @if "%%~$PATH:#"=="" (
|
||||||
|
call :dk_color %Gray% "Checking WMIC.exe [Not Found]"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
%psc% $ExecutionContext.SessionState.LanguageMode 2>nul | find /i "Full" 1>nul || (
|
||||||
|
set error=1
|
||||||
|
call :dk_color %Red% "Checking Powershell [Not Responding]"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
if %_wmic% EQU 1 wmic path Win32_ComputerSystem get CreationClassName /value 2>nul | find /i "computersystem" 1>nul
|
||||||
|
if %_wmic% EQU 0 %psc% "Get-CIMInstance -Class Win32_ComputerSystem | Select-Object -Property CreationClassName" 2>nul | find /i "computersystem" 1>nul
|
||||||
|
if %errorlevel% NEQ 0 (
|
||||||
|
set error=1
|
||||||
|
call :dk_color %Red% "Checking WMI [Not Responding] %_wmic%"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
if not "%regSKU%"=="%wmiSKU%" (
|
||||||
|
set error=1
|
||||||
|
call :dk_color %Red% "Checking WMI/REG SKU [Difference Found - WMI:%wmiSKU% Reg:%regSKU%]"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
DISM /English /Online /Get-CurrentEdition %nul%
|
||||||
|
set error_code=%errorlevel%
|
||||||
|
cmd /c exit /b %error_code%
|
||||||
|
if %error_code% NEQ 0 set "error_code=[0x%=ExitCode%]"
|
||||||
|
if %error_code% NEQ 0 (
|
||||||
|
call :dk_color %Red% "Checking DISM [Not Responding] %error_code%"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
if exist "%SystemRoot%\Servicing\Packages\Microsoft-Windows-*EvalEdition~*.mum" (
|
||||||
|
call :dk_color %Red% "Checking Eval Packages [Non-Eval Licenses are installed in Eval Windows]"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
cscript //nologo %windir%\system32\slmgr.vbs /dlv %nul%
|
||||||
|
set error_code=%errorlevel%
|
||||||
|
cmd /c exit /b %error_code%
|
||||||
|
if %error_code% NEQ 0 set "error_code=0x%=ExitCode%"
|
||||||
|
if %error_code% NEQ 0 (
|
||||||
|
set error=1
|
||||||
|
call :dk_color %Red% "Checking slmgr /dlv [Not Responding] %error_code%"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
reg query "HKU\S-1-5-20\Software\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform\PersistedTSReArmed" %nul% && (
|
||||||
|
set error=1
|
||||||
|
call :dk_color %Red% "Checking Rearm [System Restart Is Required]"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ClipSVC\Volatile\PersistedSystemState" %nul% && (
|
||||||
|
set error=1
|
||||||
|
call :dk_color %Red% "Checking ClipSVC [System Restart Is Required]"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform" /v "SkipRearm" 2^>nul') do if /i %%b NEQ 0x0 (
|
||||||
|
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform" /v "SkipRearm" /t REG_DWORD /d "0" /f %nul%
|
||||||
|
call :dk_color %Red% "Checking SkipRearm [Default 0 Value Not Found, Changing To 0]"
|
||||||
|
net stop sppsvc /y %nul%
|
||||||
|
net start sppsvc /y %nul%
|
||||||
|
set error=1
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
call :dk_actids
|
||||||
|
if not defined applist (
|
||||||
|
net stop sppsvc /y %nul%
|
||||||
|
cscript //nologo %windir%\system32\slmgr.vbs /rilc %nul%
|
||||||
|
if !errorlevel! NEQ 0 cscript //nologo %windir%\system32\slmgr.vbs /rilc %nul%
|
||||||
|
call :dk_refresh
|
||||||
|
call :dk_actids
|
||||||
|
if not defined applist (
|
||||||
|
set error=1
|
||||||
|
call :dk_color %Red% "Checking Activation IDs [Not Found]"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
set token=0
|
||||||
|
if exist %Systemdrive%\Windows\System32\spp\store\2.0\tokens.dat set token=1
|
||||||
|
if exist %Systemdrive%\Windows\System32\spp\store_test\2.0\tokens.dat set token=1
|
||||||
|
if %token%==0 (
|
||||||
|
set error=1
|
||||||
|
call :dk_color %Red% "Checking SPP tokens.dat [Not Found]"
|
||||||
|
)
|
||||||
|
|
||||||
|
if not exist %SystemRoot%\system32\sppsvc.exe (
|
||||||
|
set error=1
|
||||||
|
call :dk_color %Red% "Checking sppsvc.exe File [Not Found]"
|
||||||
|
)
|
||||||
|
|
||||||
|
if /i %error_code% EQU 0xc0000022 (
|
||||||
|
echo "%serv_e%" | find /i "sppsvc" %nul% && (
|
||||||
|
call :dk_color %Magenta% "Looks like you may have used a Gaming spoofer. Check Activation Troubleshoot option in MAS."
|
||||||
|
)
|
||||||
|
)
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:dk_color
|
||||||
|
|
||||||
|
if %_NCS% EQU 1 (
|
||||||
|
echo %esc%[%~1%~2%esc%[0m
|
||||||
|
) else (
|
||||||
|
%psc% write-host -back '%1' -fore '%2' '%3'
|
||||||
|
)
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
:dk_color2
|
||||||
|
|
||||||
|
if %_NCS% EQU 1 (
|
||||||
|
echo %esc%[%~1%~2%esc%[%~3%~4%esc%[0m
|
||||||
|
) else (
|
||||||
|
%psc% write-host -back '%1' -fore '%2' '%3' -NoNewline; write-host -back '%4' -fore '%5' '%6'
|
||||||
|
)
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:dk_done
|
||||||
|
|
||||||
|
echo:
|
||||||
|
if %_unattended%==1 timeout /t 2 & exit /b
|
||||||
|
call :dk_color %_Yellow% "Press any key to %_exitmsg%..."
|
||||||
|
pause >nul
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: 1st column = Activation ID
|
||||||
|
:: 2nd column = Generic Retail/OEM/MAK Key
|
||||||
|
:: 3rd column = SKU ID
|
||||||
|
:: 4th column = Key part number
|
||||||
|
:: 5th column = Ticket signature value. It's as it is, it's not encoded. (Check https://massgrave.dev/hwid.html#Manual_Activation to see how it's generated)
|
||||||
|
:: 6th column = 1 = activation is not working (at the time of writing this), 0 = activation is working
|
||||||
|
:: 7th column = Key Type
|
||||||
|
:: 8th column = WMI Edition ID
|
||||||
|
:: 9th column = Version name incase same Edition ID is used in different OS versions with different key
|
||||||
|
:: Separator = _
|
||||||
|
|
||||||
|
|
||||||
|
:hwiddata
|
||||||
|
|
||||||
|
for %%# in (
|
||||||
|
8b351c9c-f398-4515-9900-09df49427262_XGVPP-NMH47-7TTHJ-W3FW7-8HV2C___4_X19-99683_X9J5T0gPQprYpz2euPvoJGlkurIO9h6N8ypE0KWYVpy0nbCKYnqSUCD7u8ReXAmc085jX2uM5PKurSee9Yq/PxesgiysQHDBsOhr98MXZZiIgy4ssnz2gZF70KB8tO3X7kk9LHwxXfz3rlquYPod9swe90nqvVaJMWCpQK0InUw_0_OEM:NONSLP_Enterprise
|
||||||
|
c83cef07-6b72-4bbc-a28f-a00386872839_3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT__27_X19-98746_WFZBjlVtHQumoaVE28/NHsRvv1lgkkfav6NPHqr6OC2u4vxkjjJkkl9OTF6DpHJu0IFrrQv+HYcdZ/WC5EzhOMqMxcujTBSAN7xLIVEbs72Db0Bi5iDAbOltJpk8QKKe18otQJ6vajW5WOPXjbgSJfDFaZQfiwvIJ1ICXt+stog_0_Volume:MAK_EnterpriseN
|
||||||
|
4de7cb65-cdf1-4de9-8ae8-e3cce27b9f2c_VK7JG-NPHTM-C97JM-9MPGT-3V66T__48_X19-98841_K3qev/5gQpX1RK1F9M9beEWWv/di1GsRF7OUcEMGTGDTYnaRenRcJaO8zOHQQvKDc57fon/v77ZpHQHT/jWWhWnLm7Ssory+s8tOs72fPjivVBDwpSPIEC1v+8Vpb4a3XCZet2e/Z5wmpCq9XDkowys3IcxYM0mHWBaNPu8gIe4_0_____Retail_Professional
|
||||||
|
9fbaf5d6-4d83-4422-870d-fdda6e5858aa_2B87N-8KFHP-DKV6R-Y2C8J-PKCKT__49_X19-98859_WcAcor6kQgxgkTRzcoxnb8UIoo5/ueYeaOKqy9/xAzlruHAKxhatXeGtSI58lXcCK5hxXkDmcyrRFwWSwdvg0txwTi7VusYcTNCLdmNWU/62iDrBhzMrCYtuhW9EV/g4+TlbjSm4PBJ0HMlI4YzAEnyJiBgKPDgBQ8Gj9LRbEgU_0_____Retail_ProfessionalN
|
||||||
|
f742e4ff-909d-4fe9-aacb-3231d24a0c58_4CPRK-NM3K3-X6XXQ-RXX86-WXCHW__98_X19-98877_MBDSEqlayxtVVEgIeAl8milgjS/BVHow6+MmpCyh9nweuctlT1+LbEHmDlnqDeLr9FQrN2FpEJtNr26rE0niMdvcAP51MfJsREyhWOEbrWwWyMH0KwDAci2WxWZTJp/SEZnq5HYYT1pPPLMWAkKRHJksJJFtg4zBtoyHvLjc35c_0_____Retail_CoreN
|
||||||
|
1d1bac85-7365-4fea-949a-96978ec91ae0_N2434-X9D7W-8PF6X-8DV9T-8TYMD__99_X19-99652_mpjCoh6soA/rwJutsjekZpA9vDUD8znR20V/c8FwSjuCcSbPhmP6bpJR9rfptAZqpagliMxA/OUZsx0Knt0n/hgOy2mv8pr24gI9uYXK8EfhG74bVdsyvZz1tyA6CaVR02ZahQvbKYzCmXUvsI+Wge3bHbKbVpn9Mvl+itn2a4g_0_____Retail_CoreCountrySpecific
|
||||||
|
3ae2cc14-ab2d-41f4-972f-5e20142771dc_BT79Q-G7N6G-PGBYW-4YWX6-6F4BT_100_X19-99661_KaUs6KwvtthPOsxd3x0tU/baKSv1DWSFOqbq7PbU/uYEY95p0Skzv3y4aXq+xVmfwSt8STL/4vSfFIAlsaRh7Vnq6Y/Ael8joeqI8hBN461fykoHxSELRMJ+eed50T0cJUS79ol6OTBOCCVeHgmtGVbHuL88TMWW69fGNdIMM3U_0_____Retail_CoreSingleLanguage
|
||||||
|
2b1f36bb-c1cd-4306-bf5c-a0367c2d97d8_YTMG3-N6DKC-DKB77-7M9GH-8HVX7_101_X19-98868_NpHxrAtA+GL6kawAP5Z2UdfUVcKFvf9UzEe6FIV/HztZqxpMBDFv2hdxCjD9+T8PKcW8j3n04McelOAgr3lD37Fu+wrvJIGX0dG3xEtU/MG9L9X5baBS8H6AmC6rq2+w5NUY8EchK9W2oatBflFb8IcfCSeAyOfsJei6bdu4mp8_0_____Retail_Core
|
||||||
|
2a6137f3-75c0-4f26-8e3e-d83d802865a4_XKCNC-J26Q9-KFHD2-FKTHY-KD72Y_119_X19-99606_gtywgqIP3j+bliKdunuseeZWtsOzWhj+DmSBq7nqeNarHutgbWEwvcRiGo+nwxONt9Ak/VyuO76ZWH/db3iRVTk1y61vFv15gVlOy1ovLjVHBvmPVdQXIne2N+pIMb0eBhZWHRX63mYdkZRZ0wg/+bj4xsjJv+qLpWhVCzNMge4_0_OEM:NONSLP_PPIPro
|
||||||
|
e558417a-5123-4f6f-91e7-385c1c7ca9d4_YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY_121_X19-98886_VuBmoSUdF63Cvwm9wNlc2yhD2tP9B72iVVWFNcbAwDGXF6o06oNMsIJ0VqGJDdBzZjVGw2wHokMabxZNDyIl90CO7trwgV8S0lLJVLymxyUaE3ThvN3YUsi9Q3H+5Kr0RpsojCWb+UQd/GY4bSXfyStXFylj6im7yv0db/ZWGbw_0_____Retail_Education
|
||||||
|
c5198a66-e435-4432-89cf-ec777c9d0352_84NGF-MHBT6-FXBX8-QWJK7-DRR8H_122_X19-98892_jQ6S2bbNoVrp/zvi8BEUwCf7fge1nAdspcjXyTeTySUiR+hXPiKQEWgyLqAdZ5Or+X2JGT/LZN1/eZ9P+REmzG/WQotZ+fyyPguoSsES+d312RkfmQoI5gVanEkGjZSU4YohREM/Vyf9MOO7dbH9MMEpFm2mje6OnhyJo2gux0g_0_____Retail_EducationN
|
||||||
|
cce9d2de-98ee-4ce2-8113-222620c64a27_KCNVH-YKWX8-GJJB9-H9FDT-6F7W2_125_X22-66075_wJ/BPDFz+13PVJtBqBo+E4LCm3LoMVALCQUun9kXGBULr7V8FQ5nKUudUGHDLNNVIIicdw9Uh26BKAt0/hnE7BpBkzwdi4qAdZgKXQ1t06Ek4+zXmoT225NvpaHsuhDkE687TtCB1ZWvAulA8G9ehE3HTJSoNm4wCFOQyIQQtqQ_1_Volume:MAK_EnterpriseS_VB
|
||||||
|
d06934ee-5448-4fd1-964a-cd077618aa06_43TBQ-NH92J-XKTM7-KT3KK-P39PB_125_X21-83233_V+y0SFmAnGwRwgNz+0sO0mj+XxSjbdRDpom1Iqx2BJcsf96Q5ittJOcMhKiNswyKuq5suM5vy60tA/AUdb1mrnnrnXfmz7nFam/BIOOfa18GA7vd1aNFufhpmCiMWxoGSewH/T1pnCZrsvGYIj//qC7aiQVKYBngO7UYWGaytgc_0_OEM:NONSLP_EnterpriseS_RS5
|
||||||
|
706e0cfd-23f4-43bb-a9af-1a492b9f1302_NK96Y-D9CD8-W44CQ-R8YTK-DYJWX_125_X21-05035_U2DIv+LAhSGz0rNbTiMQYaP3M41+0+ZioF7vh0COeeJSIruDFCZ3Li7ZM3dSleg6QTCxG04uZ3i3r1bCZv0+WAfU9rG+3BqLAwKlJS/31rETeRWvrxB1UK4mTMHwAJc9txDAc15ureqF+2b9pIIpwLljmFer6fI7z0iI6I/ZuTU_0_OEM:NONSLP_EnterpriseS_RS1
|
||||||
|
faa57748-75c8-40a2-b851-71ce92aa8b45_FWN7H-PF93Q-4GGP8-M8RF3-MDWWW_125_X19-99617_0frpwr4N/wBVRA/nOvAMqkxmRj6Vv9mA+jVNtnurAL1TjkPN/y+6YVUd5MP/Y4As4kddHoHiZXI+2siKHJsaV95ppXoHKR8d7FRVitr1F+82TbB7OVvdCclGrRZymnq25HvtSC3BROHt7ZXTgSCWMyB7MlbLiqHiTymOj5OMX1g_0_OEM:NONSLP_EnterpriseS_TH
|
||||||
|
2c060131-0e43-4e01-adc1-cf5ad1100da8_RQFNW-9TPM3-JQ73T-QV4VQ-DV9PT_126_X22-66108_UeA6O2iIW6zFMJzLMCQjVA7gUHOGRTiFB6LPrgjhgfJEXSZnDjxw8wsR+tp+JQWeaQDsVt06c2byH3z7Ft2wNk8n3gcXUknIjlcCckNjw05WDI64/wCqz+gtf1RajMEoV/mODpBx7rdLtCg03FyV7Z9LOib4/WLSmnxjDPKMG7s_1_Volume:MAK_EnterpriseSN_VB
|
||||||
|
e8f74caa-03fb-4839-8bcc-2e442b317e53_M33WV-NHY3C-R7FPM-BQGPT-239PG_126_X21-83264_NtP6sMWmOTCdABAbgIZfxZzRs8zaqzfaabLeFXQJvfJvQPLQPk2UxMliASJG+7YwwbTD8pyhUoQqUYrlCzJZ6jDSDyUTJkXgo9akR4fBOg6Z5wn5fW8NGAMDcLND5d9XxHl0gWH/HZNIs/GZaPJsCVVqPr7X8bk/y0DeIofxICU_1_Volume:MAK_EnterpriseSN_RS5
|
||||||
|
3d1022d8-969f-4222-b54b-327f5a5af4c9_2DBW3-N2PJG-MVHW3-G7TDK-9HKR4_126_X21-04921_WeNSkuiC3iyNT9tDqlj6KvM17UYMsYjEelyyMEyPEXSAbYA08lYtYJjCzxSE9T30p9dxqPIuj370OwHhAxG8a51/HoLNWR0grj08HmdOXUA8Ap4clEivxKM0zRvwPR6L2M2HQP0nN54c9It7ikzweJ0X2HHOb58oEw9LbMeUM/Y_0_Volume:MAK_EnterpriseSN_RS1
|
||||||
|
60c243e1-f90b-4a1b-ba89-387294948fb6_NTX6B-BRYC2-K6786-F6MVQ-M7V2X_126_X19-98770_QLG40WW/TtUqtir9K6FJCQXU1mfn27uutdOunHJ3gXk6v0Mbxaqu9GKqpg5xFzdFiOPb/8Bmk/ylwceXgoaUx1nKcBGb/Bg+jICiNMEYIbGyMuYiHb0iJeVbjbBLLfWuAAuUPftfnKPH3dAu1YvhaS5nv7a5wICrXdJWeVNpBxk_0_Volume:MAK_EnterpriseSN_TH
|
||||||
|
eb6d346f-1c60-4643-b960-40ec31596c45_DXG7C-N36C4-C4HTG-X4T3X-2YV77_161_X21-43626_vHO/5UEtrsDzGC30A2Ya5DYXlNMs7hVYiLvM7X31xkaFMxogbiy3ZDxBbjRku3VXyW+TYsFX/D/wdJgFmMrhsNrObkxqzYMMRjx+BpwOx2PspKpS2RyzovyRl8v93SvHB5IyoO2/3pm2YqJDK1hXLhms6+DDPuiofQt36q47reQ_0_____Retail_ProfessionalWorkstation
|
||||||
|
89e87510-ba92-45f6-8329-3afa905e3e83_WYPNQ-8C467-V2W6J-TX4WX-WT2RQ_162_X21-43644_phlxNLr+sk8cCCmAVU3k3XrtD6sFDeoaODc+21soKqePbVQbzPHgokS73ccok6/gDfu/u5UKc7omL8pm2IhIhf70oC+8M/FFp0zRFeC/ZFXdF2tL23oKWI9kZbvcaoZBiqaDGc1bNYi5KAZYaJU8wwqw16ZnohQJZ7QR9cgUfFQ_0_____Retail_ProfessionalWorkstationN
|
||||||
|
62f0c100-9c53-4e02-b886-a3528ddfe7f6_8PTT6-RNW4C-6V7J2-C2D3X-MHBPB_164_X21-04955_Px7QWdfy0esrMzQoydKlmIcGdfV0pQvbnumyrh4evDNF9gpENm8OIfZfljIynury0qZAkw4AG3uGyp+5IxZGIh6U3dz41uNVfEcA9NZ34OEBXMtjEOU1ZbJ8wp8JecQKwlORclvsri9OOi0GbGc0TYRanlci2jJL/3x/gSuWXCs_0_____Retail_ProfessionalEducation
|
||||||
|
13a38698-4a49-4b9e-8e83-98fe51110953_GJTYN-HDMQY-FRR76-HVGC7-QPF8P_165_X21-04956_GRSYno4+yqU/JMxHLDKdvdFWRz1uT90n5JkTvSqztDvXMf/mBhSV/OpppJWGo6UL0FwqYcu9oXl+Vx336pLAE5/EDzQHh+QCwOCDJiTKnd3hW/zrGMe6Sb0OAIkNNML9gcOBbr1IHFWhN99r8ZWl5JjpzMs2nPjejB1Ec8NCcpE_0_____Retail_ProfessionalEducationN
|
||||||
|
df96023b-dcd9-4be2-afa0-c6c871159ebe_NJCF7-PW8QT-3324D-688JX-2YV66_175_X21-41295_kkJyX1AwYgDYcGK1eIRdocybkbAfEtQkDxhRUhY89X2i2PSD9jcsGQgHWyD3KUKWb3bzR8QkDS3MTeieOw3EzD0RyAQhHc6lRR+rk18lh5UOVCgrZ6byxn29Ur+jAh0LJXImggC9JMGb2cTYaZckxzm3ICoAKwrmI9JnrzBTVmY_0_____Retail_ServerRdsh
|
||||||
|
d4ef7282-3d2c-4cf0-9976-8854e64a8d1e_V3WVW-N2PV2-CGWC3-34QGF-VMJ2C_178_X21-32983_YIMgXu2dZ9x1r1NLs3egTc/8EYc1RndYDvoX7QquQQLnhnhbSNBw3hmlqrQ0zNsTLut3EKpGZK2CwPspJJWE60lecdxI4211K748P6vkuqHPL4uFqXyKxTG3qRrtDIra5nnMn4GqG2fWuguzTXaumu8cJU3H1uTOsR1E/DQnJJ0_0_____Retail_Cloud
|
||||||
|
af5c9381-9240-417d-8d35-eb40cd03e484_NH9J3-68WK7-6FB93-4K3DF-DJ4F6_179_X21-32987_H0qrFdf+FQxcSRJDtEwd8OfwC4iH/25Q01jz3QuB9yhEqB0W1i83u0WDpVK04pvU1EDCCRRI/DhXynbkWpLC0chdTOW4k5jIy+aa0cD3fccz9ChSjVHMzyTg3abEVFAvy9rttUyxcFIOKcINXHTxTRp5cZPwOa393tlJyBiliAo_0_____Retail_CloudN
|
||||||
|
8ab9bdd1-1f67-4997-82d9-8878520837d9_XQQYW-NFFMW-XJPBH-K8732-CKFFD_188_X21-99378_Bwx3E7qmE6M8UR6+KPqLnnavI6ThNHHUO717RJY9di2YI9rzC3O0LceXOHjshSKwfwxosqFsD/p/inrJmabed1yA/ZWwISyGtAIGTtRgpuSE4TAfW6KEW0v7rcr2wwwDq7DHSuz4QN4odEGe9bvtx4zIZKufQzzN4TN2rd/BJkE_0_____OEM:DM_IoTEnterprise
|
||||||
|
ed655016-a9e8-4434-95d9-4345352c2552_QPM6N-7J2WJ-P88HH-P3YRH-YY74H_191_X21-99682_lE8qL1p4m68mv9wcxU2sdKZPIccybtOjr+aMAdV+sLHs9wzE26oz5GiSZ3UzpU7yoYrNMqwGkKX6mrCEGRLh+XR2Ricp7ELA1PkzaGm0FLUqaK2GNVQ00i+s6KcA2XRr/gWOhhGTqSCjpSi9cMiqMbftf9Bo/BJVK3ib9xU4OQw_0_OEM:NONSLP_IoTEnterpriseS_VB
|
||||||
|
d4bdc678-0a4b-4a32-a5b3-aaa24c3b0f24_K9VKN-3BGWV-Y624W-MCRMQ-BHDCD_202_X22-53884_hPcIn0dF9Dq6zlXd3RxBqVDPDnf5sTasTjUqhD6lGc9IkTc8476NHd1PV1Ds++VO34/dw2H2PWk33LT5Es6PnUi32Ypva4POy4QJo5W3qyduiJiHUOM5GS9yAkKfdHFgUXaUVwopYKq+EwmgxFmEvHYdWgREHgIMyNoKAZQK0Ok_0_____Retail_CloudEditionN
|
||||||
|
92fb8726-92a8-4ffc-94ce-f82e07444653_KY7PN-VR6RX-83W6Y-6DDYQ-T6R4W_203_X22-53847_DCP6QzPj+BD1EEmlBelBt7x9AmvQOfd7kdkUB0b0x6/TNHRnZtdyix3pNX2IDQtJbLnNLc2ZlMmupbZQrtyxe3xl8+xlCnHByXZpzFty9sGzq3MozHHA9u9WsJEf5R7tnFDplNM1UitlTVTAyuCGk83brY4zjmz/52pUQyQHzjI_0_____Retail_CloudEdition
|
||||||
|
d4f9b41f-205c-405e-8e08-3d16e88e02be_J7NJW-V6KBM-CC8RW-Y29Y4-HQ2MJ_205_X23-15027_U9eyfIBXrs++lyP6OjHHaF/wjieAxQeSKwzSkGBeTTpyCDcenq8t4cKvqDHnauSZzaVPWNoVcASkMCdlJi3EkR29KSgvx9/K2OB8LVH2PPpqvwjm1ZZdrvLMGhW83A/KRrtN9AOx7bnPC8MNLErnzbRRS9/aOrmp4Uzo8EIVagI_0_OEM:NONSLP_IoTEnterpriseSK
|
||||||
|
) do (
|
||||||
|
for /f "tokens=1-10 delims=_" %%A in ("%%#") do (
|
||||||
|
|
||||||
|
if %1==key if %osSKU%==%%C (
|
||||||
|
|
||||||
|
REM Detect key attempt 1
|
||||||
|
|
||||||
|
if "%2"=="attempt1" if not defined key (
|
||||||
|
echo "!applist!" | find /i "%%A" 1>nul && (
|
||||||
|
if %%F==1 set notworking=1
|
||||||
|
set key=%%B
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Detect key attempt 2
|
||||||
|
|
||||||
|
if "%2"=="attempt2" if not defined key (
|
||||||
|
set actidnotfound=1
|
||||||
|
set 9th=%%I
|
||||||
|
if not defined 9th (
|
||||||
|
if %%F==1 set notworking=1
|
||||||
|
set key=%%B
|
||||||
|
) else (
|
||||||
|
echo "%branch%" | find /i "%%I" 1>nul && (
|
||||||
|
if %%F==1 set notworking=1
|
||||||
|
set key=%%B
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Generate ticket
|
||||||
|
|
||||||
|
if %1==ticket if "%key%"=="%%B" (
|
||||||
|
set _nil=
|
||||||
|
set "string=OSMajorVersion=5;OSMinorVersion=1;OSPlatformId=2;PP=0;Pfn=Microsoft.Windows.%%C.%%D_8wekyb3d8bbwe;DownlevelGenuineState=1;$([char]0)"
|
||||||
|
for /f "tokens=* delims=" %%i in ('powershell [convert]::ToBas!_nil!e64String([Text.Encoding]::Unicode.GetBytes("""!string!"""^)^)') do set "encoded=%%i"
|
||||||
|
echo "!encoded!" | find "AAAA" 1>nul || exit /b
|
||||||
|
|
||||||
|
<nul set /p "=<?xml version="1.0" encoding="utf-8"?><genuineAuthorization xmlns="http://www.microsoft.com/DRM/SL/GenuineAuthorization/1.0"><version>1.0</version><genuineProperties origin="sppclient"><properties>OA3xOriginalProductId=;OA3xOriginalProductKey=;SessionId=!encoded!;TimeStampClient=2022-10-11T12:00:00Z</properties><signatures><signature name="clientLockboxKey" method="rsa-sha256">%%E=</signature></signatures></genuineProperties></genuineAuthorization>" >"%tdir%\GenuineTicket"
|
||||||
|
)
|
||||||
|
|
||||||
|
)
|
||||||
|
)
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Below code is used to get alternate edition name and key if current edition doesn't support HWID activation
|
||||||
|
|
||||||
|
:: ProfessionalCountrySpecific won't be converted because it's not a good idea to change CountrySpecific editions
|
||||||
|
|
||||||
|
:: 1st column = Current SKU ID
|
||||||
|
:: 2nd column = Current Edition Name
|
||||||
|
:: 3rd column = Current Edition Activation ID
|
||||||
|
:: 4th column = Alternate Edition Activation ID
|
||||||
|
:: 5th column = Alternate Edition HWID Key
|
||||||
|
:: 6th column = Alternate Edition Name
|
||||||
|
:: Separator = _
|
||||||
|
|
||||||
|
|
||||||
|
:hwidfallback
|
||||||
|
|
||||||
|
set notfoundaltactID=
|
||||||
|
if %_NoEditionChange%==1 exit /b
|
||||||
|
|
||||||
|
for %%# in (
|
||||||
|
125_EnterpriseS-2021___________cce9d2de-98ee-4ce2-8113-222620c64a27_ed655016-a9e8-4434-95d9-4345352c2552_QPM6N-7J2WJ-P88HH-P3YRH-YY74H_IoTEnterpriseS-2021
|
||||||
|
191_IoTEnterpriseS-Win11_______59eb965c-9150-42b7-a0ec-22151b9897c5_d4f9b41f-205c-405e-8e08-3d16e88e02be_J7NJW-V6KBM-CC8RW-Y29Y4-HQ2MJ_IoTEnterpriseSK-Win11
|
||||||
|
138_ProfessionalSingleLanguage_a48938aa-62fa-4966-9d44-9f04da3f72f2_4de7cb65-cdf1-4de9-8ae8-e3cce27b9f2c_VK7JG-NPHTM-C97JM-9MPGT-3V66T_Professional
|
||||||
|
) do (
|
||||||
|
for /f "tokens=1-6 delims=_" %%A in ("%%#") do if %osSKU%==%%A (
|
||||||
|
echo "!applist!" | find /i "%%C" 1>nul && (
|
||||||
|
echo "!applist!" | find /i "%%D" 1>nul && (
|
||||||
|
set altkey=%%E
|
||||||
|
set curedition=%%B
|
||||||
|
set altedition=%%F
|
||||||
|
) || (
|
||||||
|
set altedition=%%F
|
||||||
|
set notfoundaltactID=1
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
File diff suppressed because it is too large
Load Diff
426
MAS/Separate-Files-Version/Install_HWID_Key.cmd
Normal file
426
MAS/Separate-Files-Version/Install_HWID_Key.cmd
Normal file
@ -0,0 +1,426 @@
|
|||||||
|
@setlocal DisableDelayedExpansion
|
||||||
|
@echo off
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
::============================================================================
|
||||||
|
::
|
||||||
|
:: This script is a part of 'Microsoft Activation Scripts' (MAS) project.
|
||||||
|
::
|
||||||
|
:: Homepage: massgrave.dev
|
||||||
|
:: Email: windowsaddict@protonmail.com
|
||||||
|
::
|
||||||
|
::============================================================================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
:: For unattended mode, run the script with "/Insert-HWID-Key" parameter
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Re-launch the script with x64 process if it was initiated by x86 process on x64 bit Windows
|
||||||
|
:: or with ARM64 process if it was initiated by x86/ARM32 process on ARM64 Windows
|
||||||
|
|
||||||
|
set "_cmdf=%~f0"
|
||||||
|
for %%# in (%*) do (
|
||||||
|
if /i "%%#"=="r1" set r1=1
|
||||||
|
if /i "%%#"=="r2" set r2=1
|
||||||
|
)
|
||||||
|
|
||||||
|
if exist %SystemRoot%\Sysnative\cmd.exe if not defined r1 (
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
start %SystemRoot%\Sysnative\cmd.exe /c ""!_cmdf!" %* r1"
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
|
||||||
|
:: Re-launch the script with ARM32 process if it was initiated by x64 process on ARM64 Windows
|
||||||
|
|
||||||
|
if exist %SystemRoot%\SysArm32\cmd.exe if %PROCESSOR_ARCHITECTURE%==AMD64 if not defined r2 (
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
start %SystemRoot%\SysArm32\cmd.exe /c ""!_cmdf!" %* r2"
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
|
||||||
|
:: Set Path variable, it helps if it is misconfigured in the system
|
||||||
|
|
||||||
|
set "PATH=%SystemRoot%\System32;%SystemRoot%\System32\wbem;%SystemRoot%\System32\WindowsPowerShell\v1.0\"
|
||||||
|
if exist "%SystemRoot%\Sysnative\reg.exe" (
|
||||||
|
set "PATH=%SystemRoot%\Sysnative;%SystemRoot%\Sysnative\wbem;%SystemRoot%\Sysnative\WindowsPowerShell\v1.0\;%PATH%"
|
||||||
|
)
|
||||||
|
|
||||||
|
:: Check LF line ending
|
||||||
|
|
||||||
|
pushd "%~dp0"
|
||||||
|
>nul findstr /rxc:".*" "%~nx0"
|
||||||
|
if not %errorlevel%==0 (
|
||||||
|
echo:
|
||||||
|
echo Error: This is not a correct file. It has LF line ending issue.
|
||||||
|
echo:
|
||||||
|
ping 127.0.0.1 -n 6 > nul
|
||||||
|
popd
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
popd
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
cls
|
||||||
|
color 07
|
||||||
|
title Install Windows HWID Key
|
||||||
|
|
||||||
|
set _args=
|
||||||
|
set _elev=
|
||||||
|
set _unattended=0
|
||||||
|
|
||||||
|
set _args=%*
|
||||||
|
if defined _args set _args=%_args:"=%
|
||||||
|
if defined _args (
|
||||||
|
for %%A in (%_args%) do (
|
||||||
|
if /i "%%A"=="-el" set _elev=1
|
||||||
|
if /i "%%A"=="/Insert-HWID-Key" set _unattended=1
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
set winbuild=1
|
||||||
|
set "nul=>nul 2>&1"
|
||||||
|
set psc=powershell.exe
|
||||||
|
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
||||||
|
|
||||||
|
set _NCS=1
|
||||||
|
if %winbuild% LSS 10586 set _NCS=0
|
||||||
|
if %winbuild% GEQ 10586 reg query "HKCU\Console" /v ForceV2 2>nul | find /i "0x0" 1>nul && (set _NCS=0)
|
||||||
|
|
||||||
|
if %_NCS% EQU 1 (
|
||||||
|
for /F %%a in ('echo prompt $E ^| cmd') do set "esc=%%a"
|
||||||
|
set "Red="41;97m""
|
||||||
|
set "Green="42;97m""
|
||||||
|
set "_Green="40;92m""
|
||||||
|
set "_Yellow="40;93m""
|
||||||
|
) else (
|
||||||
|
set "Red="Red" "white""
|
||||||
|
set "Green="DarkGreen" "white""
|
||||||
|
set "_Green="Black" "Green""
|
||||||
|
set "_Yellow="Black" "Yellow""
|
||||||
|
)
|
||||||
|
|
||||||
|
set "nceline=echo: &echo ==== ERROR ==== &echo:"
|
||||||
|
set "eline=echo: &call :dk_color %Red% "==== ERROR ====" &echo:"
|
||||||
|
set "line=echo ___________________________________________________________________________________________"
|
||||||
|
if %~z0 GEQ 200000 (set "_exitmsg=Go back") else (set "_exitmsg=Exit")
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
if %winbuild% LSS 10240 (
|
||||||
|
%eline%
|
||||||
|
echo Unsupported OS version detected.
|
||||||
|
echo Project is supported for Windows 10/11.
|
||||||
|
goto ins_done
|
||||||
|
)
|
||||||
|
|
||||||
|
if exist "%SystemRoot%\Servicing\Packages\Microsoft-Windows-Server*Edition~*.mum" (
|
||||||
|
%eline%
|
||||||
|
echo HWID Activation is not supported for Windows Server.
|
||||||
|
goto ins_done
|
||||||
|
)
|
||||||
|
|
||||||
|
for %%# in (powershell.exe) do @if "%%~$PATH:#"=="" (
|
||||||
|
%nceline%
|
||||||
|
echo Unable to find powershell.exe in the system.
|
||||||
|
goto ins_done
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Fix for the special characters limitation in path name
|
||||||
|
|
||||||
|
set "_work=%~dp0"
|
||||||
|
if "%_work:~-1%"=="\" set "_work=%_work:~0,-1%"
|
||||||
|
|
||||||
|
set "_batf=%~f0"
|
||||||
|
set "_batp=%_batf:'=''%"
|
||||||
|
|
||||||
|
set _PSarg="""%~f0""" -el %_args%
|
||||||
|
|
||||||
|
set "_ttemp=%temp%"
|
||||||
|
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
echo "!_batf!" | find /i "!_ttemp!" 1>nul && (
|
||||||
|
if /i not "!_work!"=="!_ttemp!" (
|
||||||
|
%eline%
|
||||||
|
echo Script is launched from the temp folder,
|
||||||
|
echo Most likely you are running the script directly from the archive file.
|
||||||
|
echo:
|
||||||
|
echo Extract the archive file and launch the script from the extracted folder.
|
||||||
|
goto ins_done
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Elevate script as admin and pass arguments and preventing loop
|
||||||
|
|
||||||
|
>nul fltmc || (
|
||||||
|
if not defined _elev %nul% %psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && exit /b
|
||||||
|
%eline%
|
||||||
|
echo This script require administrator privileges.
|
||||||
|
echo To do so, right click on this script and select 'Run as administrator'.
|
||||||
|
goto ins_done
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
cls
|
||||||
|
mode 98, 30
|
||||||
|
echo:
|
||||||
|
echo Initializing...
|
||||||
|
call :dk_product
|
||||||
|
call :dk_ckeckwmic
|
||||||
|
call :dk_actids
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Check SKU value / Check in multiple places to find Edition change corruption
|
||||||
|
|
||||||
|
set osSKU=
|
||||||
|
set regSKU=
|
||||||
|
set wmiSKU=
|
||||||
|
|
||||||
|
for /f "tokens=3 delims=." %%a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions" /v OSProductPfn 2^>nul') do set "regSKU=%%a"
|
||||||
|
if %_wmic% EQU 1 for /f "tokens=2 delims==" %%a in ('"wmic Path Win32_OperatingSystem Get OperatingSystemSKU /format:LIST" 2^>nul') do if not errorlevel 1 set "wmiSKU=%%a"
|
||||||
|
if %_wmic% EQU 0 for /f "tokens=1" %%a in ('%psc% "([WMI]'Win32_OperatingSystem=@').OperatingSystemSKU" 2^>nul') do if not errorlevel 1 set "wmiSKU=%%a"
|
||||||
|
|
||||||
|
set osSKU=%wmiSKU%
|
||||||
|
if not defined osSKU set osSKU=%regSKU%
|
||||||
|
|
||||||
|
if not defined osSKU (
|
||||||
|
%eline%
|
||||||
|
echo SKU value was not detected properly. Aborting...
|
||||||
|
goto ins_done
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Detect key
|
||||||
|
|
||||||
|
set key=
|
||||||
|
set channel=
|
||||||
|
set actidnotfound=
|
||||||
|
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v BuildBranch 2^>nul') do set "branch=%%b"
|
||||||
|
|
||||||
|
if defined applist call :hwidkey key attempt1
|
||||||
|
if not defined key call :hwidkey key attempt2
|
||||||
|
|
||||||
|
if not defined key (
|
||||||
|
%eline%
|
||||||
|
echo [%winos% ^| %winbuild% ^| SKU:%osSKU%]
|
||||||
|
echo Unable to find this product in the HWID supported product list.
|
||||||
|
echo Make sure you are using updated version of the script.
|
||||||
|
echo https://massgrave.dev
|
||||||
|
goto ins_done
|
||||||
|
)
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
if %_unattended%==1 goto insertkey
|
||||||
|
|
||||||
|
cls
|
||||||
|
%line%
|
||||||
|
echo:
|
||||||
|
echo Install [%winos% ^| SKU:%osSKU% ^| %winbuild%] %channel% Key
|
||||||
|
echo [%key%]
|
||||||
|
%line%
|
||||||
|
echo:
|
||||||
|
if not "%regSKU%"=="%wmiSKU%" (
|
||||||
|
echo Note: Difference Found In SKU Value- WMI:%wmiSKU% Reg:%regSKU%
|
||||||
|
echo Restart the system to resolve it
|
||||||
|
echo:
|
||||||
|
)
|
||||||
|
call :dk_color %_Green% "Press [1] to Continue or [0] to %_exitmsg%"
|
||||||
|
choice /C:01 /N
|
||||||
|
if %errorlevel%==1 exit /b
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:insertkey
|
||||||
|
|
||||||
|
cls
|
||||||
|
%line%
|
||||||
|
|
||||||
|
if %_wmic% EQU 1 wmic path SoftwareLicensingService where __CLASS='SoftwareLicensingService' call InstallProductKey ProductKey="%key%" %nul%
|
||||||
|
if %_wmic% EQU 0 %psc% "(([WMISEARCHER]'SELECT Version FROM SoftwareLicensingService').Get()).InstallProductKey('%key%')" %nul%
|
||||||
|
if not %errorlevel%==0 cscript //nologo %windir%\system32\slmgr.vbs /ipk %key% %nul%
|
||||||
|
|
||||||
|
set error_code=%errorlevel%
|
||||||
|
cmd /c exit /b %error_code%
|
||||||
|
if %error_code% NEQ 0 set "error_code=[0x%=ExitCode%]"
|
||||||
|
|
||||||
|
echo:
|
||||||
|
echo [%winos% ^| SKU:%osSKU% ^| %winbuild%]
|
||||||
|
echo Installing %channel% [%key%]
|
||||||
|
echo:
|
||||||
|
|
||||||
|
if %error_code% EQU 0 (
|
||||||
|
call :dk_refresh
|
||||||
|
call :dk_color %Green% "[Successful]"
|
||||||
|
) else (
|
||||||
|
call :dk_color %Red% "[Unsuccessful] %error_code%"
|
||||||
|
if defined actidnotfound call :dk_color %Red% "Activation ID not found for this key."
|
||||||
|
)
|
||||||
|
%line%
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:ins_done
|
||||||
|
|
||||||
|
echo:
|
||||||
|
if %_unattended%==1 timeout /t 2 & exit /b
|
||||||
|
call :dk_color %_Yellow% "Press any key to %_exitmsg%..."
|
||||||
|
pause >nul
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: Refresh license status
|
||||||
|
|
||||||
|
:dk_refresh
|
||||||
|
|
||||||
|
if %_wmic% EQU 1 wmic path SoftwareLicensingService where __CLASS='SoftwareLicensingService' call RefreshLicenseStatus %nul%
|
||||||
|
if %_wmic% EQU 0 %psc% "$null=(([WMICLASS]'SoftwareLicensingService').GetInstances()).RefreshLicenseStatus()" %nul%
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
:: Get Windows Activation IDs
|
||||||
|
|
||||||
|
:dk_actids
|
||||||
|
|
||||||
|
set applist=
|
||||||
|
if %_wmic% EQU 1 set "chkapp=for /f "tokens=2 delims==" %%a in ('"wmic path SoftwareLicensingProduct where (ApplicationID='55c92734-d682-4d71-983e-d6ec3f16059f') get ID /VALUE" 2^>nul')"
|
||||||
|
if %_wmic% EQU 0 set "chkapp=for /f "tokens=2 delims==" %%a in ('%psc% "(([WMISEARCHER]'SELECT ID FROM SoftwareLicensingProduct WHERE ApplicationID=''55c92734-d682-4d71-983e-d6ec3f16059f''').Get()).ID ^| %% {echo ('ID='+$_)}" 2^>nul')"
|
||||||
|
%chkapp% do (if defined applist (call set "applist=!applist! %%a") else (call set "applist=%%a"))
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
:: Get Product name (WMI/REG methods are not reliable in all conditions, hence winbrand.dll method is used)
|
||||||
|
|
||||||
|
:dk_product
|
||||||
|
|
||||||
|
set winos=
|
||||||
|
set d1=[DllImport(\"winbrand\",CharSet=CharSet.Unicode)]public static extern string BrandingFormatString(string s);
|
||||||
|
set d2=$AP=Add-Type -Member '%d1%' -Name D1 -PassThru; $AP::BrandingFormatString('%%WINDOWS_LONG%%')
|
||||||
|
for /f "delims=" %%s in ('"%psc% %d2%"') do if not errorlevel 1 (set winos=%%s)
|
||||||
|
echo "%winos%" | find /i "Windows" 1>nul || (
|
||||||
|
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName 2^>nul') do set "winos=%%b"
|
||||||
|
if %winbuild% GEQ 22000 (
|
||||||
|
set winos=!winos:Windows 10=Windows 11!
|
||||||
|
)
|
||||||
|
)
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
:: Check wmic.exe
|
||||||
|
|
||||||
|
:dk_ckeckwmic
|
||||||
|
|
||||||
|
set _wmic=0
|
||||||
|
for %%# in (wmic.exe) do @if not "%%~$PATH:#"=="" (
|
||||||
|
wmic path Win32_ComputerSystem get CreationClassName /value 2>nul | find /i "computersystem" 1>nul && set _wmic=1
|
||||||
|
)
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:dk_color
|
||||||
|
|
||||||
|
if %_NCS% EQU 1 (
|
||||||
|
echo %esc%[%~1%~2%esc%[0m
|
||||||
|
) else (
|
||||||
|
%psc% write-host -back '%1' -fore '%2' '%3'
|
||||||
|
)
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
||||||
|
|
||||||
|
:: 1st column = Activation ID
|
||||||
|
:: 2nd column = Generic Retail/OEM/MAK Key
|
||||||
|
:: 3rd column = SKU ID
|
||||||
|
:: 4th column = Key Type
|
||||||
|
:: 5th column = WMI Edition ID
|
||||||
|
:: 6th column = Version name incase same Edition ID is used in different OS versions with different key
|
||||||
|
:: Separator = _
|
||||||
|
|
||||||
|
|
||||||
|
:hwidkey
|
||||||
|
|
||||||
|
for %%# in (
|
||||||
|
8b351c9c-f398-4515-9900-09df49427262_XGVPP-NMH47-7TTHJ-W3FW7-8HV2C___4_OEM:NONSLP_Enterprise
|
||||||
|
c83cef07-6b72-4bbc-a28f-a00386872839_3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT__27_Volume:MAK_EnterpriseN
|
||||||
|
4de7cb65-cdf1-4de9-8ae8-e3cce27b9f2c_VK7JG-NPHTM-C97JM-9MPGT-3V66T__48_____Retail_Professional
|
||||||
|
9fbaf5d6-4d83-4422-870d-fdda6e5858aa_2B87N-8KFHP-DKV6R-Y2C8J-PKCKT__49_____Retail_ProfessionalN
|
||||||
|
f742e4ff-909d-4fe9-aacb-3231d24a0c58_4CPRK-NM3K3-X6XXQ-RXX86-WXCHW__98_____Retail_CoreN
|
||||||
|
1d1bac85-7365-4fea-949a-96978ec91ae0_N2434-X9D7W-8PF6X-8DV9T-8TYMD__99_____Retail_CoreCountrySpecific
|
||||||
|
3ae2cc14-ab2d-41f4-972f-5e20142771dc_BT79Q-G7N6G-PGBYW-4YWX6-6F4BT_100_____Retail_CoreSingleLanguage
|
||||||
|
2b1f36bb-c1cd-4306-bf5c-a0367c2d97d8_YTMG3-N6DKC-DKB77-7M9GH-8HVX7_101_____Retail_Core
|
||||||
|
2a6137f3-75c0-4f26-8e3e-d83d802865a4_XKCNC-J26Q9-KFHD2-FKTHY-KD72Y_119_OEM:NONSLP_PPIPro
|
||||||
|
e558417a-5123-4f6f-91e7-385c1c7ca9d4_YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY_121_____Retail_Education
|
||||||
|
c5198a66-e435-4432-89cf-ec777c9d0352_84NGF-MHBT6-FXBX8-QWJK7-DRR8H_122_____Retail_EducationN
|
||||||
|
cce9d2de-98ee-4ce2-8113-222620c64a27_KCNVH-YKWX8-GJJB9-H9FDT-6F7W2_125_Volume:MAK_EnterpriseS_VB
|
||||||
|
d06934ee-5448-4fd1-964a-cd077618aa06_43TBQ-NH92J-XKTM7-KT3KK-P39PB_125_OEM:NONSLP_EnterpriseS_RS5
|
||||||
|
706e0cfd-23f4-43bb-a9af-1a492b9f1302_NK96Y-D9CD8-W44CQ-R8YTK-DYJWX_125_OEM:NONSLP_EnterpriseS_RS1
|
||||||
|
faa57748-75c8-40a2-b851-71ce92aa8b45_FWN7H-PF93Q-4GGP8-M8RF3-MDWWW_125_OEM:NONSLP_EnterpriseS_TH
|
||||||
|
2c060131-0e43-4e01-adc1-cf5ad1100da8_RQFNW-9TPM3-JQ73T-QV4VQ-DV9PT_126_Volume:MAK_EnterpriseSN_VB
|
||||||
|
e8f74caa-03fb-4839-8bcc-2e442b317e53_M33WV-NHY3C-R7FPM-BQGPT-239PG_126_Volume:MAK_EnterpriseSN_RS5
|
||||||
|
3d1022d8-969f-4222-b54b-327f5a5af4c9_2DBW3-N2PJG-MVHW3-G7TDK-9HKR4_126_Volume:MAK_EnterpriseSN_RS1
|
||||||
|
60c243e1-f90b-4a1b-ba89-387294948fb6_NTX6B-BRYC2-K6786-F6MVQ-M7V2X_126_Volume:MAK_EnterpriseSN_TH
|
||||||
|
eb6d346f-1c60-4643-b960-40ec31596c45_DXG7C-N36C4-C4HTG-X4T3X-2YV77_161_____Retail_ProfessionalWorkstation
|
||||||
|
89e87510-ba92-45f6-8329-3afa905e3e83_WYPNQ-8C467-V2W6J-TX4WX-WT2RQ_162_____Retail_ProfessionalWorkstationN
|
||||||
|
62f0c100-9c53-4e02-b886-a3528ddfe7f6_8PTT6-RNW4C-6V7J2-C2D3X-MHBPB_164_____Retail_ProfessionalEducation
|
||||||
|
13a38698-4a49-4b9e-8e83-98fe51110953_GJTYN-HDMQY-FRR76-HVGC7-QPF8P_165_____Retail_ProfessionalEducationN
|
||||||
|
df96023b-dcd9-4be2-afa0-c6c871159ebe_NJCF7-PW8QT-3324D-688JX-2YV66_175_____Retail_ServerRdsh
|
||||||
|
d4ef7282-3d2c-4cf0-9976-8854e64a8d1e_V3WVW-N2PV2-CGWC3-34QGF-VMJ2C_178_____Retail_Cloud
|
||||||
|
af5c9381-9240-417d-8d35-eb40cd03e484_NH9J3-68WK7-6FB93-4K3DF-DJ4F6_179_____Retail_CloudN
|
||||||
|
8ab9bdd1-1f67-4997-82d9-8878520837d9_XQQYW-NFFMW-XJPBH-K8732-CKFFD_188_____OEM:DM_IoTEnterprise
|
||||||
|
ed655016-a9e8-4434-95d9-4345352c2552_QPM6N-7J2WJ-P88HH-P3YRH-YY74H_191_OEM:NONSLP_IoTEnterpriseS_VB
|
||||||
|
d4bdc678-0a4b-4a32-a5b3-aaa24c3b0f24_K9VKN-3BGWV-Y624W-MCRMQ-BHDCD_202_____Retail_CloudEditionN
|
||||||
|
92fb8726-92a8-4ffc-94ce-f82e07444653_KY7PN-VR6RX-83W6Y-6DDYQ-T6R4W_203_____Retail_CloudEdition
|
||||||
|
d4f9b41f-205c-405e-8e08-3d16e88e02be_J7NJW-V6KBM-CC8RW-Y29Y4-HQ2MJ_205_OEM:NONSLP_IoTEnterpriseSK
|
||||||
|
) do (
|
||||||
|
for /f "tokens=1-6 delims=_" %%A in ("%%#") do (
|
||||||
|
|
||||||
|
if %1==key if %osSKU%==%%C (
|
||||||
|
|
||||||
|
REM Detect key attempt 1
|
||||||
|
|
||||||
|
if "%2"=="attempt1" if not defined key (
|
||||||
|
echo "!applist!" | find /i "%%A" 1>nul && (
|
||||||
|
set key=%%B
|
||||||
|
set channel=%%D
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
REM Detect key attempt 2
|
||||||
|
|
||||||
|
if "%2"=="attempt2" if not defined key (
|
||||||
|
set actidnotfound=1
|
||||||
|
set 6th=%%F
|
||||||
|
if not defined 6th (
|
||||||
|
set key=%%B
|
||||||
|
set channel=%%D
|
||||||
|
) else (
|
||||||
|
echo "%branch%" | find /i "%%F" 1>nul && (
|
||||||
|
set key=%%B
|
||||||
|
set channel=%%D
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
)
|
||||||
|
)
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
::========================================================================================================================================
|
4105
MAS/Separate-Files-Version/Online_KMS_Activation/Activate.cmd
Normal file
4105
MAS/Separate-Files-Version/Online_KMS_Activation/Activate.cmd
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,15 @@
|
|||||||
|
====================================================================================================
|
||||||
|
File Details:
|
||||||
|
====================================================================================================
|
||||||
|
|
||||||
|
cleanosppx64.exe SHA-1: d30a0e4e5911d3ca705617d17225372731c770e2
|
||||||
|
cleanosppx86.exe SHA-1: 39ed8659e7ca16aaccb86def94ce6cec4c847dd6
|
||||||
|
|
||||||
|
- These files are used in cleaning office license in C2R Retail office to VL conversion process.
|
||||||
|
- These files are taken from the old version of Microsoft official tool 'O15CTRRemove.diagcab'.
|
||||||
|
|
||||||
|
File: O15CTRRemove.diagcab (Digitally Signed)
|
||||||
|
Link: app.box.com/s/n8qpb5ljmv6djp77w5p6fk043dm6s3r1 (Unofficial Link)
|
||||||
|
SHA-1: 56c6ca76993a96cf9a255463b90db96cb9d24464
|
||||||
|
|
||||||
|
====================================================================================================
|
3
MAS/Separate-Files-Version/ReadMe.html
Normal file
3
MAS/Separate-Files-Version/ReadMe.html
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<html>
|
||||||
|
<meta http-equiv="refresh" content="0; url=https://massgrave.dev/">
|
||||||
|
</html>
|
File diff suppressed because it is too large
Load Diff
@ -1,226 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
@cls
|
|
||||||
color 07
|
|
||||||
title Check Activation Status [wmic]
|
|
||||||
set wspp=SoftwareLicensingProduct
|
|
||||||
set wsps=SoftwareLicensingService
|
|
||||||
set ospp=OfficeSoftwareProtectionProduct
|
|
||||||
set osps=OfficeSoftwareProtectionService
|
|
||||||
set winApp=55c92734-d682-4d71-983e-d6ec3f16059f
|
|
||||||
set o14App=59a52881-a989-479d-af46-f275c6370663
|
|
||||||
set o15App=0ff1ce15-a989-479d-af46-f275c6370663
|
|
||||||
for %%# in (spp_get,ospp_get,cW1nd0ws,sppw,c0ff1ce15,sppo,osppsvc,ospp14,ospp15) do set "%%#="
|
|
||||||
for /f "tokens=6 delims=[]. " %%# in ('ver') do set winbuild=%%#
|
|
||||||
set "spp_get=Description, DiscoveredKeyManagementServiceMachineName, DiscoveredKeyManagementServiceMachinePort, EvaluationEndDate, GracePeriodRemaining, ID, KeyManagementServiceMachine, KeyManagementServicePort, KeyManagementServiceProductKeyID, LicenseStatus, LicenseStatusReason, Name, PartialProductKey, ProductKeyID, VLActivationInterval, VLRenewalInterval"
|
|
||||||
set "ospp_get=%spp_get%"
|
|
||||||
if %winbuild% geq 9200 set "spp_get=%spp_get%, DiscoveredKeyManagementServiceMachineIpAddress, KeyManagementServiceLookupDomain, ProductKeyChannel, VLActivationTypeEnabled"
|
|
||||||
|
|
||||||
set "SysPath=%Windir%\System32"
|
|
||||||
if exist "%Windir%\Sysnative\reg.exe" (set "SysPath=%Windir%\Sysnative")
|
|
||||||
set "Path=%SysPath%;%Windir%;%SysPath%\Wbem;%SysPath%\WindowsPowerShell\v1.0\"
|
|
||||||
set "line2=************************************************************"
|
|
||||||
set "line3=____________________________________________________________"
|
|
||||||
|
|
||||||
call :casWpkey %wspp% %winApp% cW1nd0ws sppw
|
|
||||||
if %winbuild% geq 9200 call :casWpkey %wspp% %o15App% c0ff1ce15 sppo
|
|
||||||
wmic path %osps% get Version 1>nul 2>nul && (
|
|
||||||
call :casWpkey %ospp% %o14App% osppsvc ospp14
|
|
||||||
if %winbuild% lss 9200 call :casWpkey %ospp% %o15App% osppsvc ospp15
|
|
||||||
)
|
|
||||||
|
|
||||||
echo %line2%
|
|
||||||
echo *** Windows Status ***
|
|
||||||
echo %line2%
|
|
||||||
if not defined cW1nd0ws (
|
|
||||||
echo:
|
|
||||||
echo Error: product key not found.
|
|
||||||
goto :casWcon
|
|
||||||
)
|
|
||||||
set winID=1
|
|
||||||
for /f "tokens=2 delims==" %%# in ('"wmic path %wspp% where (ApplicationID='%winApp%' and PartialProductKey is not null) get ID /value"') do (
|
|
||||||
set "chkID=%%#"
|
|
||||||
call :casWdet "%wspp%" "%wsps%" "%spp_get%"
|
|
||||||
call :casWout
|
|
||||||
echo %line3%
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
|
|
||||||
:casWcon
|
|
||||||
set winID=0
|
|
||||||
set verbose=1
|
|
||||||
if not defined c0ff1ce15 (
|
|
||||||
if defined osppsvc goto :casWospp
|
|
||||||
goto :casWend
|
|
||||||
)
|
|
||||||
echo %line2%
|
|
||||||
echo *** Office Status ***
|
|
||||||
echo %line2%
|
|
||||||
for /f "tokens=2 delims==" %%# in ('"wmic path %wspp% where (ApplicationID='%o15App%' and PartialProductKey is not null) get ID /value"') do (
|
|
||||||
set "chkID=%%#"
|
|
||||||
call :casWdet "%wspp%" "%wsps%" "%spp_get%"
|
|
||||||
call :casWout
|
|
||||||
echo %line3%
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
set verbose=0
|
|
||||||
if defined osppsvc goto :casWospp
|
|
||||||
goto :casWend
|
|
||||||
|
|
||||||
:casWospp
|
|
||||||
if %verbose%==1 (
|
|
||||||
echo %line2%
|
|
||||||
echo *** Office Status ***
|
|
||||||
echo %line2%
|
|
||||||
)
|
|
||||||
if defined ospp15 for /f "tokens=2 delims==" %%# in ('"wmic path %ospp% where (ApplicationID='%o15App%' and PartialProductKey is not null) get ID /value"') do (
|
|
||||||
set "chkID=%%#"
|
|
||||||
call :casWdet "%ospp%" "%osps%" "%ospp_get%"
|
|
||||||
call :casWout
|
|
||||||
echo %line3%
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
if defined ospp14 for /f "tokens=2 delims==" %%# in ('"wmic path %ospp% where (ApplicationID='%o14App%' and PartialProductKey is not null) get ID /value"') do (
|
|
||||||
set "chkID=%%#"
|
|
||||||
call :casWdet "%ospp%" "%osps%" "%ospp_get%"
|
|
||||||
call :casWout
|
|
||||||
echo %line3%
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
goto :casWend
|
|
||||||
|
|
||||||
:casWpkey
|
|
||||||
wmic path %1 where (ApplicationID='%2' and PartialProductKey is not null) get ID /value 2>nul | findstr /i ID 1>nul && (set %3=1&set %4=1)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:casWdet
|
|
||||||
for %%# in (%~3) do set "%%#="
|
|
||||||
if %~1 equ %ospp% for %%# in (DiscoveredKeyManagementServiceMachineIpAddress, KeyManagementServiceLookupDomain, ProductKeyChannel, VLActivationTypeEnabled) do set "%%#="
|
|
||||||
set "cKmsClient="
|
|
||||||
set "cTblClient="
|
|
||||||
set "cAvmClient="
|
|
||||||
set "ExpireMsg="
|
|
||||||
set "_xpr="
|
|
||||||
for /f "tokens=* delims=" %%# in ('"wmic path %~1 where ID='%chkID%' get %~3 /value" ^| findstr ^=') do set "%%#"
|
|
||||||
|
|
||||||
set /a _gpr=(GracePeriodRemaining+1440-1)/1440
|
|
||||||
echo %Description%| findstr /i VOLUME_KMSCLIENT 1>nul && (set cKmsClient=1&set _mTag=Volume)
|
|
||||||
echo %Description%| findstr /i TIMEBASED_ 1>nul && (set cTblClient=1&set _mTag=Timebased)
|
|
||||||
echo %Description%| findstr /i VIRTUAL_MACHINE_ACTIVATION 1>nul && (set cAvmClient=1&set _mTag=Automatic VM)
|
|
||||||
cmd /c exit /b %LicenseStatusReason%
|
|
||||||
set "LicenseReason=%=ExitCode%"
|
|
||||||
set "LicenseMsg=Time remaining: %GracePeriodRemaining% minute(s) (%_gpr% day(s))"
|
|
||||||
if %_gpr% GEQ 1 for /f "tokens=* delims=" %%# in ('powershell -nop -ep bypass -c "$([DateTime]::Now.addMinutes(%GracePeriodRemaining%)).ToString('yyyy-MM-dd HH:mm:ss')" 2^>nul') do set "_xpr=%%#"
|
|
||||||
|
|
||||||
if %LicenseStatus% EQU 0 (
|
|
||||||
set "License=Unlicensed"
|
|
||||||
set "LicenseMsg="
|
|
||||||
)
|
|
||||||
if %LicenseStatus% EQU 1 (
|
|
||||||
set "License=Licensed"
|
|
||||||
set "LicenseMsg="
|
|
||||||
if %GracePeriodRemaining% EQU 0 (
|
|
||||||
if %winID% EQU 1 (set "ExpireMsg=The machine is permanently activated.") else (set "ExpireMsg=The product is permanently activated.")
|
|
||||||
) else (
|
|
||||||
set "LicenseMsg=%_mTag% activation expiration: %GracePeriodRemaining% minute(s) (%_gpr% day(s))"
|
|
||||||
if defined _xpr set "ExpireMsg=%_mTag% activation will expire %_xpr%"
|
|
||||||
)
|
|
||||||
)
|
|
||||||
if %LicenseStatus% EQU 2 (
|
|
||||||
set "License=Initial grace period"
|
|
||||||
if defined _xpr set "ExpireMsg=Initial grace period ends %_xpr%"
|
|
||||||
)
|
|
||||||
if %LicenseStatus% EQU 3 (
|
|
||||||
set "License=Additional grace period (KMS license expired or hardware out of tolerance)"
|
|
||||||
if defined _xpr set "ExpireMsg=Additional grace period ends %_xpr%"
|
|
||||||
)
|
|
||||||
if %LicenseStatus% EQU 4 (
|
|
||||||
set "License=Non-genuine grace period."
|
|
||||||
if defined _xpr set "ExpireMsg=Non-genuine grace period ends %_xpr%"
|
|
||||||
)
|
|
||||||
if %LicenseStatus% EQU 6 (
|
|
||||||
set "License=Extended grace period"
|
|
||||||
if defined _xpr set "ExpireMsg=Extended grace period ends %_xpr%"
|
|
||||||
)
|
|
||||||
if %LicenseStatus% EQU 5 (
|
|
||||||
set "License=Notification"
|
|
||||||
if "%LicenseReason%"=="C004F200" (set "LicenseMsg=Notification Reason: 0xC004F200 (non-genuine)."
|
|
||||||
) else if "%LicenseReason%"=="C004F009" (set "LicenseMsg=Notification Reason: 0xC004F009 (grace time expired)."
|
|
||||||
) else (set "LicenseMsg=Notification Reason: 0x%LicenseReason%"
|
|
||||||
)
|
|
||||||
)
|
|
||||||
if %LicenseStatus% GTR 6 (
|
|
||||||
set "License=Unknown"
|
|
||||||
set "LicenseMsg="
|
|
||||||
)
|
|
||||||
if not defined cKmsClient exit /b
|
|
||||||
|
|
||||||
if %KeyManagementServicePort%==0 set KeyManagementServicePort=1688
|
|
||||||
set "KmsReg=Registered KMS machine name: %KeyManagementServiceMachine%:%KeyManagementServicePort%"
|
|
||||||
if "%KeyManagementServiceMachine%"=="" set "KmsReg=Registered KMS machine name: KMS name not available"
|
|
||||||
|
|
||||||
if %DiscoveredKeyManagementServiceMachinePort%==0 set DiscoveredKeyManagementServiceMachinePort=1688
|
|
||||||
set "KmsDns=KMS machine name from DNS: %DiscoveredKeyManagementServiceMachineName%:%DiscoveredKeyManagementServiceMachinePort%"
|
|
||||||
if "%DiscoveredKeyManagementServiceMachineName%"=="" set "KmsDns=DNS auto-discovery: KMS name not available"
|
|
||||||
|
|
||||||
for /f "tokens=* delims=" %%# in ('"wmic path %~2 get ClientMachineID, KeyManagementServiceHostCaching /value" ^| findstr ^=') do set "%%#"
|
|
||||||
if /i %KeyManagementServiceHostCaching%==True (set KeyManagementServiceHostCaching=Enabled) else (set KeyManagementServiceHostCaching=Disabled)
|
|
||||||
|
|
||||||
if %winbuild% lss 9200 exit /b
|
|
||||||
if %~1 equ %ospp% exit /b
|
|
||||||
|
|
||||||
if "%DiscoveredKeyManagementServiceMachineIpAddress%"=="" set "DiscoveredKeyManagementServiceMachineIpAddress=not available"
|
|
||||||
|
|
||||||
if "%KeyManagementServiceLookupDomain%"=="" set "KeyManagementServiceLookupDomain="
|
|
||||||
|
|
||||||
if %VLActivationTypeEnabled% EQU 3 (
|
|
||||||
set VLActivationType=Token
|
|
||||||
) else if %VLActivationTypeEnabled% EQU 2 (
|
|
||||||
set VLActivationType=KMS
|
|
||||||
) else if %VLActivationTypeEnabled% EQU 1 (
|
|
||||||
set VLActivationType=AD
|
|
||||||
) else (
|
|
||||||
set VLActivationType=All
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:casWout
|
|
||||||
echo:
|
|
||||||
echo Name: %Name%
|
|
||||||
echo Description: %Description%
|
|
||||||
echo Activation ID: %ID%
|
|
||||||
echo Extended PID: %ProductKeyID%
|
|
||||||
if defined ProductKeyChannel echo Product Key Channel: %ProductKeyChannel%
|
|
||||||
echo Partial Product Key: %PartialProductKey%
|
|
||||||
echo License Status: %License%
|
|
||||||
if defined LicenseMsg echo %LicenseMsg%
|
|
||||||
if not %LicenseStatus%==0 if not %EvaluationEndDate:~0,8%==16010101 echo Evaluation End Date: %EvaluationEndDate:~0,4%-%EvaluationEndDate:~4,2%-%EvaluationEndDate:~6,2% %EvaluationEndDate:~8,2%:%EvaluationEndDate:~10,2% UTC
|
|
||||||
if not defined cKmsClient (
|
|
||||||
if defined ExpireMsg echo:&echo: %ExpireMsg%
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
if defined VLActivationTypeEnabled echo Configured Activation Type: %VLActivationType%
|
|
||||||
echo:
|
|
||||||
if not %LicenseStatus%==1 (
|
|
||||||
echo Please activate the product in order to update KMS client information values.
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
echo Most recent activation information:
|
|
||||||
echo Key Management Service client information
|
|
||||||
echo: Client Machine ID (CMID): %ClientMachineID%
|
|
||||||
echo: %KmsDns%
|
|
||||||
echo: %KmsReg%
|
|
||||||
if defined DiscoveredKeyManagementServiceMachineIpAddress echo: KMS machine IP address: %DiscoveredKeyManagementServiceMachineIpAddress%
|
|
||||||
echo: KMS machine extended PID: %KeyManagementServiceProductKeyID%
|
|
||||||
echo: Activation interval: %VLActivationInterval% minutes
|
|
||||||
echo: Renewal interval: %VLRenewalInterval% minutes
|
|
||||||
echo: KMS host caching: %KeyManagementServiceHostCaching%
|
|
||||||
if defined KeyManagementServiceLookupDomain echo: KMS SRV record lookup domain: %KeyManagementServiceLookupDomain%
|
|
||||||
if defined ExpireMsg echo:&echo: %ExpireMsg%
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:casWend
|
|
||||||
echo:
|
|
||||||
echo Press any key to exit.
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,44 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
File Details:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
fabb5a0fc1e6a372219711152291339af36ed0b5 *gatherosstate.exe Virus Total = 0/68
|
|
||||||
ca3a51fdfc8749b8be85f7904b1c238a6dfba135 *slc.dll Virus Total = 1/67
|
|
||||||
578364cb2319da7999acd8c015b4ce8da8f1b282 *ARM64_gatherosstate.exe Virus Total = 0/70
|
|
||||||
5dbea3a580cf60391453a04a5c910a3ceca2b810 *ARM64_slc.dll Virus Total = 0/69
|
|
||||||
48d928b1bec25a56fe896c430c2c034b7866aa7a *ClipUp.exe Virus Total = 0/67
|
|
||||||
|
|
||||||
Virus Total Report Date: 08-12-2019
|
|
||||||
|
|
||||||
- File Sources:
|
|
||||||
|
|
||||||
- ClipUp.exe (Original):
|
|
||||||
From Windows server 2016 x64 ISO
|
|
||||||
|
|
||||||
- gatherosstate.exe (Original):
|
|
||||||
From Windows 10 x86 14393 ADK
|
|
||||||
|
|
||||||
- ARM64_gatherosstate.exe (Original):
|
|
||||||
From Windows 10 ARM64 18362 ISO
|
|
||||||
|
|
||||||
- ARM64_slc.dll and slc.dll:
|
|
||||||
|
|
||||||
Original slshim
|
|
||||||
https://github.com/vyvojar/slshim
|
|
||||||
|
|
||||||
Improved by @mspaintmsi
|
|
||||||
https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
https://gitlab.com/massgrave/massgrave
|
|
||||||
|
|
||||||
Source code is included.
|
|
||||||
slc.dll is based on Integrated_Patcher_2 method.
|
|
||||||
It is currently in use in HWID/KMS38 Activation script.
|
|
||||||
|
|
||||||
____________________________________________________________________________________________________
|
|
||||||
|
|
||||||
You can safely delete the following files if it's not required for you.
|
|
||||||
|
|
||||||
ClipUp.exe - Required to KMS38 activate Server Cor and Acor editions.
|
|
||||||
ARM64_gatherosstate.exe and ARM64_slc.dll - Required to activate ARM64 Arch Windows 10.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
Binary file not shown.
Binary file not shown.
@ -1,746 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
|
|
||||||
:: For unattended mode, run the script with /u parameter.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::=========================================================================================================
|
|
||||||
: Credits:
|
|
||||||
::=========================================================================================================
|
|
||||||
::
|
|
||||||
:: @mspaintmsi Original co-authors of HWID/KMS38 Activation without KMS or predecessor install/upgrade.
|
|
||||||
:: and Created various methods for HWID/KMS38 Activation
|
|
||||||
:: *Anonymous https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
:: https://gitlab.com/massgrave/massgrave
|
|
||||||
::
|
|
||||||
:: @vyvojar Original slshim (slc.dll)
|
|
||||||
:: https://github.com/vyvojar/slshim/releases
|
|
||||||
::
|
|
||||||
::---------------------------------------------------------------------------------------------------------
|
|
||||||
::
|
|
||||||
:: HWID/KMS38 methods Suggestions and improvements:-
|
|
||||||
::
|
|
||||||
:: @sponpa New ideas for the HWID/KM38 Generation
|
|
||||||
:: https://www.nsaneforums.com/topic/316668--/page/21/?tab=comments#comment-1431257
|
|
||||||
::
|
|
||||||
:: @leitek8 Improvements for the slc.dll
|
|
||||||
:: https://www.nsaneforums.com/topic/316668--/page/22/?tab=comments#comment-1438005
|
|
||||||
::
|
|
||||||
::---------------------------------------------------------------------------------------------------------
|
|
||||||
::
|
|
||||||
:: Kind Help:-
|
|
||||||
::
|
|
||||||
:: Thanks for having my back and answering all of my queries. (In no particular order)
|
|
||||||
::
|
|
||||||
:: @AveYo aka @BAU, @sponpa, @mspaintmsi @RPO, @leitek8, @mxman2k, @Yen, @abbodi1406
|
|
||||||
::
|
|
||||||
:: @BorrowedWifi for providing support in fixing English grammar errors in the Read Me.
|
|
||||||
:: @Chibi ANUBIS and @smashed for testing scripts for ARM64 system.
|
|
||||||
::
|
|
||||||
:: Special thanks to @abbodi1406 for providing the great help.
|
|
||||||
::
|
|
||||||
::---------------------------------------------------------------------------------------------------------
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: P.S. I (@WindowsAddict) did not help in the development of HWID/KMS38 Activation in any way, I only
|
|
||||||
:: manage batch script tool which is based on the above mentioned original co-authors activation methods.
|
|
||||||
::
|
|
||||||
::=========================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
title [HWID] Digital License Activation
|
|
||||||
set Unattended=
|
|
||||||
set _args=
|
|
||||||
set _elev=
|
|
||||||
set "_arg1=%~1"
|
|
||||||
if not defined _arg1 goto :DL_NoProgArgs
|
|
||||||
set "_args=%~1"
|
|
||||||
set "_arg2=%~2"
|
|
||||||
if defined _arg2 set "_args=%~1 %~2"
|
|
||||||
for %%A in (%_args%) do (
|
|
||||||
if /i "%%A"=="-el" set _elev=1
|
|
||||||
if /i "%%A"=="/u" set Unattended=1)
|
|
||||||
:DL_NoProgArgs
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "Red="white" "DarkRed""
|
|
||||||
set "Green="white" "DarkGreen""
|
|
||||||
set "Magenta="white" "darkmagenta""
|
|
||||||
set "Gray="white" "darkgray""
|
|
||||||
set "Black="white" "Black""
|
|
||||||
set "ELine=echo: &call :DL_color "==== ERROR ====" %Red% &echo:"
|
|
||||||
set slp=SoftwareLicensingProduct
|
|
||||||
set sls=SoftwareLicensingService
|
|
||||||
set wApp=55c92734-d682-4d71-983e-d6ec3f16059f
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
for %%i in (powershell.exe) do if "%%~$path:i"=="" (
|
|
||||||
echo: &echo ==== ERROR ==== &echo:
|
|
||||||
echo Powershell is not installed in the system.
|
|
||||||
echo Aborting...
|
|
||||||
goto DL_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 10240 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo Project is supported only for Windows 10.
|
|
||||||
goto DL_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Elevate script as admin and pass arguments and preventing loop
|
|
||||||
:: Thanks to @hearywarlot [ https://forums.mydigitallife.net/threads/.74332/ ] for the VBS method.
|
|
||||||
:: Thanks to @abbodi1406 for the powershell method and solving special characters issue in file path name.
|
|
||||||
|
|
||||||
%nul% reg query HKU\S-1-5-19 && (
|
|
||||||
goto :DL_Passed
|
|
||||||
) || (
|
|
||||||
if defined _elev goto :DL_E_Admin
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_vbsf=%temp%\admin.vbs"
|
|
||||||
set _PSarg="""%~f0""" -el
|
|
||||||
if defined _args set _PSarg="""%~f0""" -el """%_args%"""
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
(
|
|
||||||
echo Set strArg=WScript.Arguments.Named
|
|
||||||
echo Set strRdlproc = CreateObject^("WScript.Shell"^).Exec^("rundll32 kernel32,Sleep"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& strRdlproc.ProcessId ^& "'"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& .ParentProcessId ^& "'"^)
|
|
||||||
echo If InStr ^(.CommandLine, WScript.ScriptName^) ^<^> 0 Then
|
|
||||||
echo strLine = Mid^(.CommandLine, InStr^(.CommandLine , "/File:"^) + Len^(strArg^("File"^)^) + 8^)
|
|
||||||
echo End If
|
|
||||||
echo End With
|
|
||||||
echo .Terminate
|
|
||||||
echo End With
|
|
||||||
echo CreateObject^("Shell.Application"^).ShellExecute "cmd.exe", "/c " ^& chr^(34^) ^& chr^(34^) ^& strArg^("File"^) ^& chr^(34^) ^& strLine ^& chr^(34^), "", "runas", 1
|
|
||||||
)>"!_vbsf!"
|
|
||||||
|
|
||||||
(%nul% cscript //NoLogo "!_vbsf!" /File:"!_batf!" -el "!_args!") && (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
%nul% %_psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && (
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
goto :DL_E_Admin
|
|
||||||
)
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:DL_E_Admin
|
|
||||||
%ELine%
|
|
||||||
echo This script require administrator privileges.
|
|
||||||
echo To do so, right click on this script and select 'Run as administrator'.
|
|
||||||
goto DL_Done
|
|
||||||
|
|
||||||
:DL_Passed
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Fix for the special characters limitation in path name
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
set "_work=%~dp0"
|
|
||||||
if "%_work:~-1%"=="\" set "_work=%_work:~0,-1%"
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_batp=%_batf:'=''%"
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
mode con: cols=102 lines=31
|
|
||||||
|
|
||||||
:: Check Windows OS name
|
|
||||||
|
|
||||||
set winos=
|
|
||||||
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
if not defined winos for /f "tokens=2* delims== " %%a in ('"wmic os get caption /value" 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
|
|
||||||
call :DL_CheckPermAct
|
|
||||||
if defined PermAct (
|
|
||||||
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
call :DL_color1 " " %Black% &call :DL_color "Checking: %winos% is Permanently Activated." %Green%
|
|
||||||
call :DL_color1 " " %Black% &call :DL_color "Activation is not required." %Gray%
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
if defined Unattended goto DL_Done
|
|
||||||
|
|
||||||
echo Press [1] or [2] button in Keyboard :
|
|
||||||
echo ___________________________________________
|
|
||||||
echo:
|
|
||||||
choice /C:12 /N /M "> [1] Activate [2] Exit : "
|
|
||||||
|
|
||||||
if errorlevel 2 exit /b
|
|
||||||
if errorlevel 1 Goto DL_Continue
|
|
||||||
)
|
|
||||||
|
|
||||||
:DL_Continue
|
|
||||||
cls
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cd /d "!_work!"
|
|
||||||
pushd "!_work!"
|
|
||||||
|
|
||||||
if not exist "!_work!\BIN\" (
|
|
||||||
%ELine%
|
|
||||||
echo 'BIN' Folder does not exist in current directory.
|
|
||||||
echo It's supposed to have files required for the Activation.
|
|
||||||
goto DL_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
echo %winos%| findstr /I Evaluation >nul && set Eval=1||set Eval=
|
|
||||||
if defined Eval (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild%] HWID Activation is Not Supported.
|
|
||||||
echo %winos%| findstr /I Server >nul && (
|
|
||||||
echo Server Evaluation cannot be activated. Convert it to full Server OS.
|
|
||||||
) || (
|
|
||||||
echo Evaluation Editions cannot be activated. Install full Windows OS.
|
|
||||||
)
|
|
||||||
goto DL_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check SKU value
|
|
||||||
|
|
||||||
set SKU=
|
|
||||||
for /f "tokens=2 delims==" %%a IN ('"wmic Path Win32_OperatingSystem Get OperatingSystemSKU /format:LIST" 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
if not defined SKU for /f "tokens=3 delims=." %%a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions" /v OSProductPfn 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
|
|
||||||
if "%osSKU%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo SKU value was not detected properly. Aborting...
|
|
||||||
goto DL_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
set osedition=
|
|
||||||
call :_CheckEdition %nul%
|
|
||||||
|
|
||||||
if "%osedition%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild% ^| SKU:%osSKU%] HWID Activation is Not Supported.
|
|
||||||
goto DL_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Windows Architecture
|
|
||||||
|
|
||||||
set arch=
|
|
||||||
reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > nul && set arch=x86|| set arch=x64
|
|
||||||
wmic os get osarchitecture | find /i "ARM" > nul && set arch=ARM64|| echo %PROCESSOR_ARCHITECTURE% | find /i "ARM" > nul && set arch=ARM64
|
|
||||||
|
|
||||||
if "%arch%"=="ARM64" call :DL_check ARM64_gatherosstate.exe ARM64_slc.dll
|
|
||||||
if not "%arch%"=="ARM64" call :DL_check gatherosstate.exe slc.dll
|
|
||||||
if defined _miss goto DL_Done
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
set key=
|
|
||||||
call :%osedition% %nul%
|
|
||||||
|
|
||||||
if "%key%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild%] HWID Activation is Not Supported.
|
|
||||||
goto DL_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo Checking OS Info [%winos% ^| %winbuild% ^| %arch%]
|
|
||||||
|
|
||||||
set "Chkint=Checking Internet Connection "
|
|
||||||
set IntCon=
|
|
||||||
ping -n 1 www.microsoft.com %nul% && (
|
|
||||||
set IntCon=1
|
|
||||||
echo %Chkint% [Connected]
|
|
||||||
) || (
|
|
||||||
call :DL_color "%Chkint% [Not connected] [Ping www.microsoft.com - Failed]" %Red%
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set _1=ClipSVC
|
|
||||||
set _2=wlidsvc
|
|
||||||
set _3=sppsvc
|
|
||||||
set _4=wuauserv
|
|
||||||
|
|
||||||
for %%# in (%_1% %_2% %_3% %_4%) do call :DL_ServiceCheck %%#
|
|
||||||
|
|
||||||
set "CLecho=Checking %_1% [Service Status -%Cl_state%] [Startup Type -%Cl_start_type%]"
|
|
||||||
set "wlecho=Checking %_2% [Service Status -%wl_state%] [Startup Type -%wl_start_type%]"
|
|
||||||
set "specho=Checking %_3% [Service Status -%sp_state%] [Startup Type -%sp_start_type%]"
|
|
||||||
set "wuecho=Checking %_4% [Service Status -%wu_state%] [Startup Type -%wu_start_type%]"
|
|
||||||
|
|
||||||
if not "%Cl_start_type%"=="Demand" (call :DL_color "%CLecho%" %Red% & set Clst_e=1) else (echo %CLecho%)
|
|
||||||
if not "%wl_start_type%"=="Demand" (call :DL_color "%wlecho%" %Red% & set wlst_e=1) else (echo %wlecho%)
|
|
||||||
if not "%sp_start_type%"=="Delayed-Auto" (call :DL_color "%specho%" %Red% & set spst_e=1) else (echo %specho%)
|
|
||||||
|
|
||||||
if "%wu_start_type%"=="Disabled" (set "_C=%Red%") else (set "_C=%Gray%")
|
|
||||||
if not "%wu_start_type%"=="Auto" (call :DL_color "%wuecho%" %_C% & set wust_e=1) else (echo %wuecho%)
|
|
||||||
|
|
||||||
echo:
|
|
||||||
if defined Clst_e (sc config %_1% start= Demand %nul% && set Clst_s=%_1%-Demand || set Clst_u=%_1%-Demand )
|
|
||||||
if defined wlst_e (sc config %_2% start= Demand %nul% && set wlst_s=%_2%-Demand || set wlst_u=%_2%-Demand )
|
|
||||||
if defined spst_e (sc config %_3% start= Delayed-Auto %nul% && set spst_s=%_3%-Delayed-Auto || set spst_u=%_3%-Delayed-Auto )
|
|
||||||
if defined wust_e (sc config %_4% start= Auto %nul% && set wust_s=%_4%-Auto || set wust_u=%_4%-Auto )
|
|
||||||
|
|
||||||
for %%# in (Clst_s,wlst_s,spst_s,wust_s) do if defined %%# set st_s=1
|
|
||||||
if defined st_s (echo Changing services Startup Type to [ %Clst_s%%wlst_s%%spst_s%%wust_s%] [Successful])
|
|
||||||
|
|
||||||
for %%# in (Clst_u,wlst_u,spst_u,wust_u) do if defined %%# set st_u=1
|
|
||||||
if defined st_u (call :DL_color "Error in changing Startup Type to [ %Clst_u%%wlst_u%%spst_u%%wust_u%]" %Red%)
|
|
||||||
|
|
||||||
if not "%Cl_state%"=="Running" (%_psc% start-service %_1% %nul% && set Cl_s=%_1% || set Cl_u=%_1% )
|
|
||||||
if not "%wl_state%"=="Running" (%_psc% start-service %_2% %nul% && set wl_s=%_2% || set wl_u=%_2% )
|
|
||||||
if not "%sp_state%"=="Running" (%_psc% start-service %_3% %nul% && set sp_s=%_3% || set sp_u=%_3% )
|
|
||||||
if not "%wu_state%"=="Running" (%_psc% start-service %_4% %nul% && set wu_s=%_4% || set wu_u=%_4% )
|
|
||||||
|
|
||||||
for %%# in (Cl_s,wl_s,sp_s,wu_s) do if defined %%# set s_s=1
|
|
||||||
if defined s_s (echo Starting services [ %Cl_s%%wl_s%%sp_s%%wu_s%] [Successful])
|
|
||||||
|
|
||||||
for %%# in (Cl_u,wl_u,sp_u,wu_u) do if defined %%# set s_u=1
|
|
||||||
if defined s_u (call :DL_color "Error in starting services [ %Cl_u%%wl_u%%sp_u%%wu_u%]" %Red%)
|
|
||||||
|
|
||||||
if defined wust_u (
|
|
||||||
call :DL_color "Most likely the Windows Update Service was blocked with a tool, identify and unblock it." %Magenta%
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Thanks to @abbodi1406 for the WMI methods
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set _channel=
|
|
||||||
set _Keyexist=
|
|
||||||
set _partial=
|
|
||||||
|
|
||||||
for /f "tokens=2 delims==" %%# in ('wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get ProductKeyChannel /value 2^>nul') do set "_channel=%%#"
|
|
||||||
for %%A in (MAK, OEM, Retail) do echo %_channel%| findstr /i %%A >nul && set _Keyexist=1
|
|
||||||
|
|
||||||
if defined _Keyexist (
|
|
||||||
for /f "tokens=2 delims==" %%# in ('wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get PartialProductKey /value 2^>nul') do set "_partial=%%#"
|
|
||||||
call echo Checking Installed Product Key [%_channel%] [Partial Key -%%_partial%%]
|
|
||||||
)
|
|
||||||
|
|
||||||
if not defined _Keyexist (
|
|
||||||
set "InsKey=Installing Generic Product Key "
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call InstallProductKey ProductKey="%key%" %nul% && (
|
|
||||||
for /f "tokens=2 delims==" %%# in ('wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get ProductKeyChannel /value 2^>nul') do set "_channel=%%#"
|
|
||||||
call echo %%InsKey%% [%key%] [%%_channel%%] [Successful]
|
|
||||||
) || (
|
|
||||||
call :DL_color "%%InsKey%% [%key%] [Unsuccessful]" %Red%
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call RefreshLicenseStatus %nul%
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Files are copied to temp to generate ticket to avoid possible issues in case the path contains special character or non English names.
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set "temp_=%SystemRoot%\Temp\_Ticket_Work"
|
|
||||||
if exist "%temp_%\" @RD /S /Q "%temp_%\" %nul%
|
|
||||||
md "%temp_%\" %nul%
|
|
||||||
|
|
||||||
cd /d "!_work!\BIN\"
|
|
||||||
|
|
||||||
set ARM64_file=
|
|
||||||
if "%arch%"=="ARM64" set ARM64_file=ARM64_
|
|
||||||
|
|
||||||
copy /y /b "%ARM64_file%gatherosstate.exe" "%temp_%\gatherosstate.exe" %nul%
|
|
||||||
copy /y /b "%ARM64_file%slc.dll" "%temp_%\slc.dll" %nul%
|
|
||||||
|
|
||||||
set cfailed=
|
|
||||||
if not exist "%temp_%\gatherosstate.exe" set cfailed=1
|
|
||||||
if not exist "%temp_%\slc.dll" set cfailed=1
|
|
||||||
|
|
||||||
set "copyfiles=Copying Required Files to Temp "
|
|
||||||
if defined cfailed (
|
|
||||||
call :DL_color "%copyfiles% [%SystemRoot%\Temp\_Ticket_Work\] [Unsuccessful] Aborting..." %Red%
|
|
||||||
goto :DL_Act_Cont
|
|
||||||
) else (
|
|
||||||
echo %copyfiles% [%SystemRoot%\Temp\_Ticket_Work\] [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
cd /d "%temp_%\"
|
|
||||||
attrib -R -A -S -H *.*
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
set "GatherMod=Creating modified gatherosstate "
|
|
||||||
|
|
||||||
if not "%arch%"=="ARM64" (
|
|
||||||
rundll32 "%temp_%\slc.dll",PatchGatherosstate %nul%
|
|
||||||
if not exist "%temp_%\gatherosstatemodified.exe" (
|
|
||||||
call :DL_color "%GatherMod% [Unsuccessful] Aborting" %Red%
|
|
||||||
call :DL_color "Most likely Antivirus program blocked the process, disable it and-or create proper exclsuions." %Magenta%
|
|
||||||
goto :DL_Act_Cont
|
|
||||||
) else (
|
|
||||||
echo %GatherMod% [Successful]
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
set _gather=
|
|
||||||
if "%arch%"=="ARM64" (
|
|
||||||
set _gather=gatherosstate.exe
|
|
||||||
) else (
|
|
||||||
set _gather=gatherosstatemodified.exe
|
|
||||||
)
|
|
||||||
|
|
||||||
start /wait "" "%temp_%/%_gather%" %nul%
|
|
||||||
if not exist "%temp_%\GenuineTicket.xml" (
|
|
||||||
call "%temp_%/%_gather%" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
set "GenTicket=Generating GenuineTicket.xml "
|
|
||||||
if not exist "%temp_%\GenuineTicket.xml" (
|
|
||||||
call :DL_color "%GenTicket% [Unsuccessful] Aborting..." %Red%
|
|
||||||
goto :DL_Act_Cont
|
|
||||||
) else (
|
|
||||||
echo %GenTicket% [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
:: clipup -v -o -altto <Ticket path> method to apply ticket was not used to avoid the certain issues in case the username have spaces or non English names.
|
|
||||||
|
|
||||||
set "InsTicket=Installing GenuineTicket.xml "
|
|
||||||
set "TDir=%ProgramData%\Microsoft\Windows\ClipSVC\GenuineTicket"
|
|
||||||
if exist "%TDir%\*.xml" del /f /q "%TDir%\*.xml" %nul%
|
|
||||||
copy /y /b "%temp_%\GenuineTicket.xml" "%TDir%\GenuineTicket.xml" %nul%
|
|
||||||
|
|
||||||
if not exist "%TDir%\GenuineTicket.xml" (
|
|
||||||
call :DL_color "Failed to copy Ticket to [%ProgramData%\Microsoft\Windows\ClipSVC\GenuineTicket\] Aborting..." %Red%
|
|
||||||
goto :DL_Act_Cont
|
|
||||||
)
|
|
||||||
|
|
||||||
%_psc% Restart-Service ClipSVC %nul%
|
|
||||||
|
|
||||||
if exist "%TDir%\GenuineTicket.xml" (
|
|
||||||
net stop ClipSVC %nul%
|
|
||||||
net start ClipSVC %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
if exist "%TDir%\GenuineTicket.xml" (
|
|
||||||
%nul% clipup -v -o
|
|
||||||
set "fallback_=[Fallback method: clipup -v -o]"
|
|
||||||
)
|
|
||||||
|
|
||||||
if not exist "%TDir%\GenuineTicket.xml" (
|
|
||||||
echo %InsTicket% [Successful] %fallback_%
|
|
||||||
) else (
|
|
||||||
call :DL_color "%InsTicket% [Unsuccessful] Aborting..." %Red%
|
|
||||||
if exist "%TDir%\*.xml" del /f /q "%TDir%\*.xml" %nul%
|
|
||||||
goto :DL_Act_Cont
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
echo:
|
|
||||||
echo Activating...
|
|
||||||
echo:
|
|
||||||
|
|
||||||
wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" call Activate %nul%
|
|
||||||
call :DL_CheckPermAct
|
|
||||||
if defined PermAct goto DL_Act_successful
|
|
||||||
|
|
||||||
call :DL_ReTry
|
|
||||||
if not "%ErrCode%"=="" set "Error_Code_=[Error Code %ErrCode%]"
|
|
||||||
call :DL_CheckPermAct
|
|
||||||
|
|
||||||
:DL_Act_successful
|
|
||||||
|
|
||||||
if defined PermAct (
|
|
||||||
call :DL_color "%winos% is permanently activated." %Green%
|
|
||||||
goto :DL_Act_Cont
|
|
||||||
)
|
|
||||||
|
|
||||||
call :DL_color "Activation Failed %Error_Code_%" %Red%
|
|
||||||
call :DL_color "Try the Troubleshoot Guide listed in the ReadMe." %Magenta%
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:DL_Act_Cont
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set "changing_wust_back=Changing wu Startup Type back to [%wu_start_type%]"
|
|
||||||
if defined wust_s (
|
|
||||||
sc config %_4% start= %wu_start_type% %nul% && echo %changing_wust_back% [Successful]
|
|
||||||
) || (
|
|
||||||
call :DL_color "%changing_wust_back% [Unsuccessful]" %Red%
|
|
||||||
)
|
|
||||||
|
|
||||||
cd /d "!_work!\"
|
|
||||||
if exist "%temp_%\" @RD /S /Q "%temp_%\" %nul%
|
|
||||||
set "delFiles=Cleaning Temp Files "
|
|
||||||
if exist "%temp_%\" (
|
|
||||||
call :DL_color "%delFiles% [Unsuccessful]" %Red%
|
|
||||||
) else (
|
|
||||||
echo %delFiles% [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
goto DL_Done
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Echo all the missing files.
|
|
||||||
:: Written by @abbodi1406 (MDL)
|
|
||||||
|
|
||||||
:DL_check
|
|
||||||
|
|
||||||
for %%# in (%1 %2) do (if not exist "!_work!\BIN\%%#" (if defined _miss (set "_miss=!_miss! %%#") else (set "_miss=%%#")))
|
|
||||||
if defined _miss (
|
|
||||||
%ELine%
|
|
||||||
echo Following required file^(s^) is missing in 'BIN' folder. Aborting...
|
|
||||||
echo:
|
|
||||||
echo !_miss!
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:DL_ServiceCheck
|
|
||||||
|
|
||||||
:: Detect Service status and start type
|
|
||||||
:: Written by @RPO
|
|
||||||
|
|
||||||
for /f "tokens=1,3 delims=: " %%a in ('sc query %1') do (if /i %%a==state set "state=%%b")
|
|
||||||
for /f "tokens=1-4 delims=: " %%a in ('sc qc %1') do (if /i %%a==start_type set "start_type=%%c %%d")
|
|
||||||
|
|
||||||
if /i "%state%"=="STOPPED" set state=Stopped
|
|
||||||
if /i "%state%"=="RUNNING" set state=Running
|
|
||||||
|
|
||||||
if /i "%start_type%"=="auto_start (delayed)" set start_type=Delayed-Auto
|
|
||||||
if /i "%start_type%"=="auto_start " set start_type=Auto
|
|
||||||
if /i "%start_type%"=="demand_start " set start_type=Demand
|
|
||||||
if /i "%start_type%"=="disabled " set start_type=Disabled
|
|
||||||
|
|
||||||
for %%i in (%*) do (
|
|
||||||
if /i "%%i"=="%_4%" set "wu_start_type=%start_type%" & set "wu_state=%state%"
|
|
||||||
if /i "%%i"=="%_3%" set "sp_start_type=%start_type%" & set "sp_state=%state%"
|
|
||||||
if /i "%%i"=="%_1%" set "Cl_start_type=%start_type%" & set "Cl_state=%state%"
|
|
||||||
if /i "%%i"=="%_2%" set "wl_start_type=%start_type%" & set "wl_state=%state%"
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:DL_CheckPermAct
|
|
||||||
|
|
||||||
:: Check Windows Permanent Activation status
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
wmic path %slp% where (LicenseStatus='1' and GracePeriodRemaining='0' and PartialProductKey is not NULL) get Name 2>nul | findstr /i "Windows" 1>nul && set PermAct=1||set PermAct=
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:DL_ReTry
|
|
||||||
|
|
||||||
if defined IntCon if not defined wust_u if not defined wu_u call :DL_ReTry_2
|
|
||||||
|
|
||||||
:: Detect Error Code in the Activation
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" call Activate %nul%
|
|
||||||
set errorcode=%errorlevel%
|
|
||||||
cmd /c exit /b %errorcode%
|
|
||||||
if %errorcode% NEQ 0 set "ErrCode=0x%=ExitCode%"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:DL_ReTry_2
|
|
||||||
|
|
||||||
set app=
|
|
||||||
%_psc% Restart-Service sppsvc %nul%
|
|
||||||
|
|
||||||
:: Specific rearm - reset the licensing status of the Windows SKU and app, without the need to restart the system.
|
|
||||||
:: wmic method by @abbodi1406
|
|
||||||
|
|
||||||
for /f "tokens=2 delims==" %%G in ('"wmic path %slp% where (ApplicationID='%wApp%' AND ProductKeyID like '%%-%%') get ID /value" 2^>nul') do (set app=%%G)
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call ReArmApp ApplicationId="%wApp%" %nul%
|
|
||||||
wmic path %slp% where ID='%app%' call ReArmsku %nul%
|
|
||||||
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call RefreshLicenseStatus %nul%
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs -ato %nul%
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:DL_color
|
|
||||||
|
|
||||||
%_psc% write-host '%1' -fore '%2' -back '%3'
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:DL_color1
|
|
||||||
|
|
||||||
%_psc% write-host '%1' -fore '%2' -back '%3' -NoNewline
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:DL_Done
|
|
||||||
|
|
||||||
echo:
|
|
||||||
if defined Unattended (
|
|
||||||
echo Exiting in 3 seconds...
|
|
||||||
if %winbuild% LSS 7600 (ping -n 3 127.0.0.1 > nul) else (timeout /t 3)
|
|
||||||
:: set a value to use in certain conditions of setupcomplete.cmd file.
|
|
||||||
if defined key if not defined PermAct (endlocal & endlocal & set HWIDAct=1)
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
:_CheckEdition
|
|
||||||
|
|
||||||
for %%# in (
|
|
||||||
4:Enterprise
|
|
||||||
27:EnterpriseN
|
|
||||||
48:Professional
|
|
||||||
49:ProfessionalN
|
|
||||||
98:CoreN
|
|
||||||
99:CoreCountrySpecific
|
|
||||||
100:CoreSingleLanguage
|
|
||||||
101:Core
|
|
||||||
121:Education
|
|
||||||
122:EducationN
|
|
||||||
125:EnterpriseS
|
|
||||||
126:EnterpriseSN
|
|
||||||
161:ProfessionalWorkstation
|
|
||||||
162:ProfessionalWorkstationN
|
|
||||||
164:ProfessionalEducation
|
|
||||||
165:ProfessionalEducationN
|
|
||||||
175:ServerRdsh
|
|
||||||
188:IoTEnterprise
|
|
||||||
) do for /f "tokens=1,2 delims=:" %%A in ("%%#") do (
|
|
||||||
if %osSKU%==%%A set "osedition=%%B"
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Retail_OEM Key List
|
|
||||||
|
|
||||||
:Core
|
|
||||||
set "key=YTMG3-N6DKC-DKB77-7M9GH-8HVX7"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreCountrySpecific
|
|
||||||
set "key=N2434-X9D7W-8PF6X-8DV9T-8TYMD"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreN
|
|
||||||
set "key=4CPRK-NM3K3-X6XXQ-RXX86-WXCHW"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreSingleLanguage
|
|
||||||
set "key=BT79Q-G7N6G-PGBYW-4YWX6-6F4BT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Education
|
|
||||||
set "key=YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EducationN
|
|
||||||
set "key=84NGF-MHBT6-FXBX8-QWJK7-DRR8H"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Enterprise
|
|
||||||
set "key=XGVPP-NMH47-7TTHJ-W3FW7-8HV2C"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseN
|
|
||||||
set "key=3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseS
|
|
||||||
if "%winbuild%" EQU "10240" set "key=FWN7H-PF93Q-4GGP8-M8RF3-MDWWW"
|
|
||||||
if "%winbuild%" EQU "14393" set "key=NK96Y-D9CD8-W44CQ-R8YTK-DYJWX"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseSN
|
|
||||||
if "%winbuild%" EQU "10240" set "key=8V8WN-3GXBH-2TCMG-XHRX3-9766K"
|
|
||||||
if "%winbuild%" EQU "14393" set "key=2DBW3-N2PJG-MVHW3-G7TDK-9HKR4"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Professional
|
|
||||||
set "key=VK7JG-NPHTM-C97JM-9MPGT-3V66T"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalEducation
|
|
||||||
set "key=8PTT6-RNW4C-6V7J2-C2D3X-MHBPB"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalEducationN
|
|
||||||
set "key=GJTYN-HDMQY-FRR76-HVGC7-QPF8P"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalN
|
|
||||||
set "key=2B87N-8KFHP-DKV6R-Y2C8J-PKCKT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalWorkstation
|
|
||||||
set "key=DXG7C-N36C4-C4HTG-X4T3X-2YV77"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalWorkstationN
|
|
||||||
set "key=WYPNQ-8C467-V2W6J-TX4WX-WT2RQ"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ServerRdsh
|
|
||||||
set "key=NJCF7-PW8QT-3324D-688JX-2YV66"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:IoTEnterprise
|
|
||||||
set "key=XQQYW-NFFMW-XJPBH-K8732-CKFFD"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,868 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
|
|
||||||
:: For unattended mode, run the script with /u parameter.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::=========================================================================================================
|
|
||||||
: Credits:
|
|
||||||
::=========================================================================================================
|
|
||||||
::
|
|
||||||
:: @mspaintmsi Original co-authors of HWID/KMS38 Activation without KMS or predecessor install/upgrade.
|
|
||||||
:: and Created various methods for HWID/KMS38 Activation
|
|
||||||
:: *Anonymous https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
:: https://gitlab.com/massgrave/massgrave
|
|
||||||
::
|
|
||||||
:: @vyvojar Original slshim (slc.dll)
|
|
||||||
:: https://github.com/vyvojar/slshim/releases
|
|
||||||
::
|
|
||||||
::---------------------------------------------------------------------------------------------------------
|
|
||||||
::
|
|
||||||
:: HWID/KMS38 methods Suggestions and improvements:-
|
|
||||||
::
|
|
||||||
:: @sponpa New ideas for the HWID/KM38 Generation
|
|
||||||
:: https://www.nsaneforums.com/topic/316668--/page/21/?tab=comments#comment-1431257
|
|
||||||
::
|
|
||||||
:: @leitek8 Improvements for the slc.dll
|
|
||||||
:: https://www.nsaneforums.com/topic/316668--/page/22/?tab=comments#comment-1438005
|
|
||||||
::
|
|
||||||
::---------------------------------------------------------------------------------------------------------
|
|
||||||
::
|
|
||||||
:: Kind Help:-
|
|
||||||
::
|
|
||||||
:: Thanks for having my back and answering all of my queries. (In no particular order)
|
|
||||||
::
|
|
||||||
:: @AveYo aka @BAU, @sponpa, @mspaintmsi @RPO, @leitek8, @mxman2k, @Yen, @abbodi1406
|
|
||||||
::
|
|
||||||
:: @BorrowedWifi for providing support in fixing English grammar errors in the Read Me.
|
|
||||||
:: @Chibi ANUBIS and @smashed for testing scripts for ARM64 system.
|
|
||||||
::
|
|
||||||
:: Special thanks to @abbodi1406 for providing the great help.
|
|
||||||
::
|
|
||||||
::---------------------------------------------------------------------------------------------------------
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: P.S. I (@WindowsAddict) did not help in the development of HWID/KMS38 Activation in any way, I only
|
|
||||||
:: manage batch script tool which is based on the above mentioned original co-authors activation methods.
|
|
||||||
::
|
|
||||||
::=========================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
title KMS38 Activation
|
|
||||||
set Unattended=
|
|
||||||
set _args=
|
|
||||||
set _elev=
|
|
||||||
set "_arg1=%~1"
|
|
||||||
if not defined _arg1 goto :K38_NoProgArgs
|
|
||||||
set "_args=%~1"
|
|
||||||
set "_arg2=%~2"
|
|
||||||
if defined _arg2 set "_args=%~1 %~2"
|
|
||||||
for %%A in (%_args%) do (
|
|
||||||
if /i "%%A"=="-el" set _elev=1
|
|
||||||
if /i "%%A"=="/u" set Unattended=1)
|
|
||||||
:K38_NoProgArgs
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "Red="white" "DarkRed""
|
|
||||||
set "Green="white" "DarkGreen""
|
|
||||||
set "Magenta="white" "darkmagenta""
|
|
||||||
set "Gray="white" "darkgray""
|
|
||||||
set "Black="white" "Black""
|
|
||||||
set "ELine=echo: &call :K38_color "==== ERROR ====" %Red% &echo:"
|
|
||||||
set slp=SoftwareLicensingProduct
|
|
||||||
set sls=SoftwareLicensingService
|
|
||||||
set wApp=55c92734-d682-4d71-983e-d6ec3f16059f
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
for %%i in (powershell.exe) do if "%%~$path:i"=="" (
|
|
||||||
echo: &echo ==== ERROR ==== &echo:
|
|
||||||
echo Powershell is not installed in the system.
|
|
||||||
echo Aborting...
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 14393 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo Project is supported only for Windows 10 / Server - 1607 [14393] and later builds.
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Elevate script as admin and pass arguments and preventing loop
|
|
||||||
:: Thanks to @hearywarlot [ https://forums.mydigitallife.net/threads/.74332/ ] for the VBS method.
|
|
||||||
:: Thanks to @abbodi1406 for the powershell method and solving special characters issue in file path name.
|
|
||||||
|
|
||||||
%nul% reg query HKU\S-1-5-19 && (
|
|
||||||
goto :K38_Passed
|
|
||||||
) || (
|
|
||||||
if defined _elev goto :K38_E_Admin
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_vbsf=%temp%\admin.vbs"
|
|
||||||
set _PSarg="""%~f0""" -el
|
|
||||||
if defined _args set _PSarg="""%~f0""" -el """%_args%"""
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
(
|
|
||||||
echo Set strArg=WScript.Arguments.Named
|
|
||||||
echo Set strRdlproc = CreateObject^("WScript.Shell"^).Exec^("rundll32 kernel32,Sleep"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& strRdlproc.ProcessId ^& "'"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& .ParentProcessId ^& "'"^)
|
|
||||||
echo If InStr ^(.CommandLine, WScript.ScriptName^) ^<^> 0 Then
|
|
||||||
echo strLine = Mid^(.CommandLine, InStr^(.CommandLine , "/File:"^) + Len^(strArg^("File"^)^) + 8^)
|
|
||||||
echo End If
|
|
||||||
echo End With
|
|
||||||
echo .Terminate
|
|
||||||
echo End With
|
|
||||||
echo CreateObject^("Shell.Application"^).ShellExecute "cmd.exe", "/c " ^& chr^(34^) ^& chr^(34^) ^& strArg^("File"^) ^& chr^(34^) ^& strLine ^& chr^(34^), "", "runas", 1
|
|
||||||
)>"!_vbsf!"
|
|
||||||
|
|
||||||
(%nul% cscript //NoLogo "!_vbsf!" /File:"!_batf!" -el "!_args!") && (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
%nul% %_psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && (
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
goto :K38_E_Admin
|
|
||||||
)
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:K38_E_Admin
|
|
||||||
%ELine%
|
|
||||||
echo This script require administrator privileges.
|
|
||||||
echo To do so, right click on this script and select 'Run as administrator'.
|
|
||||||
goto K38_Done
|
|
||||||
|
|
||||||
:K38_Passed
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Fix for the special characters limitation in path name
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
set "_work=%~dp0"
|
|
||||||
if "%_work:~-1%"=="\" set "_work=%_work:~0,-1%"
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_batp=%_batf:'=''%"
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
mode con: cols=102 lines=30
|
|
||||||
|
|
||||||
:: Check Windows OS name
|
|
||||||
|
|
||||||
set winos=
|
|
||||||
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
if not defined winos for /f "tokens=2* delims== " %%a in ('"wmic os get caption /value" 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
|
|
||||||
call :K38_CheckPermAct
|
|
||||||
if defined PermAct (
|
|
||||||
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
call :K38_color1 " " %Black% &call :K38_color "Checking: %winos% is Permanently Activated." %Green%
|
|
||||||
call :K38_color1 " " %Black% &call :K38_color "Activation is not required." %Gray%
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
if defined Unattended goto K38_Done
|
|
||||||
|
|
||||||
echo Press [1] or [2] button in Keyboard :
|
|
||||||
echo ___________________________________________
|
|
||||||
echo:
|
|
||||||
choice /C:12 /N /M "> [1] Activate [2] Exit : "
|
|
||||||
|
|
||||||
if errorlevel 2 exit /b
|
|
||||||
if errorlevel 1 Goto K38_Continue
|
|
||||||
)
|
|
||||||
|
|
||||||
:K38_Continue
|
|
||||||
cls
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cd /d "!_work!"
|
|
||||||
pushd "!_work!"
|
|
||||||
|
|
||||||
if not exist "!_work!\BIN\" (
|
|
||||||
%ELine%
|
|
||||||
echo 'BIN' Folder does not exist in current directory.
|
|
||||||
echo It's supposed to have files required for the Activation.
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
echo %winos%| findstr /I Evaluation >nul && set Eval=1||set Eval=
|
|
||||||
if defined Eval (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild%] KMS38 Activation is Not Supported.
|
|
||||||
echo %winos%| findstr /I Server >nul && (
|
|
||||||
echo Server Evaluation cannot be activated. Convert it to full Server OS.
|
|
||||||
) || (
|
|
||||||
echo Evaluation Editions cannot be activated. Install full Windows OS.
|
|
||||||
)
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check SKU value
|
|
||||||
|
|
||||||
set SKU=
|
|
||||||
for /f "tokens=2 delims==" %%a IN ('"wmic Path Win32_OperatingSystem Get OperatingSystemSKU /format:LIST" 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
if not defined SKU for /f "tokens=3 delims=." %%a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions" /v OSProductPfn 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
|
|
||||||
if "%osSKU%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo SKU value was not detected properly. Aborting...
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
set osedition=
|
|
||||||
call :K38_CheckEdition %nul%
|
|
||||||
|
|
||||||
if "%osedition%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild% ^| SKU:%osSKU%] KMS38 Activation is Not Supported.
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Activation ID
|
|
||||||
|
|
||||||
set app=
|
|
||||||
for /f "tokens=2 delims==" %%a in ('"wmic path %slp% where (ApplicationID='%wApp%' and LicenseFamily='%osedition%' and Description like '%%KMSCLIENT%%') get ID /VALUE" 2^>nul') do set "app=%%a"
|
|
||||||
|
|
||||||
:: Check Windows Architecture
|
|
||||||
|
|
||||||
set arch=
|
|
||||||
reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > nul && set arch=x86|| set arch=x64
|
|
||||||
wmic os get osarchitecture | find /i "ARM" > nul && set arch=ARM64|| echo %PROCESSOR_ARCHITECTURE% | find /i "ARM" > nul && set arch=ARM64
|
|
||||||
|
|
||||||
if "%arch%"=="ARM64" call :K38_check ARM64_gatherosstate.exe ARM64_slc.dll
|
|
||||||
if not "%arch%"=="ARM64" call :K38_check gatherosstate.exe slc.dll
|
|
||||||
if defined _miss goto K38_Done
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
if "%app%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild%] KMS38 Activation is Not Supported.
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
set key=
|
|
||||||
call :%app% %nul%
|
|
||||||
|
|
||||||
if "%key%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild% ^| %app%] KMS38 Activation is Not Supported.
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: clipup.exe does not exist in server cor and acor editions.
|
|
||||||
|
|
||||||
set A_Cor=
|
|
||||||
echo %osedition%| findstr /I /B Server >nul && if not exist "%systemroot%\System32\clipup.exe" set A_Cor=1
|
|
||||||
|
|
||||||
if defined A_Cor (
|
|
||||||
call :K38_check clipup.exe
|
|
||||||
if defined _miss goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo Checking OS Info [%winos% ^| %winbuild% ^| %arch%]
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set _1=ClipSVC
|
|
||||||
set _3=sppsvc
|
|
||||||
|
|
||||||
for %%# in (%_1% %_3%) do call :K38_ServiceCheck %%#
|
|
||||||
|
|
||||||
set "CLecho=Checking %_1% [Service Status -%Cl_state%] [Startup Type -%Cl_start_type%]"
|
|
||||||
set "specho=Checking %_3% [Service Status -%sp_state%] [Startup Type -%sp_start_type%]"
|
|
||||||
|
|
||||||
if not "%Cl_start_type%"=="Demand" (call :K38_color "%CLecho%" %Red% & set Clst_e=1) else (echo %CLecho%)
|
|
||||||
if not "%sp_start_type%"=="Delayed-Auto" (call :K38_color "%specho%" %Red% & set spst_e=1) else (echo %specho%)
|
|
||||||
|
|
||||||
echo:
|
|
||||||
if defined Clst_e (sc config %_1% start= Demand %nul% && set Clst_s=%_1%-Demand || set Clst_u=%_1%-Demand )
|
|
||||||
if defined spst_e (sc config %_3% start= Delayed-Auto %nul% && set spst_s=%_3%-Delayed-Auto || set spst_u=%_3%-Delayed-Auto )
|
|
||||||
|
|
||||||
for %%# in (Clst_s,spst_s) do if defined %%# set st_s=1
|
|
||||||
if defined st_s (echo Changing services Startup Type to [ %Clst_s%%spst_s%] [Successful])
|
|
||||||
|
|
||||||
for %%# in (Clst_u,spst_u) do if defined %%# set st_u=1
|
|
||||||
if defined st_u (call :K38_color "Error in changing Startup Type to [ %Clst_u%%spst_u%]" %Red%)
|
|
||||||
|
|
||||||
if not "%Cl_state%"=="Running" (%_psc% start-service %_1% %nul% && set Cl_s=%_1% || set Cl_u=%_1% )
|
|
||||||
if not "%sp_state%"=="Running" (%_psc% start-service %_3% %nul% && set sp_s=%_3% || set sp_u=%_3% )
|
|
||||||
|
|
||||||
for %%# in (Cl_s,sp_s) do if defined %%# set s_s=1
|
|
||||||
if defined s_s (echo Starting services [ %Cl_s%%sp_s%] [Successful])
|
|
||||||
|
|
||||||
for %%# in (Cl_u,sp_u) do if defined %%# set s_u=1
|
|
||||||
if defined s_u (call :K38_color "Error in starting services [ %Cl_u%%sp_u%]" %Red%)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Thanks to @abbodi1406 for the WMI methods
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set _channel=
|
|
||||||
set _Keyexist=
|
|
||||||
set _partial=
|
|
||||||
|
|
||||||
wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get ProductKeyChannel 2>nul | findstr /i GVLK 1>nul && (set _Keyexist=1)
|
|
||||||
|
|
||||||
if defined _Keyexist (
|
|
||||||
for /f "tokens=2 delims==" %%# in ('wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get PartialProductKey /value 2^>nul') do set "_partial=%%#"
|
|
||||||
call echo Checking Installed Product Key [Volume:GVLK] [Partial Key -%%_partial%%]
|
|
||||||
)
|
|
||||||
|
|
||||||
if not defined _Keyexist (
|
|
||||||
set "InsKey=Installing KMS Client Setup Key "
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call InstallProductKey ProductKey="%key%" %nul% && (
|
|
||||||
call echo %%InsKey%% [%key%] [Successful]
|
|
||||||
) || (
|
|
||||||
call :K38_color "%%InsKey%% [%key%] [Unsuccessful]" %Red%
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call RefreshLicenseStatus %nul%
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Set specific KMS host to Local Host
|
|
||||||
:: Thanks to @abbodi1406
|
|
||||||
|
|
||||||
:: By doing this, global KMS IP can not replace KMS38 activation but can be used with Office and other Windows Editions.
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set "SPPk=SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform"
|
|
||||||
reg delete "HKLM\%SPPk%\%wApp%" /f %nul%
|
|
||||||
reg delete "HKU\S-1-5-20\%SPPk%\%wApp%" /f %nul%
|
|
||||||
|
|
||||||
set setkms_error=
|
|
||||||
set "setkms_=Setting Specific KMS Host to "
|
|
||||||
|
|
||||||
wmic path %slp% where ID='%app%' call ClearKeyManagementServiceMachine %nul% || (set setkms_error=1)
|
|
||||||
wmic path %slp% where ID='%app%' call ClearKeyManagementServicePort %nul% || (set setkms_error=1)
|
|
||||||
wmic path %slp% where ID='%app%' call SetKeyManagementServiceMachine MachineName="127.0.0.2" %nul% || (set setkms_error=1)
|
|
||||||
wmic path %slp% where ID='%app%' call SetKeyManagementServicePort 1688 %nul% || (set setkms_error=1)
|
|
||||||
|
|
||||||
if not defined setkms_error (
|
|
||||||
echo %setkms_% [LocalHost 127.0.0.2] [Successful]
|
|
||||||
) else (
|
|
||||||
call :K38_color "%setkms_% [LocalHost 127.0.0.2] [Unsuccessful]" %Red%
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Files are copied to temp to generate ticket to avoid possible issues in case the path contains special character or non English names.
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set "temp_=%SystemRoot%\Temp\_Ticket_Work"
|
|
||||||
if exist "%temp_%\" @RD /S /Q "%temp_%\" %nul%
|
|
||||||
md "%temp_%\" %nul%
|
|
||||||
|
|
||||||
cd /d "!_work!\BIN\"
|
|
||||||
|
|
||||||
set ARM64_file=
|
|
||||||
if "%arch%"=="ARM64" set ARM64_file=ARM64_
|
|
||||||
|
|
||||||
set "A_Cor_cl=%systemroot%\System32\clipup.exe"
|
|
||||||
copy /y /b "%ARM64_file%gatherosstate.exe" "%temp_%\gatherosstate.exe" %nul%
|
|
||||||
copy /y /b "%ARM64_file%slc.dll" "%temp_%\slc.dll" %nul%
|
|
||||||
if defined A_Cor (copy /y /b "ClipUp.exe" "%A_Cor_cl%" %nul%)
|
|
||||||
|
|
||||||
set cfailed=
|
|
||||||
if not exist "%temp_%\gatherosstate.exe" set cfailed=1
|
|
||||||
if not exist "%temp_%\slc.dll" set cfailed=1
|
|
||||||
|
|
||||||
set "copyfiles=Copying Required Files to Temp "
|
|
||||||
set "copyclipup=Copying clipup.exe File to "
|
|
||||||
|
|
||||||
if defined cfailed (
|
|
||||||
call :K38_color "%copyfiles% [%SystemRoot%\Temp\_Ticket_Work\] [Unsuccessful] Aborting..." %Red%
|
|
||||||
goto K38_Act_Cont
|
|
||||||
) else (
|
|
||||||
echo %copyfiles% [%SystemRoot%\Temp\_Ticket_Work\] [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
if defined A_Cor (
|
|
||||||
if not exist "%A_Cor_cl%" call :K38_color "%copyclipup% [%systemroot%\System32\] [Unsuccessful] Aborting..." %Red% & goto K38_Act_Cont
|
|
||||||
if exist "%A_Cor_cl%" echo %copyclipup% [%systemroot%\System32\] [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
cd /d "%temp_%\"
|
|
||||||
attrib -R -A -S -H *.*
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
start /wait "" "%temp_%/gatherosstate.exe" %nul%
|
|
||||||
if not exist "%temp_%\GenuineTicket.xml" (
|
|
||||||
call "%temp_%/gatherosstate.exe" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
set "GenTicket=Generating GenuineTicket.xml "
|
|
||||||
if not exist "%temp_%\GenuineTicket.xml" (
|
|
||||||
call :K38_color "%GenTicket% [Unsuccessful] Aborting..." %Red%
|
|
||||||
goto K38_Act_Cont
|
|
||||||
) else (
|
|
||||||
echo %GenTicket% [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
:: clipup -v -o -altto <Ticket path> method to apply ticket was not used to avoid the certain issues in case the username have spaces or non English names.
|
|
||||||
|
|
||||||
set "InsTicket=Installing GenuineTicket.xml "
|
|
||||||
set "TDir=%ProgramData%\Microsoft\Windows\ClipSVC\GenuineTicket"
|
|
||||||
if exist "%TDir%\*.xml" del /f /q "%TDir%\*.xml" %nul%
|
|
||||||
copy /y /b "%temp_%\GenuineTicket.xml" "%TDir%\GenuineTicket.xml" %nul%
|
|
||||||
|
|
||||||
if not exist "%TDir%\GenuineTicket.xml" (
|
|
||||||
call :K38_color "Failed to copy Ticket to [%ProgramData%\Microsoft\Windows\ClipSVC\GenuineTicket\] Aborting..." %Red%
|
|
||||||
goto K38_Act_Cont
|
|
||||||
)
|
|
||||||
|
|
||||||
%_psc% Restart-Service ClipSVC %nul%
|
|
||||||
|
|
||||||
if exist "%TDir%\GenuineTicket.xml" (
|
|
||||||
net stop ClipSVC %nul%
|
|
||||||
net start ClipSVC %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
if exist "%TDir%\GenuineTicket.xml" (
|
|
||||||
%nul% clipup -v -o
|
|
||||||
set "fallback_=[Fallback method: clipup -v -o]"
|
|
||||||
)
|
|
||||||
|
|
||||||
if not exist "%TDir%\GenuineTicket.xml" (
|
|
||||||
echo %InsTicket% [Successful] %fallback_%
|
|
||||||
) else (
|
|
||||||
call :K38_color "%InsTicket% [Unsuccessful] Aborting..." %Red%
|
|
||||||
if exist "%TDir%\*.xml" del /f /q "%TDir%\*.xml" %nul%
|
|
||||||
goto K38_Act_Cont
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
echo:
|
|
||||||
echo Activating...
|
|
||||||
echo:
|
|
||||||
|
|
||||||
call :K38_CheckEXPtime
|
|
||||||
if %gpr% GTR 259200 (
|
|
||||||
call :K38_Actinfo
|
|
||||||
goto K38_Act_Cont
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Clear 180 Days KMS Activation lock without full Rearm and Restart
|
|
||||||
|
|
||||||
set RearmF=
|
|
||||||
set "Rearm=Applying SKU-APP ID Rearm "
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call ReArmApp ApplicationId="%wApp%" %nul% || (set RearmF=1)
|
|
||||||
wmic path %slp% where ID='%app%' call ReArmsku %nul% || (set RearmF=1)
|
|
||||||
|
|
||||||
if defined RearmF (
|
|
||||||
call :K38_color "%Rearm% [Unsuccessful]" %Red%
|
|
||||||
) else (
|
|
||||||
echo %Rearm% [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
echo:
|
|
||||||
call :K38_CheckEXPtime
|
|
||||||
if %gpr% GTR 259200 (
|
|
||||||
call :K38_Actinfo
|
|
||||||
goto K38_Act_Cont
|
|
||||||
)
|
|
||||||
|
|
||||||
%_psc% Restart-Service sppsvc %nul%
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call RefreshLicenseStatus %nul%
|
|
||||||
|
|
||||||
call :K38_CheckEXPtime
|
|
||||||
if %gpr% GTR 259200 (
|
|
||||||
call :K38_Actinfo
|
|
||||||
goto K38_Act_Cont
|
|
||||||
)
|
|
||||||
|
|
||||||
call :K38_color "Activation Failed." %Red%
|
|
||||||
call :K38_color "Try the Troubleshoot Guide listed in the ReadMe." %Magenta%
|
|
||||||
|
|
||||||
:K38_Act_Cont
|
|
||||||
|
|
||||||
:: clipup.exe does not exist in server cor and acor editions by default, it was copied there with this script.
|
|
||||||
|
|
||||||
echo:
|
|
||||||
cd /d "!_work!\"
|
|
||||||
if exist "%temp_%\" @RD /S /Q "%temp_%\" %nul%
|
|
||||||
if defined A_Cor (if exist "%A_Cor_cl%" del /f /q "%A_Cor_cl%" %nul%)
|
|
||||||
|
|
||||||
set "delFiles=Cleaning Temp Files "
|
|
||||||
set "delclipup=Deleting copied clipup.exe file "
|
|
||||||
|
|
||||||
if exist "%temp_%\" (
|
|
||||||
call :K38_color "%delFiles% [Unsuccessful]" %Red%
|
|
||||||
) else (
|
|
||||||
echo %delFiles% [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
if defined A_Cor (
|
|
||||||
if exist "%A_Cor_cl%" call :K38_color "%delclipup% [Unsuccessful]" %Red%
|
|
||||||
if not exist "%A_Cor_cl%" echo %delclipup% [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
goto K38_Done
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Echo all the missing files.
|
|
||||||
:: Written by @abbodi1406 (MDL)
|
|
||||||
|
|
||||||
:K38_check
|
|
||||||
|
|
||||||
for %%# in (%1 %2) do (if not exist "!_work!\BIN\%%#" (if defined _miss (set "_miss=!_miss! %%#") else (set "_miss=%%#")))
|
|
||||||
if defined _miss (
|
|
||||||
%ELine%
|
|
||||||
echo Following required file^(s^) is missing in 'BIN' folder. Aborting...
|
|
||||||
echo:
|
|
||||||
echo !_miss!
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:K38_ServiceCheck
|
|
||||||
|
|
||||||
:: Detect Service status and start type
|
|
||||||
:: Written by @RPO
|
|
||||||
|
|
||||||
for /f "tokens=1,3 delims=: " %%a in ('sc query %1') do (if /i %%a==state set "state=%%b")
|
|
||||||
for /f "tokens=1-4 delims=: " %%a in ('sc qc %1') do (if /i %%a==start_type set "start_type=%%c %%d")
|
|
||||||
|
|
||||||
if /i "%state%"=="STOPPED" set state=Stopped
|
|
||||||
if /i "%state%"=="RUNNING" set state=Running
|
|
||||||
|
|
||||||
if /i "%start_type%"=="auto_start (delayed)" set start_type=Delayed-Auto
|
|
||||||
if /i "%start_type%"=="auto_start " set start_type=Auto
|
|
||||||
if /i "%start_type%"=="demand_start " set start_type=Demand
|
|
||||||
if /i "%start_type%"=="disabled " set start_type=Disabled
|
|
||||||
|
|
||||||
for %%i in (%*) do (
|
|
||||||
if /i "%%i"=="%_3%" set "sp_start_type=%start_type%" & set "sp_state=%state%"
|
|
||||||
if /i "%%i"=="%_1%" set "Cl_start_type=%start_type%" & set "Cl_state=%state%"
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:K38_CheckPermAct
|
|
||||||
|
|
||||||
:: Check Windows Permanent Activation status
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
wmic path %slp% where (LicenseStatus='1' and GracePeriodRemaining='0' and PartialProductKey is not NULL) get Name 2>nul | findstr /i "Windows" 1>nul && set PermAct=1||set PermAct=
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check Expiration date with powershell
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
:K38_Actinfo
|
|
||||||
|
|
||||||
for /f "tokens=* delims=" %%# in ('%_psc% "$([DateTime]::Now.addMinutes(%gpr%)).ToString('yyyy-MM-dd HH:mm:ss')" 2^>nul') do set "_xpr=%%#"
|
|
||||||
call :K38_color "%winos% is activated till %_xpr%" %Green%
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:K38_CheckEXPtime
|
|
||||||
|
|
||||||
:: Check Activation remaining time
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
for /f "tokens=2 delims==" %%# in ('"wmic path %slp% where (ApplicationID='%wApp%' and Description like '%%KMSCLIENT%%' and PartialProductKey is not NULL) get GracePeriodRemaining /VALUE" ') do set "gpr=%%#"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:K38_color
|
|
||||||
|
|
||||||
%_psc% write-host '%1' -fore '%2' -back '%3'
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:K38_color1
|
|
||||||
|
|
||||||
%_psc% write-host '%1' -fore '%2' -back '%3' -NoNewline
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:K38_Done
|
|
||||||
|
|
||||||
echo:
|
|
||||||
if defined Unattended (
|
|
||||||
echo Exiting in 3 seconds...
|
|
||||||
if %winbuild% LSS 7600 (ping -n 3 127.0.0.1 > nul) else (timeout /t 3)
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
:K38_CheckEdition
|
|
||||||
|
|
||||||
for %%# in (
|
|
||||||
4:Enterprise
|
|
||||||
7:ServerStandard
|
|
||||||
8:ServerDatacenter
|
|
||||||
27:EnterpriseN
|
|
||||||
48:Professional
|
|
||||||
49:ProfessionalN
|
|
||||||
50:ServerSolution
|
|
||||||
98:CoreN
|
|
||||||
99:CoreCountrySpecific
|
|
||||||
100:CoreSingleLanguage
|
|
||||||
101:Core
|
|
||||||
110:ServerCloudStorage
|
|
||||||
120:ServerARM64
|
|
||||||
121:Education
|
|
||||||
122:EducationN
|
|
||||||
125:EnterpriseS
|
|
||||||
126:EnterpriseSN
|
|
||||||
145:ServerDatacenterACor
|
|
||||||
146:ServerStandardACor
|
|
||||||
161:ProfessionalWorkstation
|
|
||||||
162:ProfessionalWorkstationN
|
|
||||||
164:ProfessionalEducation
|
|
||||||
165:ProfessionalEducationN
|
|
||||||
168:ServerAzureCor
|
|
||||||
171:EnterpriseG
|
|
||||||
172:EnterpriseGN
|
|
||||||
175:ServerRdsh
|
|
||||||
183:CloudE
|
|
||||||
) do for /f "tokens=1,2 delims=:" %%A in ("%%#") do (
|
|
||||||
if %osSKU%==%%A set "osedition=%%B"
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Generic Volume License Key (GVLK) List
|
|
||||||
|
|
||||||
:: Windows 10 [RS5]
|
|
||||||
:32d2fab3-e4a8-42c2-923b-4bf4fd13e6ee
|
|
||||||
set "key=M7XTQ-FN8P6-TTKYV-9D4CC-J462D" &:: Enterprise LTSC 2019
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:7103a333-b8c8-49cc-93ce-d37c09687f92
|
|
||||||
set "key=92NFX-8DJQP-P6BBQ-THF9C-7CG2H" &:: Enterprise LTSC 2019 N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ec868e65-fadf-4759-b23e-93fe37f2cc29
|
|
||||||
set "key=CPWHC-NT2C7-VYW78-DHDB2-PG3GK" &:: Enterprise for Virtual Desktops
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:0df4f814-3f57-4b8b-9a9d-fddadcd69fac
|
|
||||||
set "key=NBTWJ-3DR69-3C4V8-C26MC-GQ9M6" &:: Lean
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows 10 [RS3]
|
|
||||||
:82bbc092-bc50-4e16-8e18-b74fc486aec3
|
|
||||||
set "key=NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J" &:: Pro Workstation
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:4b1571d3-bafb-4b40-8087-a961be2caf65
|
|
||||||
set "key=9FNHH-K3HBT-3W4TD-6383H-6XYWF" &:: Pro Workstation N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:e4db50ea-bda1-4566-b047-0ca50abc6f07
|
|
||||||
set "key=7NBT4-WGBQX-MP4H7-QXFF8-YP3KX" &:: Enterprise Remote Server
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows 10 [RS2]
|
|
||||||
:e0b2d383-d112-413f-8a80-97f373a5820c
|
|
||||||
set "key=YYVX9-NTFWV-6MDM3-9PT4T-4M68B" &:: Enterprise G
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:e38454fb-41a4-4f59-a5dc-25080e354730
|
|
||||||
set "key=44RPN-FTY23-9VTTB-MP9BX-T84FV" &:: Enterprise G N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows 10 [RS1]
|
|
||||||
:2d5a5a60-3040-48bf-beb0-fcd770c20ce0
|
|
||||||
set "key=DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ" &:: Enterprise 2016 LTSB
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:9f776d83-7156-45b2-8a5c-359b9c9f22a3
|
|
||||||
set "key=QFFDN-GRT3P-VKWWX-X7T3R-8B639" &:: Enterprise 2016 LTSB N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:3f1afc82-f8ac-4f6c-8005-1d233e606eee
|
|
||||||
set "key=6TP4R-GNPTD-KYYHQ-7B7DP-J447Y" &:: Pro Education
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:5300b18c-2e33-4dc2-8291-47ffcec746dd
|
|
||||||
set "key=YVWGF-BXNMC-HTQYQ-CPQ99-66QFC" &:: Pro Education N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows 10 [TH]
|
|
||||||
:58e97c99-f377-4ef1-81d5-4ad5522b5fd8
|
|
||||||
set "key=TX9XD-98N7V-6WMQ6-BX7FG-H8Q99" &:: Home
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:7b9e1751-a8da-4f75-9560-5fadfe3d8e38
|
|
||||||
set "key=3KHY7-WNT83-DGQKR-F7HPR-844BM" &:: Home N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:cd918a57-a41b-4c82-8dce-1a538e221a83
|
|
||||||
set "key=7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH" &:: Home Single Language
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:a9107544-f4a0-4053-a96a-1479abdef912
|
|
||||||
set "key=PVMJN-6DFY6-9CCP6-7BKTT-D3WVR" &:: Home China
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:2de67392-b7a7-462a-b1ca-108dd189f588
|
|
||||||
set "key=W269N-WFGWX-YVC9B-4J6C9-T83GX" &:: Pro
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:a80b5abf-76ad-428b-b05d-a47d2dffeebf
|
|
||||||
set "key=MH37W-N47XK-V7XM9-C7227-GCQG9" &:: Pro N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:e0c42288-980c-4788-a014-c080d2e1926e
|
|
||||||
set "key=NW6C2-QMPVW-D7KKK-3GKT6-VCFB2" &:: Education
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:3c102355-d027-42c6-ad23-2e7ef8a02585
|
|
||||||
set "key=2WH4N-8QGBV-H22JP-CT43Q-MDWWJ" &:: Education N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:73111121-5638-40f6-bc11-f1d7b0d64300
|
|
||||||
set "key=NPPR9-FWDCX-D2C8J-H872K-2YT43" &:: Enterprise
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:e272e3e2-732f-4c65-a8f0-484747d0d947
|
|
||||||
set "key=DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4" &:: Enterprise N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:7b51a46c-0c04-4e8f-9af4-8496cca90d5e
|
|
||||||
set "key=WNMTR-4C88C-JK8YV-HQ7T2-76DF9" &:: Enterprise 2015 LTSB
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:87b838b7-41b6-4590-8318-5797951d8529
|
|
||||||
set "key=2F77B-TNFGY-69QQF-B8YKP-D69TJ" &:: Enterprise 2015 LTSB N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows Server 2019 [RS5]
|
|
||||||
:de32eafd-aaee-4662-9444-c1befb41bde2
|
|
||||||
set "key=N69G4-B89J2-4G8F4-WWYCC-J464C" &:: Standard
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:34e1ae55-27f8-4950-8877-7a03be5fb181
|
|
||||||
set "key=WMDGN-G9PQG-XVVXX-R3X43-63DFG" &:: Datacenter
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:034d3cbb-5d4b-4245-b3f8-f84571314078
|
|
||||||
set "key=WVDHN-86M7X-466P6-VHXV7-YY726" &:: Essentials
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:a99cc1f0-7719-4306-9645-294102fbff95
|
|
||||||
set "key=FDNH6-VW9RW-BXPJ7-4XTYG-239TB" &:: Azure Core
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:73e3957c-fc0c-400d-9184-5f7b6f2eb409
|
|
||||||
set "key=N2KJX-J94YW-TQVFB-DG9YT-724CC" &:: Standard ACor
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:90c362e5-0da1-4bfd-b53b-b87d309ade43
|
|
||||||
set "key=6NMRW-2C8FM-D24W7-TQWMY-CWH2D" &:: Datacenter ACor
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:8de8eb62-bbe0-40ac-ac17-f75595071ea3
|
|
||||||
set "key=GRFBW-QNDC4-6QBHG-CCK3B-2PR88" &:: ServerARM64
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows Server 2016 [RS4]
|
|
||||||
:43d9af6e-5e86-4be8-a797-d072a046896c
|
|
||||||
set "key=K9FYF-G6NCK-73M32-XMVPY-F9DRR" &:: ServerARM64
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows Server 2016 [RS3]
|
|
||||||
:61c5ef22-f14f-4553-a824-c4b31e84b100
|
|
||||||
set "key=PTXN8-JFHJM-4WC78-MPCBR-9W4KR" &:: Standard ACor
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:e49c08e7-da82-42f8-bde2-b570fbcae76c
|
|
||||||
set "key=2HXDN-KRXHB-GPYC7-YCKFJ-7FVDG" &:: Datacenter ACor
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows Server 2016 [RS1]
|
|
||||||
:8c1c5410-9f39-4805-8c9d-63a07706358f
|
|
||||||
set "key=WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY" &:: Standard
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:21c56779-b449-4d20-adfc-eece0e1ad74b
|
|
||||||
set "key=CB7KF-BWN84-R7R2Y-793K2-8XDDG" &:: Datacenter
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:2b5a1b0f-a5ab-4c54-ac2f-a6d94824a283
|
|
||||||
set "key=JCKRF-N37P4-C2D82-9YXRT-4M63B" &:: Essentials
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:7b4433f4-b1e7-4788-895a-c45378d38253
|
|
||||||
set "key=QN4C6-GBJD2-FB422-GHWJK-GJG2R" &:: Cloud Storage
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:3dbf341b-5f6c-4fa7-b936-699dce9e263f
|
|
||||||
set "key=VP34G-4NPPG-79JTQ-864T4-R3MQX" &:: Azure Core
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,332 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
[HWID] Digital License Activation:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- This activation is supported for Windows 10 ONLY.
|
|
||||||
- This activation does not store any files in your system.
|
|
||||||
- This activation is a permanent activation for your system Hardware.
|
|
||||||
|
|
||||||
- On a system, this activation can be created for all the supported editions, and all can be
|
|
||||||
linked to Microsoft account without any issues.
|
|
||||||
|
|
||||||
- Once a system is activated, this activation cannot be removed. (Because the license is stored in
|
|
||||||
the Microsoft servers and not in the user's system.)
|
|
||||||
|
|
||||||
- Any significant changes in the Hardware (such as a motherboard) may deactivate the system.
|
|
||||||
It is possible to reactivate a system that was deactivated because of significant hardware
|
|
||||||
changes, IF your activation, was linked to an online Microsoft account.
|
|
||||||
|
|
||||||
- For activation to succeed, the Windows Update Service and internet connectivity must be enabled.
|
|
||||||
If you are trying to activate without these conditions being met, then the system will auto-
|
|
||||||
activate later when the conditions are met.
|
|
||||||
|
|
||||||
- Auto activation scenario after the Windows reinstall:
|
|
||||||
- The Internet is required. (Only at the time of activation)
|
|
||||||
- The system will auto-activate if Retail (Consumer) media was used for the installation.
|
|
||||||
- The system will NOT auto-activate if VL (Business) media was used for the installation.
|
|
||||||
In this case, the user will have to insert that windows edition Retail/OEM key (find keys below
|
|
||||||
in this page) to activate, if the user doesn't wish to activate again using this script.
|
|
||||||
|
|
||||||
- Possible reasons for activation failure:
|
|
||||||
- The Internet is not connected.
|
|
||||||
- Windows update service is disabled.
|
|
||||||
- Use of a VPN, and/or a privacy-based hosts file, firewall rules.
|
|
||||||
- Corrupt system files.
|
|
||||||
- Microsoft servers block the activation request from some countries such as Iran.
|
|
||||||
- Rarely, Microsoft's activation servers are the problem.
|
|
||||||
- Some machines are not able to generate GenuineTicket.xml file using gatherosstate.exe
|
|
||||||
The reason is unknown (to me). Please contact me if it happens to you.
|
|
||||||
|
|
||||||
* Troubleshoot guide is listed below.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
Documentation by @mspaintmsi
|
|
||||||
|
|
||||||
Included topics-
|
|
||||||
|
|
||||||
How does it work?
|
|
||||||
Is it possible that Microsoft can block these Digital Licenses (HWID)?
|
|
||||||
|
|
||||||
https://pastebin.com/raw/7Xyaf15Z
|
|
||||||
Mirror Link-
|
|
||||||
https://textuploader.com/1dg8d/raw
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Supported Products:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
Windows 10 Versions that can be activated:
|
|
||||||
|
|
||||||
Core
|
|
||||||
CoreCountrySpecific
|
|
||||||
CoreN
|
|
||||||
CoreSingleLanguage
|
|
||||||
Education
|
|
||||||
EducationN
|
|
||||||
Enterprise
|
|
||||||
EnterpriseN
|
|
||||||
EnterpriseS [LTSB 2015 & 2016]
|
|
||||||
EnterpriseSN [LTSB 2015 & 2016]
|
|
||||||
Professional
|
|
||||||
ProfessionalEducation
|
|
||||||
ProfessionalEducationN
|
|
||||||
ProfessionalN
|
|
||||||
ProfessionalWorkstation
|
|
||||||
ProfessionalWorkstationN
|
|
||||||
ServerRdsh
|
|
||||||
IoTEnterprise
|
|
||||||
|
|
||||||
|
|
||||||
Note - X86-X64 and ARM64 architecture systems are supported.
|
|
||||||
- Any Evaluation version of Windows (i.e. 'EVAL' LTSB/C) cannot be activated.
|
|
||||||
- LTSC 2019 is not supported.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Switches for the Script:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- To run the script in unattended mode, use /u parameter.
|
|
||||||
"HWID_Activation.cmd" /u
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
File Details:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
fabb5a0fc1e6a372219711152291339af36ed0b5 *gatherosstate.exe Virus Total = 0/68
|
|
||||||
ca3a51fdfc8749b8be85f7904b1c238a6dfba135 *slc.dll Virus Total = 1/67
|
|
||||||
578364cb2319da7999acd8c015b4ce8da8f1b282 *ARM64_gatherosstate.exe Virus Total = 0/70
|
|
||||||
5dbea3a580cf60391453a04a5c910a3ceca2b810 *ARM64_slc.dll Virus Total = 0/69
|
|
||||||
|
|
||||||
Virus Total Report Date: 08-12-2019
|
|
||||||
|
|
||||||
- File Sources:
|
|
||||||
|
|
||||||
- gatherosstate.exe (Original):
|
|
||||||
From Windows 10 x86 14393 ADK
|
|
||||||
|
|
||||||
- ARM64_gatherosstate.exe (Original):
|
|
||||||
From Windows 10 ARM64 18362 ISO
|
|
||||||
|
|
||||||
- ARM64_slc.dll and slc.dll:
|
|
||||||
|
|
||||||
Original slshim
|
|
||||||
https://github.com/vyvojar/slshim
|
|
||||||
|
|
||||||
Improved by @mspaintmsi
|
|
||||||
https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
https://gitlab.com/massgrave/massgrave
|
|
||||||
|
|
||||||
Source code is included.
|
|
||||||
slc.dll is based on Integrated_Patcher_2 method.
|
|
||||||
It is currently in use in HWID/KMS38 Activation script.
|
|
||||||
|
|
||||||
____________________________________________________________________________________________________
|
|
||||||
|
|
||||||
You can safely delete the following files if it's not required for you.
|
|
||||||
|
|
||||||
ARM64_gatherosstate.exe and ARM64_slc.dll - Required to activate ARM64 Arch Windows 10.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Manual Activation Process:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- Prerequisite:
|
|
||||||
|
|
||||||
For Windows 10 x86-x64 system, you need following files,
|
|
||||||
fabb5a0fc1e6a372219711152291339af36ed0b5 *gatherosstate.exe
|
|
||||||
ca3a51fdfc8749b8be85f7904b1c238a6dfba135 *slc.dll
|
|
||||||
|
|
||||||
For Windows 10 ARM64 system, you need following files,
|
|
||||||
578364cb2319da7999acd8c015b4ce8da8f1b282 *ARM64_gatherosstate.exe
|
|
||||||
5dbea3a580cf60391453a04a5c910a3ceca2b810 *ARM64_slc.dll
|
|
||||||
* Rename the ARM64 files to gatherosstate.exe and slc.dll respectively.
|
|
||||||
|
|
||||||
|
|
||||||
Make a folder named 'Files' in C drive, [C:\Files] and copy the required files in that folder.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Retail/OEM Keys Windows 10 Editions
|
|
||||||
|
|
||||||
YTMG3-N6DKC-DKB77-7M9GH-8HVX7 Core
|
|
||||||
4CPRK-NM3K3-X6XXQ-RXX86-WXCHW CoreN
|
|
||||||
N2434-X9D7W-8PF6X-8DV9T-8TYMD CoreCountrySpecific
|
|
||||||
BT79Q-G7N6G-PGBYW-4YWX6-6F4BT CoreSingleLanguage
|
|
||||||
YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY Education
|
|
||||||
84NGF-MHBT6-FXBX8-QWJK7-DRR8H EducationN
|
|
||||||
XGVPP-NMH47-7TTHJ-W3FW7-8HV2C Enterprise
|
|
||||||
3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT EnterpriseN
|
|
||||||
FWN7H-PF93Q-4GGP8-M8RF3-MDWWW EnterpriseS [LTSB 2015]
|
|
||||||
8V8WN-3GXBH-2TCMG-XHRX3-9766K EnterpriseSN [LTSB 2015]
|
|
||||||
NK96Y-D9CD8-W44CQ-R8YTK-DYJWX EnterpriseS [LTSB 2016]
|
|
||||||
2DBW3-N2PJG-MVHW3-G7TDK-9HKR4 EnterpriseSN [LTSB 2016]
|
|
||||||
VK7JG-NPHTM-C97JM-9MPGT-3V66T Professional
|
|
||||||
2B87N-8KFHP-DKV6R-Y2C8J-PKCKT ProfessionalN
|
|
||||||
8PTT6-RNW4C-6V7J2-C2D3X-MHBPB ProfessionalEducation
|
|
||||||
GJTYN-HDMQY-FRR76-HVGC7-QPF8P ProfessionalEducationN
|
|
||||||
DXG7C-N36C4-C4HTG-X4T3X-2YV77 ProfessionalWorkstation
|
|
||||||
WYPNQ-8C467-V2W6J-TX4WX-WT2RQ ProfessionalWorkstationN
|
|
||||||
NJCF7-PW8QT-3324D-688JX-2YV66 ServerRdsh
|
|
||||||
XQQYW-NFFMW-XJPBH-K8732-CKFFD IoTEnterprise
|
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- Make sure the Windows Update Service and internet are both enabled.
|
|
||||||
- Open a command prompt (run cmd.exe) as administrator, and enter following listed commands in the
|
|
||||||
the sequence in which they are given.
|
|
||||||
- Enter Retail/OEM Key, (Replace '%key%' with the key from the above list) with the following command:
|
|
||||||
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs /ipk %key%
|
|
||||||
|
|
||||||
- Make sure slc.dll and gatherosstate.exe files are located in the folder, "C:\Files" and enter
|
|
||||||
the following commands to generate GenuineTicket.xml file.
|
|
||||||
|
|
||||||
For x86-x64 systems,
|
|
||||||
|
|
||||||
pushd "C:\Files"
|
|
||||||
rundll32 "C:\Files\slc.dll",PatchGatherosstate
|
|
||||||
call "C:\Files\gatherosstatemodified.exe"
|
|
||||||
|
|
||||||
For ARM64 systems,
|
|
||||||
|
|
||||||
call "C:\Files\gatherosstate.exe"
|
|
||||||
|
|
||||||
- Now a GenuineTicket.xml file should be created in the folder "C:\Files\", copy and paste this file in the
|
|
||||||
folder named, "C:\ProgramData\Microsoft\Windows\ClipSVC\GenuineTicket\"
|
|
||||||
|
|
||||||
- Now apply this ticket using the following commands in this sequence:
|
|
||||||
|
|
||||||
net stop ClipSVC
|
|
||||||
net start ClipSVC
|
|
||||||
|
|
||||||
- Activate Windows with the following command:
|
|
||||||
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs /ato
|
|
||||||
|
|
||||||
- Check Activation Status with the following command:
|
|
||||||
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs /xpr
|
|
||||||
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
* Note - [clipup -v -o -altto <ticket_path>] method to apply the ticket was not suggested because
|
|
||||||
of the issues in case the username have spaces or non English characters.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Troubleshoot activation issues:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- Make sure the internet is connected.
|
|
||||||
|
|
||||||
- Open CMD and type services.msc and hit Enter, When Services opens up, look for 'Windows Update'
|
|
||||||
and Make sure its startup type is set to Automatic. Some update blocking tools and scripts
|
|
||||||
usually permanently block the update service, you need to make sure it's not the case.
|
|
||||||
|
|
||||||
- VPN, privacy-based hosts and/or firewall rules may cause problems with the activation. Disable
|
|
||||||
them if you are facing problems in activation.
|
|
||||||
|
|
||||||
- Reboot the system.
|
|
||||||
|
|
||||||
- Now run the script to activate Windows 10, and if unsuccessful,
|
|
||||||
Try the troubleshoot button in the settings activation page.
|
|
||||||
If still unsuccessful then read additional troubleshoot options listed below.
|
|
||||||
|
|
||||||
--------------------------------------------
|
|
||||||
|
|
||||||
- Open CMD as administrator, and enter the following command:
|
|
||||||
|
|
||||||
Dism /online /Cleanup-Image /RestoreHealth
|
|
||||||
|
|
||||||
- After it's done, reboot the system and open CMD as administrator again, and enter the
|
|
||||||
following command:
|
|
||||||
|
|
||||||
sfc.exe /scannow
|
|
||||||
|
|
||||||
- After it's done, reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
open CMD as administrator again, and enter the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /rearm
|
|
||||||
|
|
||||||
- Reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
You may try to rebuild licensing Tokens.dat as suggested in https://support.microsoft.com/en-us/help/2736303
|
|
||||||
(this will require to repair Office afterwards.)
|
|
||||||
|
|
||||||
- Reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
try cleaning the clipup using the following commands, it will reset all the HWID/KMS38 installed
|
|
||||||
licences in the current system installation. open CMD as administrator again, and enter the
|
|
||||||
following commands one by one:
|
|
||||||
|
|
||||||
net stop ClipSVC
|
|
||||||
rundll32 clipc.dll,ClipCleanUpState
|
|
||||||
|
|
||||||
- Reboot the system (important) and run the activation script, and if unsuccessful,
|
|
||||||
Make sure hardware component proper drivers are installed, check manufacturer site/Windows-
|
|
||||||
update for drivers.
|
|
||||||
|
|
||||||
- After it's done, reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
it may be time to start over from the very beginning and do a clean install of windows :D
|
|
||||||
|
|
||||||
-------------------------------------------
|
|
||||||
Activation is blocked in some countries -
|
|
||||||
-------------------------------------------
|
|
||||||
|
|
||||||
- Microsoft servers block the activation request from some countries such as Iran,
|
|
||||||
To activate the system in those countries, follow the below steps,
|
|
||||||
- In the settings app, Change Region and Timezone to the USA location and use a VPN, choose the
|
|
||||||
the location of the USA. Now run the script, it should activate now.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- Some machines are not able to generate GenuineTicket.xml file using gatherosstate.exe
|
|
||||||
The reason is unknown (to me). Please contact me if it happens to you.
|
|
||||||
|
|
||||||
=========================================================================================================
|
|
||||||
Credits:
|
|
||||||
=========================================================================================================
|
|
||||||
|
|
||||||
@mspaintmsi Original co-authors of HWID/KMS38 Activation without KMS or predecessor install/upgrade.
|
|
||||||
and Created various methods for HWID/KMS38 Activation
|
|
||||||
*Anonymous https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
https://gitlab.com/massgrave/massgrave
|
|
||||||
|
|
||||||
@vyvojar Original slshim (slc.dll)
|
|
||||||
https://github.com/vyvojar/slshim/releases
|
|
||||||
|
|
||||||
---------------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
HWID/KMS38 methods Suggestions and improvements:-
|
|
||||||
|
|
||||||
@sponpa New ideas for the HWID/KM38 Generation
|
|
||||||
https://www.nsaneforums.com/topic/316668--/page/21/?tab=comments#comment-1431257
|
|
||||||
|
|
||||||
@leitek8 Improvements for the slc.dll
|
|
||||||
https://www.nsaneforums.com/topic/316668--/page/22/?tab=comments#comment-1438005
|
|
||||||
|
|
||||||
---------------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Kind Help:-
|
|
||||||
|
|
||||||
Thanks for having my back and answering all of my queries. (In no particular order)
|
|
||||||
|
|
||||||
@AveYo aka @BAU, @sponpa, @mspaintmsi @RPO, @leitek8, @mxman2k, @Yen, @abbodi1406
|
|
||||||
|
|
||||||
@BorrowedWifi for providing support in fixing English grammar errors in the Read Me.
|
|
||||||
@Chibi ANUBIS and @smashed for testing scripts for ARM64 system.
|
|
||||||
|
|
||||||
Special thanks to @abbodi1406 for providing the great help.
|
|
||||||
|
|
||||||
---------------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
|
|
||||||
Homepages-
|
|
||||||
NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
|
|
||||||
Maintained by @WindowsAddict
|
|
||||||
|
|
||||||
P.S. I (@WindowsAddict) did not help in the development of HWID/KMS38 Activation in any way, I only
|
|
||||||
manage batch script tool which is based on the above mentioned original co-authors activation methods.
|
|
||||||
|
|
||||||
=========================================================================================================
|
|
@ -1,350 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
KMS38 Activation:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- This activation method activates Windows 10 and Windows Server (14393 and later builds),
|
|
||||||
until the year 2038.
|
|
||||||
- This activation method does not store any files on the system.
|
|
||||||
|
|
||||||
- Make sure the following things have been accounted for, before applying KMS38 Activation:
|
|
||||||
- Before the activation, if any KMS activator is installed, then make sure to uninstall it
|
|
||||||
completely.
|
|
||||||
- After KMS38 activation for the Windows Operating System has been achieved, if you want to
|
|
||||||
additionally, use the 180 Days KMS Activator for MS Office, then you must make sure that
|
|
||||||
it (the 180 Days KMS Activator for MS Office) is compatible with Windows KMS38 activation.
|
|
||||||
FYI, the following activators are compatible and can activate Office
|
|
||||||
without disrupting the Windows KMS38 activation.
|
|
||||||
|
|
||||||
KMS_VL_ALL by @abbodi1406 https://forums.mydigitallife.net/posts/838808
|
|
||||||
Online KMS Activation Script https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
|
|
||||||
- Any KMS Activator which is not compatible with KMS38, may overwrite the KMS38 activation for
|
|
||||||
Windows with its own 180 days activation, thereby destroying the KMS38 activation for Windows.
|
|
||||||
To prevent this accidental overwriting, you can apply KMS38 protection for Windows, check
|
|
||||||
the Extras folder for more details.
|
|
||||||
|
|
||||||
- Why is the script setting the specific KMS host to 127.0.0.2 (localhost)?
|
|
||||||
- By doing this, global KMS IP can not replace KMS38 activation but can be used with Office and
|
|
||||||
other Windows Editions.
|
|
||||||
- In case you don't like it, you can remove it with following codes, open CMD as admin and enter,
|
|
||||||
|
|
||||||
set "SPPk=SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform"
|
|
||||||
reg delete "HKLM\%SPPk%\55c92734-d682-4d71-983e-d6ec3f16059f" /f
|
|
||||||
reg delete "HKU\S-1-5-20\%SPPk%\55c92734-d682-4d71-983e-d6ec3f16059f" /f
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
Documentation by @mspaintmsi
|
|
||||||
|
|
||||||
Included topics-
|
|
||||||
|
|
||||||
How does it work?
|
|
||||||
|
|
||||||
https://pastebin.com/raw/7Xyaf15Z
|
|
||||||
Mirror Link-
|
|
||||||
https://textuploader.com/1dg8d/raw
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Supported Products:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
Windows 10:
|
|
||||||
|
|
||||||
Core
|
|
||||||
CoreCountrySpecific
|
|
||||||
CoreN
|
|
||||||
CoreSingleLanguage
|
|
||||||
Education
|
|
||||||
EducationN
|
|
||||||
Enterprise
|
|
||||||
EnterpriseG
|
|
||||||
EnterpriseGN
|
|
||||||
EnterpriseN
|
|
||||||
EnterpriseS [LTSB 2016 & LTSC 2019]
|
|
||||||
EnterpriseSN [LTSB 2016 & LTSC 2019]
|
|
||||||
Professional
|
|
||||||
ProfessionalEducation
|
|
||||||
ProfessionalEducationN
|
|
||||||
ProfessionalN
|
|
||||||
ProfessionalWorkstation
|
|
||||||
ProfessionalWorkstationN
|
|
||||||
ServerRdsh
|
|
||||||
|
|
||||||
------------------------
|
|
||||||
|
|
||||||
Windows Server:
|
|
||||||
|
|
||||||
ServerCloudStorage [Server 2016]
|
|
||||||
ServerDatacenter [Server 2016 & 2019]
|
|
||||||
ServerDatacenterCor [Server 2016 & 2019]
|
|
||||||
ServerSolution [Server 2016 & 2019]
|
|
||||||
ServerSolutionCor [Server 2016 & 2019]
|
|
||||||
ServerStandard [Server 2016 & 2019]
|
|
||||||
ServerStandardCor [Server 2016 & 2019]
|
|
||||||
ServerAzureCor [Server 2016 & 2019]
|
|
||||||
ServerDatacenterACor [All versions]
|
|
||||||
ServerStandardACor [All versions]
|
|
||||||
|
|
||||||
|
|
||||||
Note - X86-X64 and ARM64 architecture systems are supported.
|
|
||||||
- Any Evaluation version of Windows and Server (i.e. 'EVAL' LTSB/C) cannot be activated.
|
|
||||||
- KMS38 only supports Windows/server version 14393 (1607) and newer versions.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Switches in the Script:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- For unattended mode, run the script with /u parameter.
|
|
||||||
|
|
||||||
"KMS38_Activation.cmd" /u
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
File Details:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
fabb5a0fc1e6a372219711152291339af36ed0b5 *gatherosstate.exe Virus Total = 0/68
|
|
||||||
ca3a51fdfc8749b8be85f7904b1c238a6dfba135 *slc.dll Virus Total = 1/67
|
|
||||||
578364cb2319da7999acd8c015b4ce8da8f1b282 *ARM64_gatherosstate.exe Virus Total = 0/70
|
|
||||||
5dbea3a580cf60391453a04a5c910a3ceca2b810 *ARM64_slc.dll Virus Total = 0/69
|
|
||||||
48d928b1bec25a56fe896c430c2c034b7866aa7a *ClipUp.exe Virus Total = 0/67
|
|
||||||
|
|
||||||
Virus Total Report Date: 08-12-2019
|
|
||||||
|
|
||||||
- File Sources:
|
|
||||||
|
|
||||||
- ClipUp.exe (Original):
|
|
||||||
From Windows server 2016 x64 ISO
|
|
||||||
|
|
||||||
- gatherosstate.exe (Original):
|
|
||||||
From Windows 10 x86 14393 ADK
|
|
||||||
|
|
||||||
- ARM64_gatherosstate.exe (Original):
|
|
||||||
From Windows 10 ARM64 18362 ISO
|
|
||||||
|
|
||||||
- ARM64_slc.dll and slc.dll:
|
|
||||||
|
|
||||||
Original slshim
|
|
||||||
https://github.com/vyvojar/slshim
|
|
||||||
|
|
||||||
Improved by @mspaintmsi
|
|
||||||
https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
https://gitlab.com/massgrave/massgrave
|
|
||||||
|
|
||||||
Source code is included.
|
|
||||||
slc.dll is based on Integrated_Patcher_2 method.
|
|
||||||
It is currently in use in HWID/KMS38 Activation script.
|
|
||||||
|
|
||||||
____________________________________________________________________________________________________
|
|
||||||
|
|
||||||
You can safely delete the following files if it's not required for you.
|
|
||||||
|
|
||||||
ClipUp.exe - Required to KMS38 activate Server Cor and Acor editions.
|
|
||||||
ARM64_gatherosstate.exe and ARM64_slc.dll - Required to activate ARM64 Arch Windows 10.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Manual Activation Process:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- Prerequisite:
|
|
||||||
|
|
||||||
For Windows 10 / Server x86-x64 system, you need following files,
|
|
||||||
48d928b1bec25a56fe896c430c2c034b7866aa7a *ClipUp.exe
|
|
||||||
fabb5a0fc1e6a372219711152291339af36ed0b5 *gatherosstate.exe
|
|
||||||
ca3a51fdfc8749b8be85f7904b1c238a6dfba135 *slc.dll
|
|
||||||
* ClipUp.exe is only required to activate Server Cor and Acor editions.
|
|
||||||
|
|
||||||
For Windows 10 ARM64 system, you need following files,
|
|
||||||
578364cb2319da7999acd8c015b4ce8da8f1b282 *ARM64_gatherosstate.exe
|
|
||||||
5dbea3a580cf60391453a04a5c910a3ceca2b810 *ARM64_slc.dll
|
|
||||||
* Rename the ARM64 files to gatherosstate.exe and slc.dll respectively.
|
|
||||||
|
|
||||||
Make a folder named 'Files' in C drive, [C:\Files] and copy the required files in that folder.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
GVLK Windows 10 Editions
|
|
||||||
|
|
||||||
TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 Core
|
|
||||||
PVMJN-6DFY6-9CCP6-7BKTT-D3WVR CoreCountrySpecific
|
|
||||||
3KHY7-WNT83-DGQKR-F7HPR-844BM CoreN
|
|
||||||
7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH CoreSingleLanguage
|
|
||||||
NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 Education
|
|
||||||
2WH4N-8QGBV-H22JP-CT43Q-MDWWJ EducationN
|
|
||||||
NPPR9-FWDCX-D2C8J-H872K-2YT43 Enterprise
|
|
||||||
YYVX9-NTFWV-6MDM3-9PT4T-4M68B EnterpriseG
|
|
||||||
44RPN-FTY23-9VTTB-MP9BX-T84FV EnterpriseGN
|
|
||||||
DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 EnterpriseN
|
|
||||||
DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ EnterpriseS [LTSB 2016]
|
|
||||||
M7XTQ-FN8P6-TTKYV-9D4CC-J462D EnterpriseS [LTSC 2019]
|
|
||||||
QFFDN-GRT3P-VKWWX-X7T3R-8B639 EnterpriseSN [LTSB 2016]
|
|
||||||
92NFX-8DJQP-P6BBQ-THF9C-7CG2H EnterpriseSN [LTSC 2019]
|
|
||||||
W269N-WFGWX-YVC9B-4J6C9-T83GX Professional
|
|
||||||
6TP4R-GNPTD-KYYHQ-7B7DP-J447Y ProfessionalEducation
|
|
||||||
YVWGF-BXNMC-HTQYQ-CPQ99-66QFC ProfessionalEducationN
|
|
||||||
MH37W-N47XK-V7XM9-C7227-GCQG9 ProfessionalN
|
|
||||||
NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J ProfessionalWorkstation
|
|
||||||
9FNHH-K3HBT-3W4TD-6383H-6XYWF ProfessionalWorkstationN
|
|
||||||
7NBT4-WGBQX-MP4H7-QXFF8-YP3KX ServerRdsh [Less than 1809]
|
|
||||||
CPWHC-NT2C7-VYW78-DHDB2-PG3GK ServerRdsh [Greater or Equal 1809]
|
|
||||||
|
|
||||||
GVLK Windows Server Editions
|
|
||||||
|
|
||||||
QN4C6-GBJD2-FB422-GHWJK-GJG2R ServerCloudStorage [Server 2016]
|
|
||||||
CB7KF-BWN84-R7R2Y-793K2-8XDDG ServerDatacenter, ServerDatacenterCor [Server 2016]
|
|
||||||
WMDGN-G9PQG-XVVXX-R3X43-63DFG ServerDatacenter, ServerDatacenterCor [Server 2019]
|
|
||||||
JCKRF-N37P4-C2D82-9YXRT-4M63B ServerSolution, ServerSolutionCor [Server 2016]
|
|
||||||
WVDHN-86M7X-466P6-VHXV7-YY726 ServerSolution, ServerSolutionCor [Server 2019]
|
|
||||||
WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY ServerStandard, ServerStandardCor [Server 2016]
|
|
||||||
N69G4-B89J2-4G8F4-WWYCC-J464C ServerStandard, ServerStandardCor [Server 2019]
|
|
||||||
VP34G-4NPPG-79JTQ-864T4-R3MQX ServerAzureCor [Server 2016]
|
|
||||||
FDNH6-VW9RW-BXPJ7-4XTYG-239TB ServerAzureCor [Server 2019]
|
|
||||||
6Y6KB-N82V8-D8CQV-23MJW-BWTG6 ServerDatacenterACor [Server 1709 and later]
|
|
||||||
DPCNP-XQFKJ-BJF7R-FRC8D-GF6G4 ServerStandardACor [Server 1709 and later]
|
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- Make sure to properly and completely remove any previously-installed KMS activator if one already exists.
|
|
||||||
- Open CMD as Admin, and enter the following listed commands in the sequence in which they are given.
|
|
||||||
- Enter Generic Volume License Key (GVLK) (Replace '%key%' with the key from the above list)
|
|
||||||
with the following command:
|
|
||||||
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs /ipk %key%
|
|
||||||
|
|
||||||
- Set specific KMS host to 127.0.0.2 [Localhost] with the following command: (Run one by one)
|
|
||||||
- By doing this, the global KMS IP can not replace the KMS38 activation, and can then safely be used with MS Office
|
|
||||||
and other Windows Editions.
|
|
||||||
- It's optional.
|
|
||||||
|
|
||||||
set spp=SoftwareLicensingProduct
|
|
||||||
for /f "tokens=2 delims==" %G in ('"wmic path %spp% where (Description like '%%KMSCLIENT%%' and Name like 'Windows%%' and PartialProductKey is not NULL) get ID /VALUE"') do (set app=%G)
|
|
||||||
wmic path %spp% where ID='%app%' call ClearKeyManagementServiceMachine
|
|
||||||
wmic path %spp% where ID='%app%' call ClearKeyManagementServicePort
|
|
||||||
wmic path %spp% where ID='%app%' call SetKeyManagementServiceMachine MachineName="127.0.0.2"
|
|
||||||
wmic path %spp% where ID='%app%' call SetKeyManagementServicePort 1688
|
|
||||||
|
|
||||||
- Make sure slc.dll and gatherosstate.exe files are located in the folder, "C:\Files" and enter
|
|
||||||
following command to generate GenuineTicket.xml file.
|
|
||||||
|
|
||||||
call "C:\Files\gatherosstate.exe"
|
|
||||||
|
|
||||||
- Now a GenuineTicket.xml file should be created in the folder "C:\Files\", copy and paste this file in the
|
|
||||||
folder named, "C:\ProgramData\Microsoft\Windows\ClipSVC\GenuineTicket\"
|
|
||||||
|
|
||||||
- Now apply this ticket using the following commands in this sequence:
|
|
||||||
(In case of server cor and acor editions, copy the clipup.exe file to the folder "C:\Windows\System32\")
|
|
||||||
|
|
||||||
net stop ClipSVC
|
|
||||||
net start ClipSVC
|
|
||||||
|
|
||||||
- Check the expiry date of the activation with the following command:
|
|
||||||
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs /xpr
|
|
||||||
|
|
||||||
- If the expiry date is not in the year 2038, then enter the following command:
|
|
||||||
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs /rearm-app 55c92734-d682-4d71-983e-d6ec3f16059f
|
|
||||||
set spp=SoftwareLicensingProduct
|
|
||||||
for /f "tokens=2 delims==" %G in ('"wmic path %spp% where (Description like '%%KMSCLIENT%%' and Name like 'Windows%%' and PartialProductKey is not NULL) get ID /VALUE"') do (set app=%G)
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs /rearm-sku %app%
|
|
||||||
|
|
||||||
- check expiry date again, now it should show activation until the year 2038.
|
|
||||||
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Troubleshoot activation issues:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- Make sure to completely remove any previously-installed KMS activators if any exist, before
|
|
||||||
installing KMS38 activation.
|
|
||||||
|
|
||||||
- Reboot the system.
|
|
||||||
|
|
||||||
- Now run the script to activate Windows 10, and if unsuccessful,
|
|
||||||
Try the troubleshoot button in settings activation page.
|
|
||||||
If still unsuccessful then read additional troubleshoot options listed below.
|
|
||||||
|
|
||||||
--------------------------------------------
|
|
||||||
|
|
||||||
- Open CMD as Admin, and enter the following command:
|
|
||||||
|
|
||||||
Dism /online /Cleanup-Image /RestoreHealth
|
|
||||||
|
|
||||||
- After its done, reboot the system and Open CMD as Admin, and enter the following command:
|
|
||||||
|
|
||||||
sfc.exe /scannow
|
|
||||||
|
|
||||||
- After it's done, reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
open CMD as administrator again, and enter the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /rearm
|
|
||||||
|
|
||||||
- Reboot the system (important) and run the activation script, and if unsuccessful,
|
|
||||||
You may try to rebuild licensing Tokens.dat as suggested in https://support.microsoft.com/en-us/help/2736303
|
|
||||||
(this will require to repair Office afterwards.)
|
|
||||||
|
|
||||||
- Reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
try cleaning the clipup using the following commands, it will reset all the HWID/KMS38 installed
|
|
||||||
licences in the current system installation. open CMD as administrator again, and enter the
|
|
||||||
following commands one by one:
|
|
||||||
|
|
||||||
net stop ClipSVC
|
|
||||||
rundll32 clipc.dll,ClipCleanUpState
|
|
||||||
|
|
||||||
- Reboot the system (important) and run the activation script, and if unsuccessful, it may be
|
|
||||||
time to start over from the very beginning and do a clean install of windows :D
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- Some machines are not able to generate GenuineTicket.xml file using gatherosstate.exe
|
|
||||||
The reason is unknown (to me). Please contact me if it happens to you.
|
|
||||||
|
|
||||||
=========================================================================================================
|
|
||||||
Credits:
|
|
||||||
=========================================================================================================
|
|
||||||
|
|
||||||
@mspaintmsi Original co-authors of HWID/KMS38 Activation without KMS or predecessor install/upgrade.
|
|
||||||
and Created various methods for HWID/KMS38 Activation
|
|
||||||
*Anonymous https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
https://gitlab.com/massgrave/massgrave
|
|
||||||
|
|
||||||
@vyvojar Original slshim (slc.dll)
|
|
||||||
https://github.com/vyvojar/slshim/releases
|
|
||||||
|
|
||||||
---------------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
HWID/KMS38 methods Suggestions and improvements:-
|
|
||||||
|
|
||||||
@sponpa New ideas for the HWID/KM38 Generation
|
|
||||||
https://www.nsaneforums.com/topic/316668--/page/21/?tab=comments#comment-1431257
|
|
||||||
|
|
||||||
@leitek8 Improvements for the slc.dll
|
|
||||||
https://www.nsaneforums.com/topic/316668--/page/22/?tab=comments#comment-1438005
|
|
||||||
|
|
||||||
---------------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Kind Help:-
|
|
||||||
|
|
||||||
Thanks for having my back and answering all of my queries. (In no particular order)
|
|
||||||
|
|
||||||
@AveYo aka @BAU, @sponpa, @mspaintmsi @RPO, @leitek8, @mxman2k, @Yen, @abbodi1406
|
|
||||||
|
|
||||||
@BorrowedWifi for providing support in fixing English grammar errors in the Read Me.
|
|
||||||
@Chibi ANUBIS and @smashed for testing scripts for ARM64 system.
|
|
||||||
|
|
||||||
Special thanks to @abbodi1406 for providing the great help.
|
|
||||||
|
|
||||||
---------------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
|
|
||||||
Homepages-
|
|
||||||
NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
|
|
||||||
Maintained by @WindowsAddict
|
|
||||||
|
|
||||||
P.S. I (@WindowsAddict) did not help in the development of HWID/KMS38 Activation in any way, I only
|
|
||||||
manage batch script tool which is based on the above mentioned original co-authors activation methods.
|
|
||||||
|
|
||||||
=========================================================================================================
|
|
File diff suppressed because it is too large
Load Diff
@ -1,16 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
File Details:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
d30a0e4e5911d3ca705617d17225372731c770e2 *cleanosppx64.exe Virus Total = 0/66
|
|
||||||
39ed8659e7ca16aaccb86def94ce6cec4c847dd6 *cleanosppx86.exe Virus Total = 1/66
|
|
||||||
|
|
||||||
Virus Total Report Date: 12-11-2019
|
|
||||||
|
|
||||||
These files are official Microsoft files and in this script, these are used in
|
|
||||||
cleaning office license in C2R Retail office to VL conversion process.
|
|
||||||
|
|
||||||
The source of these files is the 'old' version of Microsoft Tool O15CTRRemove.diagcab
|
|
||||||
You can get the original file here https://s.put.re/WFuXpyWA.zip
|
|
||||||
|
|
||||||
====================================================================================================
|
|
@ -1,652 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
:: =======================================================================================================
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: =======================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
set Unattended=
|
|
||||||
set _args=
|
|
||||||
set _elev=
|
|
||||||
set RenTask=
|
|
||||||
set RenActTask=
|
|
||||||
set DeskMenu=
|
|
||||||
set _SkipWinAct=
|
|
||||||
set _end=
|
|
||||||
set "_arg1=%~1"
|
|
||||||
if not defined _arg1 goto :NoProgArgs
|
|
||||||
set "_args=%~1"
|
|
||||||
set "_arg2=%~2"
|
|
||||||
set "_arg3=%~3"
|
|
||||||
if defined _arg2 set "_args=%~1 %~2"
|
|
||||||
if defined _arg3 set "_args=%~1 %~2 %~3"
|
|
||||||
for %%A in (%_args%) do (
|
|
||||||
if /i "%%A"=="-el" set _elev=1
|
|
||||||
if /i "%%A"=="/swa" set _SkipWinAct=1
|
|
||||||
if /i "%%A"=="/rt" set RenTask=1&set Unattended=1
|
|
||||||
if /i "%%A"=="/rat" set RenActTask=1&set Unattended=1
|
|
||||||
if /i "%%A"=="/dcm" set DeskMenu=1&set Unattended=1)
|
|
||||||
:NoProgArgs
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "EchoRed=%_psc% write-host -back Black -fore Red"
|
|
||||||
set "EchoGreen=%_psc% write-host -back Black -fore Green"
|
|
||||||
set "EchoYellow=%_psc% write-host -back Black -fore DarkYellow"
|
|
||||||
set "ELine=echo: & %EchoRed% ==== ERROR ==== &echo:"
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
for %%i in (powershell.exe) do if "%%~$path:i"=="" (
|
|
||||||
echo: &echo ==== ERROR ==== &echo:
|
|
||||||
echo Powershell is not installed in the system.
|
|
||||||
echo Aborting...
|
|
||||||
set _end=1
|
|
||||||
goto Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 7600 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo Project is supported only for Windows 7/8/8.1/10 and their Server equivalent.
|
|
||||||
set _end=1
|
|
||||||
goto Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Elevate script as admin and pass arguments and preventing loop
|
|
||||||
:: Thanks to @hearywarlot [ https://forums.mydigitallife.net/threads/.74332/ ] for the VBS method.
|
|
||||||
:: Thanks to @abbodi1406 for the powershell method and solving special characters issue in file path name.
|
|
||||||
|
|
||||||
%nul% reg query HKU\S-1-5-19 && (
|
|
||||||
goto :Passed
|
|
||||||
) || (
|
|
||||||
if defined _elev goto :E_Admin
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_vbsf=%temp%\admin.vbs"
|
|
||||||
set _PSarg="""%~f0""" -el
|
|
||||||
if defined _args set _PSarg="""%~f0""" -el """%_args%"""
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
(
|
|
||||||
echo Set strArg=WScript.Arguments.Named
|
|
||||||
echo Set strRdlproc = CreateObject^("WScript.Shell"^).Exec^("rundll32 kernel32,Sleep"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& strRdlproc.ProcessId ^& "'"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& .ParentProcessId ^& "'"^)
|
|
||||||
echo If InStr ^(.CommandLine, WScript.ScriptName^) ^<^> 0 Then
|
|
||||||
echo strLine = Mid^(.CommandLine, InStr^(.CommandLine , "/File:"^) + Len^(strArg^("File"^)^) + 8^)
|
|
||||||
echo End If
|
|
||||||
echo End With
|
|
||||||
echo .Terminate
|
|
||||||
echo End With
|
|
||||||
echo CreateObject^("Shell.Application"^).ShellExecute "cmd.exe", "/c " ^& chr^(34^) ^& chr^(34^) ^& strArg^("File"^) ^& chr^(34^) ^& strLine ^& chr^(34^), "", "runas", 1
|
|
||||||
)>"!_vbsf!"
|
|
||||||
|
|
||||||
(%nul% cscript //NoLogo "!_vbsf!" /File:"!_batf!" -el "!_args!") && (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
%nul% %_psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && (
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
goto :E_Admin
|
|
||||||
)
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:E_Admin
|
|
||||||
%ELine%
|
|
||||||
echo This script require administrator privileges.
|
|
||||||
echo To do so, right click on this script and select 'Run as administrator'.
|
|
||||||
set _end=1
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:Passed
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Fix for the special characters limitation in path name
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
set "_work=%~dp0"
|
|
||||||
if "%_work:~-1%"=="\" set "_work=%_work:~0,-1%"
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_batp=%_batf:'=''%"
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if not exist "!_work!\Activate.cmd" (
|
|
||||||
%ELine%
|
|
||||||
echo File [Activate.cmd] does not exist in current folder..
|
|
||||||
echo It's required for the Task Creation.
|
|
||||||
set _end=1
|
|
||||||
goto Done
|
|
||||||
)
|
|
||||||
|
|
||||||
call :check cleanosppx64.exe cleanosppx86.exe
|
|
||||||
if defined _miss set _end=1&goto Done
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
set "_dest=%ProgramData%\Online_KMS_Activation"
|
|
||||||
set "key=HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\taskcache\tasks"
|
|
||||||
|
|
||||||
:ActivationRenewal
|
|
||||||
|
|
||||||
cls
|
|
||||||
title Online KMS Activation Renewal
|
|
||||||
mode con cols=98 lines=30
|
|
||||||
set ActTask=
|
|
||||||
set error_=
|
|
||||||
set DelDeskCont=
|
|
||||||
set error_1=
|
|
||||||
|
|
||||||
if defined RenTask goto:Task
|
|
||||||
if defined RenActTask set ActTask=1&goto:Task
|
|
||||||
if defined DeskMenu goto:ContextMenu
|
|
||||||
echo:
|
|
||||||
echo:
|
|
||||||
echo:
|
|
||||||
echo You can apply the option [either 1 or 2] and [3].
|
|
||||||
echo ______________________________________________________
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| Auto Renewal via Task Scheduler ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [1] Create Renewal Task ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [2] Create Renewal and Activation Task ^|
|
|
||||||
echo ^|______________________________________________________^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| Manual Renewal via Desktop Context Menu ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [3] Add Desktop Context Menu ^|
|
|
||||||
echo ^|______________________________________________________^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [4] Exit ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^|______________________________________________________^|
|
|
||||||
echo:
|
|
||||||
choice /C:1234 /N /M ". Enter Your Choice [1,2,3,4] : "
|
|
||||||
|
|
||||||
if errorlevel 4 exit /b
|
|
||||||
if errorlevel 3 goto:ContextMenu
|
|
||||||
if errorlevel 2 set ActTask=1&goto:Task
|
|
||||||
if errorlevel 1 goto:Task
|
|
||||||
|
|
||||||
:======================================================================================================================================================
|
|
||||||
|
|
||||||
:Task
|
|
||||||
|
|
||||||
cls
|
|
||||||
if defined ActTask (
|
|
||||||
title Create Renewal And Activation Tasks
|
|
||||||
) else (
|
|
||||||
title Create Renewal Task
|
|
||||||
)
|
|
||||||
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Renewal" >nul && (
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Renewal /f %nul%
|
|
||||||
)
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Run_Once" >nul && (
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Run_Once /f %nul%
|
|
||||||
)
|
|
||||||
If exist "%_dest%\" (
|
|
||||||
@RD /s /q "%_dest%\" %nul%
|
|
||||||
)
|
|
||||||
If exist "%windir%\Online_KMS_Activation_Script\" (
|
|
||||||
@RD /s /q "%windir%\Online_KMS_Activation_Script\" %nul%
|
|
||||||
)
|
|
||||||
If exist "%ProgramData%\Online_KMS_Activation.cmd" (
|
|
||||||
Reg delete "HKCR\DesktopBackground\shell\Activate Windows - Office" /f %nul%
|
|
||||||
del /f /q "%ProgramData%\Online_KMS_Activation.cmd" %nul%
|
|
||||||
set DelDeskCont=1
|
|
||||||
)
|
|
||||||
|
|
||||||
md "%_dest%\BIN\" %nul%
|
|
||||||
|
|
||||||
set "_temp=%SystemRoot%\Temp\_KMS_Task_Work"
|
|
||||||
if exist "%_temp%\" @RD /S /Q "%_temp%\" %nul%
|
|
||||||
md "%_temp%\" %nul%
|
|
||||||
|
|
||||||
call :Export renewal "%_temp%\Renewal.xml" Unicode
|
|
||||||
if defined ActTask (call :Export run_once "%_temp%\Run_Once.xml" Unicode)
|
|
||||||
|
|
||||||
call :Export info "%_dest%\Info.txt" ASCII
|
|
||||||
|
|
||||||
copy /y /b "!_work!\BIN\cleanosppx64.exe" "%_dest%\BIN\cleanosppx64.exe" %nul%
|
|
||||||
copy /y /b "!_work!\BIN\cleanosppx86.exe" "%_dest%\BIN\cleanosppx86.exe" %nul%
|
|
||||||
|
|
||||||
cd /d "!_work!"
|
|
||||||
|
|
||||||
if defined _SkipWinAct (
|
|
||||||
%nul% %_psc% "(gc Activate.cmd) -replace 'set ActWindows=1', 'set ActWindows=0' | Out-File -encoding ASCII "%_dest%\Activate.cmd"" || (set error_=1)
|
|
||||||
) else (
|
|
||||||
copy /y /b "!_work!\Activate.cmd" "%_dest%\Activate.cmd" %nul%
|
|
||||||
)
|
|
||||||
schtasks /create /tn "Online_KMS_Activation_Script-Renewal" /ru "SYSTEM" /xml "%_temp%\Renewal.xml" %nul%
|
|
||||||
if defined ActTask (schtasks /create /tn "Online_KMS_Activation_Script-Run_Once" /ru "SYSTEM" /xml "%_temp%\Run_Once.xml" %nul%)
|
|
||||||
|
|
||||||
if exist "%_temp%\" @RD /S /Q "%_temp%\" %nul%
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Renewal" >nul || (set error_=1)
|
|
||||||
if defined ActTask reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Run_Once" >nul || (set error_=1)
|
|
||||||
|
|
||||||
If not exist "%_dest%\Activate.cmd" (set error_=1)
|
|
||||||
If not exist "%_dest%\Info.txt" (set error_=1)
|
|
||||||
If not exist "%_dest%\BIN\cleanosppx64.exe" (set error_=1)
|
|
||||||
If not exist "%_dest%\BIN\cleanosppx86.exe" (set error_=1)
|
|
||||||
|
|
||||||
if defined error_ (
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Renewal" >nul && (
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Renewal /f %nul%
|
|
||||||
)
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Run_Once" >nul && (
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Run_Once /f %nul%
|
|
||||||
)
|
|
||||||
reg delete "HKCR\DesktopBackground\shell\Activate Windows - Office" /f %nul%
|
|
||||||
If exist "%_dest%\" (
|
|
||||||
@RD /s /q "%_dest%\" %nul%
|
|
||||||
)
|
|
||||||
echo _________________________________________________________________
|
|
||||||
echo:
|
|
||||||
%ELine%
|
|
||||||
echo Run the Online KMS Complete Uninstall script and then try again.
|
|
||||||
echo _________________________________________________________________
|
|
||||||
) else (
|
|
||||||
echo:
|
|
||||||
echo __________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
if defined DelDeskCont (
|
|
||||||
%EchoYellow% Previous desktop context menu entry for Online KMS Activation is deleted.
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
if defined _SkipWinAct (
|
|
||||||
%EchoYellow% %_dest%\Activate.cmd is set to skip Windows Activation.
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
|
|
||||||
echo Files created:
|
|
||||||
echo %_dest%\BIN\cleanosppx64.exe
|
|
||||||
echo %_dest%\BIN\cleanosppx86.exe
|
|
||||||
echo %_dest%\Activate.cmd
|
|
||||||
echo %_dest%\Info.txt
|
|
||||||
echo:
|
|
||||||
echo Scheduled Tasks created:
|
|
||||||
echo \Online_KMS_Activation_Script-Renewal
|
|
||||||
if defined ActTask (echo \Online_KMS_Activation_Script-Run_Once)
|
|
||||||
echo:
|
|
||||||
echo It's recommended to set exclusion for the following file in your Antivirus Program.
|
|
||||||
echo:
|
|
||||||
echo %_dest%\Activate.cmd
|
|
||||||
echo __________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
if defined ActTask (
|
|
||||||
%EchoGreen% Online KMS Activation - Renewal and Activation Tasks are successfully created.
|
|
||||||
) else (
|
|
||||||
%EchoGreen% Online KMS Activation - Renewal Task is successfully created.
|
|
||||||
)
|
|
||||||
echo __________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:ContextMenu
|
|
||||||
|
|
||||||
cls
|
|
||||||
title Add Desktop Context Menu
|
|
||||||
|
|
||||||
If exist "%ProgramData%\Online_KMS_Activation.cmd" (
|
|
||||||
del /f /q "%ProgramData%\Online_KMS_Activation.cmd" %nul%
|
|
||||||
set DelDeskCont=1
|
|
||||||
)
|
|
||||||
|
|
||||||
reg delete "HKCR\DesktopBackground\shell\Activate Windows - Office" /f %nul%
|
|
||||||
|
|
||||||
if exist "%_dest%\BIN\" (
|
|
||||||
@RD /s /q "%_dest%\BIN\" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
md "%_dest%\BIN\" %nul%
|
|
||||||
copy /y /b "!_work!\BIN\cleanosppx64.exe" "%_dest%\BIN\cleanosppx64.exe" %nul%
|
|
||||||
copy /y /b "!_work!\BIN\cleanosppx86.exe" "%_dest%\BIN\cleanosppx86.exe" %nul%
|
|
||||||
|
|
||||||
if exist "%_dest%\Activate.cmd" (
|
|
||||||
del /f /q "%_dest%\Activate.cmd" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
cd /d "!_work!"
|
|
||||||
|
|
||||||
if defined _SkipWinAct (
|
|
||||||
%nul% %_psc% "(gc Activate.cmd) -replace 'set ActWindows=1', 'set ActWindows=0' | Out-File -encoding ASCII "%_dest%\Activate.cmd"" || (set error_=1)
|
|
||||||
) else (
|
|
||||||
copy /y /b "!_work!\Activate.cmd" "%_dest%\Activate.cmd" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
if exist "%_dest%\Info.txt" (
|
|
||||||
del /f /q "%_dest%\Info.txt" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
call :Export info "%_dest%\Info.txt" ASCII
|
|
||||||
|
|
||||||
reg add "HKCR\DesktopBackground\shell\Activate Windows - Office" /v "Icon" /t REG_SZ /d "%SystemRoot%%\System32\shell32.dll,71" /f >nul 2>&1 || (set error_1=1)
|
|
||||||
reg add "HKCR\DesktopBackground\shell\Activate Windows - Office\command" /ve /d "%_dest%\Activate.cmd" /f %nul% || (set error_1=1)
|
|
||||||
|
|
||||||
If not exist "%_dest%\Activate.cmd" (set error_=1)
|
|
||||||
If not exist "%_dest%\Info.txt" (set error_=1)
|
|
||||||
If not exist "%_dest%\BIN\cleanosppx64.exe" (set error_=1)
|
|
||||||
If not exist "%_dest%\BIN\cleanosppx86.exe" (set error_=1)
|
|
||||||
|
|
||||||
reg query "HKCR\DesktopBackground\shell\Activate Windows - Office" %nul% || (set error_1=1)
|
|
||||||
|
|
||||||
if defined error_1 (
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Renewal" >nul && (
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Renewal /f %nul%
|
|
||||||
)
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Run_Once" >nul && (
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Run_Once /f %nul%
|
|
||||||
)
|
|
||||||
reg delete "HKCR\DesktopBackground\shell\Activate Windows - Office" /f %nul%
|
|
||||||
If exist "%_dest%\" (
|
|
||||||
@RD /s /q "%_dest%\" %nul%
|
|
||||||
)
|
|
||||||
echo _________________________________________________________________
|
|
||||||
echo:
|
|
||||||
%ELine%
|
|
||||||
echo Run the Online KMS Complete Uninstall script and then try again.
|
|
||||||
echo _________________________________________________________________
|
|
||||||
) else (
|
|
||||||
echo:
|
|
||||||
echo __________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
if defined DelDeskCont (
|
|
||||||
%EchoYellow% Previous desktop context menu entry for Online KMS Activation is deleted.
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
if defined _SkipWinAct (
|
|
||||||
%EchoYellow% %_dest%\Activate.cmd is set to skip Windows Activation.
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
|
|
||||||
echo Files created:
|
|
||||||
echo %_dest%\BIN\cleanosppx64.exe
|
|
||||||
echo %_dest%\BIN\cleanosppx86.exe
|
|
||||||
echo %_dest%\Activate.cmd
|
|
||||||
echo %_dest%\Info.txt
|
|
||||||
echo:
|
|
||||||
echo Registry entry added:
|
|
||||||
echo HKCR\DesktopBackground\shell\Activate Windows - Office
|
|
||||||
echo HKCR\DesktopBackground\shell\Activate Windows - Office\command
|
|
||||||
echo __________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
%EchoGreen% Desktop context menu entry for Online KMS Activation is successfully created.
|
|
||||||
echo __________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:Done
|
|
||||||
echo:
|
|
||||||
if defined Unattended (
|
|
||||||
echo Exiting in 3 seconds...
|
|
||||||
if %winbuild% LSS 7600 (ping -n 3 127.0.0.1 > nul) else (timeout /t 3)
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
if defined _end (
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
) else (
|
|
||||||
echo Press any key to go back...
|
|
||||||
pause >nul
|
|
||||||
goto ActivationRenewal
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:info:
|
|
||||||
====================================================================================================
|
|
||||||
Online KMS Activation:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
The use of this script is to activate / renew your Windows /Server /Office license
|
|
||||||
using online KMS.
|
|
||||||
|
|
||||||
- Scheduled task name (If Renewal Task is created) (Weekly).
|
|
||||||
\Online_KMS_Activation_Script-Renewal
|
|
||||||
|
|
||||||
- Scheduled task name (If Activation Task is created).
|
|
||||||
\Online_KMS_Activation_Script-Run_Once
|
|
||||||
|
|
||||||
The scheduled task runs only if the system is connected to the Internet.
|
|
||||||
Activation Task will run on the system login and after successful activation, this task will
|
|
||||||
delete itself.
|
|
||||||
|
|
||||||
- If system preactivation is done via HWID + Online KMS, and HWID was applied but was not
|
|
||||||
successful due to lack of internet at the time of installation of Windows, in that case,
|
|
||||||
Online KMS script will be set to skip Windows activation.
|
|
||||||
|
|
||||||
- Registry entry name and location (If desktop context menu is created).
|
|
||||||
HKCR\DesktopBackground\shell\Activate Windows - Office
|
|
||||||
|
|
||||||
For complete script and more info, browse the script homepage.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
File Details:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
d30a0e4e5911d3ca705617d17225372731c770e2 *cleanosppx64.exe Virus Total = 0/66
|
|
||||||
39ed8659e7ca16aaccb86def94ce6cec4c847dd6 *cleanosppx86.exe Virus Total = 1/66
|
|
||||||
|
|
||||||
Virus Total Report Date: 12-11-2019
|
|
||||||
|
|
||||||
These files are official Microsoft files and in this script, these are used in
|
|
||||||
cleaning office license in C2R Retail office to VL conversion process.
|
|
||||||
|
|
||||||
The source of these files is the 'old' version of Microsoft Tool O15CTRRemove.diagcab
|
|
||||||
You can get the original file here https://s.put.re/WFuXpyWA.zip
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
Online KMS Activation script is just a fork of @abbodi1406's KMS_VL_ALL Project.
|
|
||||||
KMS_VL_ALL homepage: https://forums.mydigitallife.net/posts/838808
|
|
||||||
|
|
||||||
This fork was made to avoid having any KMS binary files and system can be activated using
|
|
||||||
some manual commands or transparent batch script files.
|
|
||||||
|
|
||||||
Online KMS Activation script is a part of 'Microsoft Activation Scripts'
|
|
||||||
Maintained by @WindowsAddict
|
|
||||||
Homepage: https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
:info:
|
|
||||||
|
|
||||||
:renewal:
|
|
||||||
<?xml version="1.0" encoding="UTF-16"?>
|
|
||||||
<Task version="1.3" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
|
|
||||||
<RegistrationInfo>
|
|
||||||
<Source>Microsoft Corporation</Source>
|
|
||||||
<Date>1999-01-01T12:00:00.34375</Date>
|
|
||||||
<Author>RPO/WindowsAddict</Author>
|
|
||||||
<Version>1.0</Version>
|
|
||||||
<Description>Online_KMS_Activation_Script-Renewal - Weekly Activation Renewal Task</Description>
|
|
||||||
<URI>\Online_KMS_Activation_Script-Renewal</URI>
|
|
||||||
<SecurityDescriptor>D:P(A;;FA;;;SY)(A;;FA;;;BA)(A;;FRFX;;;LS)(A;;FRFW;;;S-1-5-80-123231216-2592883651-3715271367-3753151631-4175906628)(A;;FR;;;S-1-5-4)</SecurityDescriptor>
|
|
||||||
</RegistrationInfo>
|
|
||||||
<Triggers>
|
|
||||||
<CalendarTrigger>
|
|
||||||
<StartBoundary>1999-01-01T12:00:00</StartBoundary>
|
|
||||||
<Enabled>true</Enabled>
|
|
||||||
<ScheduleByWeek>
|
|
||||||
<DaysOfWeek>
|
|
||||||
<Sunday />
|
|
||||||
</DaysOfWeek>
|
|
||||||
<WeeksInterval>1</WeeksInterval>
|
|
||||||
</ScheduleByWeek>
|
|
||||||
</CalendarTrigger>
|
|
||||||
</Triggers>
|
|
||||||
<Principals>
|
|
||||||
<Principal id="LocalSystem">
|
|
||||||
<UserId>S-1-5-18</UserId>
|
|
||||||
<RunLevel>HighestAvailable</RunLevel>
|
|
||||||
</Principal>
|
|
||||||
</Principals>
|
|
||||||
<Settings>
|
|
||||||
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
|
|
||||||
<DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
|
|
||||||
<StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
|
|
||||||
<AllowHardTerminate>true</AllowHardTerminate>
|
|
||||||
<StartWhenAvailable>true</StartWhenAvailable>
|
|
||||||
<RunOnlyIfNetworkAvailable>true</RunOnlyIfNetworkAvailable>
|
|
||||||
<IdleSettings>
|
|
||||||
<StopOnIdleEnd>false</StopOnIdleEnd>
|
|
||||||
<RestartOnIdle>false</RestartOnIdle>
|
|
||||||
</IdleSettings>
|
|
||||||
<AllowStartOnDemand>true</AllowStartOnDemand>
|
|
||||||
<Enabled>true</Enabled>
|
|
||||||
<Hidden>true</Hidden>
|
|
||||||
<RunOnlyIfIdle>false</RunOnlyIfIdle>
|
|
||||||
<DisallowStartOnRemoteAppSession>false</DisallowStartOnRemoteAppSession>
|
|
||||||
<UseUnifiedSchedulingEngine>true</UseUnifiedSchedulingEngine>
|
|
||||||
<WakeToRun>false</WakeToRun>
|
|
||||||
<ExecutionTimeLimit>PT10M</ExecutionTimeLimit>
|
|
||||||
<Priority>7</Priority>
|
|
||||||
<RestartOnFailure>
|
|
||||||
<Interval>PT2M</Interval>
|
|
||||||
<Count>3</Count>
|
|
||||||
</RestartOnFailure>
|
|
||||||
</Settings>
|
|
||||||
<Actions Context="LocalSystem">
|
|
||||||
<Exec>
|
|
||||||
<Command>%ProgramData%\Online_KMS_Activation\Activate.cmd</Command>
|
|
||||||
<Arguments>Task</Arguments>
|
|
||||||
</Exec>
|
|
||||||
</Actions>
|
|
||||||
</Task>
|
|
||||||
:renewal:
|
|
||||||
|
|
||||||
:run_once:
|
|
||||||
<?xml version="1.0" encoding="UTF-16"?>
|
|
||||||
<Task version="1.3" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
|
|
||||||
<RegistrationInfo>
|
|
||||||
<Source>Microsoft Corporation</Source>
|
|
||||||
<Date>1999-01-01T12:00:00.34375</Date>
|
|
||||||
<Author>RPO/WindowsAddict</Author>
|
|
||||||
<Version>1.0</Version>
|
|
||||||
<Description>Online_KMS_Activation_Script-Run_Once - Run and Delete itself on first Internet Contact</Description>
|
|
||||||
<URI>\Online_KMS_Activation_Script-Run_Once</URI>
|
|
||||||
<SecurityDescriptor>D:P(A;;FA;;;SY)(A;;FA;;;BA)(A;;FRFX;;;LS)(A;;FRFW;;;S-1-5-80-123231216-2592883651-3715271367-3753151631-4175906628)(A;;FR;;;S-1-5-4)</SecurityDescriptor>
|
|
||||||
</RegistrationInfo>
|
|
||||||
<Triggers>
|
|
||||||
<LogonTrigger>
|
|
||||||
<Enabled>true</Enabled>
|
|
||||||
</LogonTrigger>
|
|
||||||
</Triggers>
|
|
||||||
<Principals>
|
|
||||||
<Principal id="LocalSystem">
|
|
||||||
<UserId>S-1-5-18</UserId>
|
|
||||||
<RunLevel>HighestAvailable</RunLevel>
|
|
||||||
</Principal>
|
|
||||||
</Principals>
|
|
||||||
<Settings>
|
|
||||||
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
|
|
||||||
<DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
|
|
||||||
<StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
|
|
||||||
<AllowHardTerminate>true</AllowHardTerminate>
|
|
||||||
<StartWhenAvailable>true</StartWhenAvailable>
|
|
||||||
<RunOnlyIfNetworkAvailable>true</RunOnlyIfNetworkAvailable>
|
|
||||||
<IdleSettings>
|
|
||||||
<StopOnIdleEnd>false</StopOnIdleEnd>
|
|
||||||
<RestartOnIdle>false</RestartOnIdle>
|
|
||||||
</IdleSettings>
|
|
||||||
<AllowStartOnDemand>true</AllowStartOnDemand>
|
|
||||||
<Enabled>true</Enabled>
|
|
||||||
<Hidden>true</Hidden>
|
|
||||||
<RunOnlyIfIdle>false</RunOnlyIfIdle>
|
|
||||||
<DisallowStartOnRemoteAppSession>false</DisallowStartOnRemoteAppSession>
|
|
||||||
<UseUnifiedSchedulingEngine>true</UseUnifiedSchedulingEngine>
|
|
||||||
<WakeToRun>false</WakeToRun>
|
|
||||||
<ExecutionTimeLimit>PT10M</ExecutionTimeLimit>
|
|
||||||
<Priority>7</Priority>
|
|
||||||
<RestartOnFailure>
|
|
||||||
<Interval>PT2M</Interval>
|
|
||||||
<Count>3</Count>
|
|
||||||
</RestartOnFailure>
|
|
||||||
</Settings>
|
|
||||||
<Actions Context="LocalSystem">
|
|
||||||
<Exec>
|
|
||||||
<Command>%ProgramData%\Online_KMS_Activation\Activate.cmd</Command>
|
|
||||||
<Arguments>Task</Arguments>
|
|
||||||
</Exec>
|
|
||||||
</Actions>
|
|
||||||
</Task>
|
|
||||||
:run_once:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Echo all the missing files.
|
|
||||||
:: Written by @abbodi1406 (MDL)
|
|
||||||
|
|
||||||
:check
|
|
||||||
|
|
||||||
for %%# in (%1 %2) do (if not exist "!_work!\BIN\%%#" (if defined _miss (set "_miss=!_miss! %%#") else (set "_miss=%%#")))
|
|
||||||
if defined _miss (
|
|
||||||
%ELine%
|
|
||||||
echo Following required file^(s^) is missing in 'BIN' folder. Aborting...
|
|
||||||
echo:
|
|
||||||
echo !_miss!
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Extract the text from batch script without character and file encoding issue
|
|
||||||
:: Thanks to @abbodi1406
|
|
||||||
|
|
||||||
:Export
|
|
||||||
%nul% %_psc% "$f=[io.file]::ReadAllText('!_batp!') -split \":%~1\:.*`r`n\"; [io.file]::WriteAllText('%~2',$f[1].Trim(),[System.Text.Encoding]::%~3);" &exit/b
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,263 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
:: For unattended mode, run the script with /u parameter.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
:: =======================================================================================================
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: =======================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
title Online KMS Complete Uninstall
|
|
||||||
set Unattended=
|
|
||||||
set _args=
|
|
||||||
set _elev=
|
|
||||||
set "_arg1=%~1"
|
|
||||||
if not defined _arg1 goto :NoProgArgs
|
|
||||||
set "_args=%~1"
|
|
||||||
set "_arg2=%~2"
|
|
||||||
if defined _arg2 set "_args=%~1 %~2"
|
|
||||||
for %%A in (%_args%) do (
|
|
||||||
if /i "%%A"=="-el" set _elev=1
|
|
||||||
if /i "%%A"=="/u" set Unattended=1)
|
|
||||||
:NoProgArgs
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "EchoRed=%_psc% write-host -back Black -fore Red"
|
|
||||||
set "EchoGreen=%_psc% write-host -back Black -fore Green"
|
|
||||||
set "ELine=echo: & %EchoRed% ==== ERROR ==== &echo:"
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
for %%i in (powershell.exe) do if "%%~$path:i"=="" (
|
|
||||||
echo: &echo ==== ERROR ==== &echo:
|
|
||||||
echo Powershell is not installed in the system.
|
|
||||||
echo Aborting...
|
|
||||||
goto UN_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 7600 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo Project is supported only for Windows 7/8/8.1/10 and their Server equivalent.
|
|
||||||
goto UN_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Elevate script as admin and pass arguments and preventing loop
|
|
||||||
:: Thanks to @hearywarlot [ https://forums.mydigitallife.net/threads/.74332/ ] for the VBS method.
|
|
||||||
:: Thanks to @abbodi1406 for the powershell method and solving special characters issue in file path name.
|
|
||||||
|
|
||||||
%nul% reg query HKU\S-1-5-19 && (
|
|
||||||
goto :Passed
|
|
||||||
) || (
|
|
||||||
if defined _elev goto :E_Admin
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_vbsf=%temp%\admin.vbs"
|
|
||||||
set _PSarg="""%~f0""" -el
|
|
||||||
if defined _args set _PSarg="""%~f0""" -el """%_args%"""
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
(
|
|
||||||
echo Set strArg=WScript.Arguments.Named
|
|
||||||
echo Set strRdlproc = CreateObject^("WScript.Shell"^).Exec^("rundll32 kernel32,Sleep"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& strRdlproc.ProcessId ^& "'"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& .ParentProcessId ^& "'"^)
|
|
||||||
echo If InStr ^(.CommandLine, WScript.ScriptName^) ^<^> 0 Then
|
|
||||||
echo strLine = Mid^(.CommandLine, InStr^(.CommandLine , "/File:"^) + Len^(strArg^("File"^)^) + 8^)
|
|
||||||
echo End If
|
|
||||||
echo End With
|
|
||||||
echo .Terminate
|
|
||||||
echo End With
|
|
||||||
echo CreateObject^("Shell.Application"^).ShellExecute "cmd.exe", "/c " ^& chr^(34^) ^& chr^(34^) ^& strArg^("File"^) ^& chr^(34^) ^& strLine ^& chr^(34^), "", "runas", 1
|
|
||||||
)>"!_vbsf!"
|
|
||||||
|
|
||||||
(%nul% cscript //NoLogo "!_vbsf!" /File:"!_batf!" -el "!_args!") && (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
%nul% %_psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && (
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
goto :E_Admin
|
|
||||||
)
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:E_Admin
|
|
||||||
%ELine%
|
|
||||||
echo This script require administrator privileges.
|
|
||||||
echo To do so, right click on this script and select 'Run as administrator'.
|
|
||||||
goto UN_Done
|
|
||||||
|
|
||||||
:Passed
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
mode con: cols=98 lines=30
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
set "key=HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\taskcache\tasks"
|
|
||||||
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Renewal" >nul && (
|
|
||||||
echo Deleting [Task] Online_KMS_Activation_Script-Renewal
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Renewal /f %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Run_Once" >nul && (
|
|
||||||
echo Deleting [Task] Online_KMS_Activation_Script-Run_Once
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Run_Once /f %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
If exist "%windir%\Online_KMS_Activation_Script\" (
|
|
||||||
echo Deleting [Folder] %windir%\Online_KMS_Activation_Script\
|
|
||||||
@RD /s /q "%windir%\Online_KMS_Activation_Script\" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
If exist "%ProgramData%\Online_KMS_Activation\" (
|
|
||||||
echo Deleting [Folder] %ProgramData%\Online_KMS_Activation\
|
|
||||||
@RD /s /q "%ProgramData%\Online_KMS_Activation\" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
if exist "%ProgramData%\Online_KMS_Activation.cmd" (
|
|
||||||
echo Deleting [File] %ProgramData%\Online_KMS_Activation.cmd
|
|
||||||
del /f /q "%ProgramData%\Online_KMS_Activation.cmd" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
reg query "HKCR\DesktopBackground\shell\Activate Windows - Office" %nul% && (
|
|
||||||
echo Deleting [Context Menu Registry] HKCR\DesktopBackground\shell\Activate Windows - Office
|
|
||||||
Reg delete "HKCR\DesktopBackground\shell\Activate Windows - Office" /f %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
echo:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Clear-KMS-Cache.cmd
|
|
||||||
:: https://forums.mydigitallife.net/posts/1511883
|
|
||||||
:: Written by @abbodi1406 (MDL)
|
|
||||||
|
|
||||||
set "SysPath=%Windir%\System32"
|
|
||||||
if exist "%Windir%\Sysnative\reg.exe" (set "SysPath=%Windir%\Sysnative")
|
|
||||||
set "Path=%SysPath%;%Windir%;%SysPath%\Wbem;%SysPath%\WindowsPowerShell\v1.0\"
|
|
||||||
set "OSPP=SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform"
|
|
||||||
set "SPPk=SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform"
|
|
||||||
wmic path SoftwareLicensingProduct where (Description like '%%KMSCLIENT%%') get Name 2>nul | findstr /i Windows 1>nul && (set SppHook=1) || (set SppHook=0)
|
|
||||||
wmic path SoftwareLicensingProduct where (Description like '%%KMSCLIENT%%') get Name 2>nul | findstr /i Office 1>nul && (set SppHook=1)
|
|
||||||
wmic path OfficeSoftwareProtectionService get Version >nul 2>&1 && (set OsppHook=1) || (set OsppHook=0)
|
|
||||||
if %SppHook% NEQ 0 call :UN_cKMS SoftwareLicensingProduct SoftwareLicensingService SPP
|
|
||||||
if %OsppHook% NEQ 0 call :UN_cKMS OfficeSoftwareProtectionProduct OfficeSoftwareProtectionService OSPP
|
|
||||||
call :UN_cREG >nul 2>&1
|
|
||||||
echo:
|
|
||||||
goto UN_Verify
|
|
||||||
|
|
||||||
:UN_cKMS
|
|
||||||
echo Clearing %3 KMS Cache...
|
|
||||||
set spp=%1
|
|
||||||
set sps=%2
|
|
||||||
for /f "tokens=2 delims==" %%G in ('"wmic path %spp% where (Description like '%%KMSCLIENT%%') get ID /VALUE" 2^>nul') do (set app=%%G&call :UN_cAPP)
|
|
||||||
for /f "tokens=2 delims==" %%A in ('"wmic path %sps% get Version /VALUE"') do set ver=%%A
|
|
||||||
wmic path %sps% where version='%ver%' call ClearKeyManagementServiceMachine >nul 2>&1
|
|
||||||
wmic path %sps% where version='%ver%' call ClearKeyManagementServicePort >nul 2>&1
|
|
||||||
wmic path %sps% where version='%ver%' call DisableKeyManagementServiceDnsPublishing 1 >nul 2>&1
|
|
||||||
wmic path %sps% where version='%ver%' call DisableKeyManagementServiceHostCaching 1 >nul 2>&1
|
|
||||||
goto :eof
|
|
||||||
|
|
||||||
:UN_cAPP
|
|
||||||
wmic path %spp% where ID='%app%' call ClearKeyManagementServiceMachine >nul 2>&1
|
|
||||||
wmic path %spp% where ID='%app%' call ClearKeyManagementServicePort >nul 2>&1
|
|
||||||
goto :eof
|
|
||||||
|
|
||||||
:UN_cREG
|
|
||||||
reg delete "HKLM\%SPPk%\55c92734-d682-4d71-983e-d6ec3f16059f" /f
|
|
||||||
reg delete "HKLM\%SPPk%\0ff1ce15-a989-479d-af46-f275c6370663" /f
|
|
||||||
reg delete "HKLM\%SPPk%" /f /v KeyManagementServiceName
|
|
||||||
reg delete "HKLM\%SPPk%" /f /v KeyManagementServicePort
|
|
||||||
reg delete "HKU\S-1-5-20\%SPPk%\55c92734-d682-4d71-983e-d6ec3f16059f" /f
|
|
||||||
reg delete "HKU\S-1-5-20\%SPPk%\0ff1ce15-a989-479d-af46-f275c6370663" /f
|
|
||||||
reg delete "HKLM\%OSPP%\59a52881-a989-479d-af46-f275c6370663" /f
|
|
||||||
reg delete "HKLM\%OSPP%\0ff1ce15-a989-479d-af46-f275c6370663" /f
|
|
||||||
reg delete "HKLM\%OSPP%" /f /v KeyManagementServiceName
|
|
||||||
reg delete "HKLM\%OSPP%" /f /v KeyManagementServicePort
|
|
||||||
if %OsppHook% NEQ 1 (
|
|
||||||
reg delete "HKLM\%OSPP%" /f
|
|
||||||
reg delete "HKU\S-1-5-20\%OSPP%" /f
|
|
||||||
)
|
|
||||||
goto :eof
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:UN_Verify
|
|
||||||
|
|
||||||
set error_=
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Renewal" >nul && (set error_=1)
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Run_Once" >nul && (set error_=1)
|
|
||||||
If exist "%windir%\Online_KMS_Activation_Script\" (set error_=1)
|
|
||||||
if exist "%ProgramData%\Online_KMS_Activation\" (set error_=1)
|
|
||||||
|
|
||||||
reg query "HKCR\DesktopBackground\shell\Activate Windows - Office" >nul 2>&1 && (set error_=1)
|
|
||||||
if exist "%ProgramData%\Online_KMS_Activation.cmd" (set error_=1)
|
|
||||||
|
|
||||||
if defined error_ (
|
|
||||||
echo ______________________________________
|
|
||||||
%ELine%
|
|
||||||
echo Try Again.
|
|
||||||
echo ______________________________________
|
|
||||||
) else (
|
|
||||||
echo _________________________________________________________________
|
|
||||||
echo:
|
|
||||||
%EchoGreen% Online KMS Complete Uninstall is done successfully.
|
|
||||||
echo _________________________________________________________________
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:UN_Done
|
|
||||||
|
|
||||||
echo:
|
|
||||||
if defined Unattended (
|
|
||||||
echo Exiting in 3 seconds...
|
|
||||||
if %winbuild% LSS 7600 (ping -n 3 127.0.0.1 > nul) else (timeout /t 3)
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,655 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
|
|
||||||
Online KMS Activation script is just a fork of @abbodi1406's KMS_VL_ALL Project.
|
|
||||||
KMS_VL_ALL homepage: https://forums.mydigitallife.net/posts/838808
|
|
||||||
|
|
||||||
This fork was made to avoid having any KMS binary files and system can be activated using
|
|
||||||
some manual commands or transparent batch script files.
|
|
||||||
|
|
||||||
This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
|
|
||||||
Homepages-
|
|
||||||
NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
|
|
||||||
Maintained by @WindowsAddict
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Online KMS Activation:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- This KMS script skips the activation of any permanently / KMS38-activated product.
|
|
||||||
- This KMS script can activate both Retail and VL Windows / Server installation.
|
|
||||||
- This KMS script can activate C2R Retail and VL Office, but not 2010/2013 MSI Retail Office.
|
|
||||||
|
|
||||||
----------------------
|
|
||||||
- Activation Renewal
|
|
||||||
----------------------
|
|
||||||
|
|
||||||
- KMS activates Windows / Server / Office for 180 Days. (For Core/ProWMC edition it is 30/45 Days)
|
|
||||||
|
|
||||||
- By design, using the KMS 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
|
|
||||||
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.
|
|
||||||
|
|
||||||
- The KMS servers I've added have been working steadily for two to three years, but there can be
|
|
||||||
no guarantee that they will remain online indefinitely. If a registered server goes
|
|
||||||
down, you will need to create a renewal task, or do a manual renewal, for the lifetime of the
|
|
||||||
activation.
|
|
||||||
|
|
||||||
There are 3 ways you can renew the KMS server and as a result, renew the activation.
|
|
||||||
|
|
||||||
1- Activate.cmd
|
|
||||||
|
|
||||||
Run this file whenever the system needs activation. Depending upon the particular (never fully-knowable)
|
|
||||||
circumstances, a successful activation may last for a period of a MINIMUM of 180 days,
|
|
||||||
or a maximum of the full life of the machine it's running on, and you may never need to run it again.
|
|
||||||
|
|
||||||
2- Manual Renewal via Desktop Context Menu
|
|
||||||
|
|
||||||
This method is exactly same as above but here we put the following files in,
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx64.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx86.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Activate.cmd
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Info.txt
|
|
||||||
|
|
||||||
and create registry entries in,
|
|
||||||
HKCR\DesktopBackground\shell\Activate Windows - Office
|
|
||||||
HKCR\DesktopBackground\shell\Activate Windows - Office\command
|
|
||||||
|
|
||||||
It creates an easy to reach Desktop context menu for the manual activation renewal.
|
|
||||||
|
|
||||||
3- Automatic Renewal via Task Scheduler
|
|
||||||
|
|
||||||
This method put the following files in,
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx64.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx86.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Activate.cmd
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Info.txt
|
|
||||||
|
|
||||||
And creates a scheduled task to run the script every 7 days.
|
|
||||||
|
|
||||||
The scheduled task runs only if the system is connected to the Internet.
|
|
||||||
With this method, the Activation task can also be created which will run on the system login
|
|
||||||
and after successful activation, this task will delete itself.
|
|
||||||
|
|
||||||
IMPORTANT NOTE - Some sensitive AV's may flag the Automatic Renewal via the Task, and not
|
|
||||||
because of KMS, because for them it's suspicious to run long scripts in the background as Tasks.
|
|
||||||
|
|
||||||
It's recommended to set exclusions in Antivirus for
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Activate.cmd
|
|
||||||
or
|
|
||||||
use the 1st or 2nd option for activation renewal.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
----------------------
|
|
||||||
- Remarks
|
|
||||||
----------------------
|
|
||||||
|
|
||||||
- This Online KMS Activation provides immediate global activation for Windows 8.1 and Windows 10, which
|
|
||||||
means that in the following three scenarios, the system will self-activate when connected to the
|
|
||||||
internet, and also means that users will not need to manually run the activation script again.
|
|
||||||
|
|
||||||
Scenario 1: Subsequent installation or alteration of any 2013, 2016, or 2019 Volume License
|
|
||||||
(VL) Office product.
|
|
||||||
Scenario 2: Windows edition change (with GVLK).
|
|
||||||
Scenario 3: Date change, system hardware change, etc.
|
|
||||||
|
|
||||||
- What is left in the system in the activation process?
|
|
||||||
- Activate.cmd
|
|
||||||
After activation, it leaves only the KMS Server name in the registry, which helps you to get the
|
|
||||||
above-mentioned global activation feature whereby the system auto-renews the activations,
|
|
||||||
so it's a good thing if you leave the server name in the registry.
|
|
||||||
However, you can clear this registered KMS Server name upon activation, and do that, open
|
|
||||||
the script with notepad and set Clear-KMS-Cache to 1 from 0.
|
|
||||||
What is left in the system when Renewal methods are installed, has been mentioned.
|
|
||||||
|
|
||||||
- This script includes the most-stable KMS servers (6+) list. The server selection process is
|
|
||||||
fully automatic. You don't need to worry about the server's availability.
|
|
||||||
|
|
||||||
- If your system date is incorrect (beyond 180 days) and you are offline, the system will be
|
|
||||||
deactivated, but will automatically reactivate when you correct the system date.
|
|
||||||
|
|
||||||
- Why should you choose the Online KMS activation method over offline KMS?
|
|
||||||
The main benefit of Online KMS activation is that it doesn't need any KMS binary file and system
|
|
||||||
can be activated using some manual commands or transparent batch script files.
|
|
||||||
So this is for those who don't like/have difficulties/trust issue in offline KMS because of its
|
|
||||||
binary files and antivirus detections.
|
|
||||||
|
|
||||||
If you prefer offline KMS then checkout an open-source activator,
|
|
||||||
@abbodi1406's KMS_VL_ALL https://forums.mydigitallife.net/posts/838808
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
--------------------------------------
|
|
||||||
- Office C2R Retail to VL conversion
|
|
||||||
--------------------------------------
|
|
||||||
|
|
||||||
This activation script will convert Office C2R Retail to Volume without needing separate tools.
|
|
||||||
|
|
||||||
- Supports: Office 365, Office 2019, Office 2016, Office 2013
|
|
||||||
- Activated Retail products will be skipped from conversion
|
|
||||||
this includes valid Office 365 subscriptions, or perpetual Office (MAK, OEM, MSDN, Retail..)
|
|
||||||
- Current Office licenses will be cleaned up (unless retail-activated Office detected)
|
|
||||||
then, proper Volume licenses will be installed based on the detected Product IDs
|
|
||||||
- Office Mondo suite cover all products, if detected, only its licenses will be installed
|
|
||||||
- Office 365 products will be converted with Mondo licenses by default
|
|
||||||
also, corresponding Office 365 Retail Grace Key will be installed
|
|
||||||
- Office 2016 products will be converted with corresponding Office 2019 licenses
|
|
||||||
- Office Professional suite will be converted with Office 2019 ProPlus licenses
|
|
||||||
- Office HomeBusiness/HomeStudent suites will be converted with Office 2019 Standard licenses
|
|
||||||
- If Office 2019 RTM licenses are not detected, Office 2016 licenses will be used instead
|
|
||||||
- Office 2013 products follow the same logic but handled separately
|
|
||||||
- If main products SKUs are detected, single apps licenses will not be installed to avoid duplication
|
|
||||||
|
|
||||||
- SKUs:
|
|
||||||
O365ProPlus, O365Business, O365SmallBusPrem, O365HomePrem, O365EduCloud
|
|
||||||
ProPlus, Professional, Standard, HomeBusiness, HomeStudent, Visio, Project
|
|
||||||
|
|
||||||
* Apps:
|
|
||||||
Access, Excel, InfoPath, Onenote, Outlook, PowerPoint, Publisher, SkypeForBusiness, Word,
|
|
||||||
Groove (OneDrive for Business)
|
|
||||||
|
|
||||||
- O365ProPlus, O365Business, O365SmallBusPrem, ProPlus cover all apps
|
|
||||||
Professional cover all apps except SkypeForBusiness
|
|
||||||
Standard cover all apps except Access, SkypeForBusiness
|
|
||||||
|
|
||||||
## Notice
|
|
||||||
|
|
||||||
- On Windows 7, Office 2016/2019 licensing service require Universal C Runtime to work correctly
|
|
||||||
- UCRT is available in the latest Monthly Rollup, or the separate update KB3118401
|
|
||||||
- Additionally, Office programs themselves require recent Windows 7 updates to start properly
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
File Details:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
d30a0e4e5911d3ca705617d17225372731c770e2 *cleanosppx64.exe Virus Total = 0/66
|
|
||||||
39ed8659e7ca16aaccb86def94ce6cec4c847dd6 *cleanosppx86.exe Virus Total = 1/66
|
|
||||||
|
|
||||||
Virus Total Report Date: 12-11-2019
|
|
||||||
|
|
||||||
These files are official Microsoft files and in this script, these are used in
|
|
||||||
cleaning office license in C2R Retail office to VL conversion process.
|
|
||||||
|
|
||||||
The source of these files is the 'old' version of Microsoft Tool O15CTRRemove.diagcab
|
|
||||||
You can get the original file here https://s.put.re/WFuXpyWA.zip
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
How does it work?
|
|
||||||
Is it safe?
|
|
||||||
|
|
||||||
https://pastebin.com/raw/7Xyaf15Z
|
|
||||||
Mirror:
|
|
||||||
https://textuploader.com/1dg8d/raw
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Products Compatibility:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
Supported Products: [Only Volume-capable]
|
|
||||||
|
|
||||||
Windows 8 / 8.1 / 10 (all official editions, except Windows 10 S)
|
|
||||||
Windows 7 (Enterprise /N/E, Professional /N/E, Embedded Standard/POSReady/ThinPC)
|
|
||||||
Windows Server 2008 R2 / 2012 / 2012 R2 / 2016 / 2019
|
|
||||||
Office Volume 2010 / 2013 / 2016 / 2019
|
|
||||||
|
|
||||||
[Activation script will convert Office C2R Retail O365/2013/2016/2019 to Volume]
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Unsupported Products:
|
|
||||||
|
|
||||||
Office Retail [Office MSI Retail 2010/2013]
|
|
||||||
Windows Editions which do not support KMS activation by design:
|
|
||||||
Windows Evaluation Editions
|
|
||||||
Windows 7 (Starter, HomeBasic, HomePremium, Ultimate)
|
|
||||||
Windows 10 (Cloud "S", IoTEnterprise, IoTEnterpriseS, ProfessionalSingleLanguage... etc)
|
|
||||||
Windows Server (Server Foundation, Storage Server, Home Server 2011... etc)
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
These editions are only KMS-activatable for 45 days at max:
|
|
||||||
Windows 10 Home edition variants
|
|
||||||
Windows 8.1 Core edition variants, Pro with Media Center, Pro Student
|
|
||||||
|
|
||||||
These editions are only KMS-activatable for 30 days at max:
|
|
||||||
Windows 8 Core edition variants, Pro with Media Center
|
|
||||||
|
|
||||||
Notes:
|
|
||||||
Supported Windows products do need volume conversion, only the GVLK (KMS key) is needed, which
|
|
||||||
the script will install accordingly.
|
|
||||||
KMS Activation works in all (MBR, GPT, UEFI, BIOS) systems.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Switches in the Script:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
* Applies to MAS Separate Files version
|
|
||||||
|
|
||||||
- For unattended mode, run the scripts with /u parameter.
|
|
||||||
|
|
||||||
Activate.cmd /u
|
|
||||||
Uninstall.cmd /u
|
|
||||||
|
|
||||||
To create Renewal Task in unattended mode,
|
|
||||||
Renewal_Setup.cmd /rt
|
|
||||||
|
|
||||||
To create Renewal and Activation Task in unattended mode,
|
|
||||||
Renewal_Setup.cmd /rat
|
|
||||||
|
|
||||||
To create desktop context menu in unattended mode,
|
|
||||||
Renewal_Setup.cmd /dcm
|
|
||||||
|
|
||||||
To skip Windows activation in renewal script,
|
|
||||||
Renewal_Setup.cmd /rat /swa
|
|
||||||
or
|
|
||||||
Renewal_Setup.cmd /dcm /swa
|
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
|
||||||
|
|
||||||
- Activate.cmd
|
|
||||||
|
|
||||||
- To run the script in Debug mode to find out the cause of errors in activation or just details,
|
|
||||||
search "set _Debug=" and change the value from 0 to 1.
|
|
||||||
|
|
||||||
- To replace KMS38 activation with KMS activation, search "set SkipKMS38=" and change the value
|
|
||||||
from 1 to 0.
|
|
||||||
|
|
||||||
- To skip Windows activation, search "set ActWindows=" and change the value from 1 to 0.
|
|
||||||
- To skip Office activation, search "set ActOffice=" and change the value from 1 to 0.
|
|
||||||
- This is not effective if Windows and/or Office installation is already Volume (GVLK installed)
|
|
||||||
- In [Online KMS + HWID] $OEM$ preactivation, Windows KMS activation is turned off
|
|
||||||
by default.
|
|
||||||
|
|
||||||
- To turn OFF auto conversion for Office C2R Retail to Volume, search "set AutoR2V=" and
|
|
||||||
change the value from 1 to 0.
|
|
||||||
|
|
||||||
- To set the script to use only one specific KMS server address, search "set KMS_Server="
|
|
||||||
paste the server address after the = sign.
|
|
||||||
|
|
||||||
- To clear the KMS cache, search "set Clear-KMS-Cache=" and change the value from 0 to 1.
|
|
||||||
- Registered KMS server address (cache) enables the system to automatically renew the license
|
|
||||||
(for next 180 days) every 7 days, as long as the server is online.
|
|
||||||
- This process is the same as how the legal KMS works, so no security program will flag
|
|
||||||
this behavior.
|
|
||||||
- Changing this option here won't have any effect if manual (Desktop Context menu) and/or auto,
|
|
||||||
renewal activation script is installed. [default (0)].
|
|
||||||
- I recommend leaving this option as default (0).
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Manual Activation Process:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- Prerequisite:
|
|
||||||
|
|
||||||
online Public KMS Server List:
|
|
||||||
|
|
||||||
kms.srv.crsoo.com
|
|
||||||
kms.loli.beer
|
|
||||||
kms8.MSGuides.com
|
|
||||||
|
|
||||||
kms9.MSGuides.com
|
|
||||||
kms.zhuxiaole.org
|
|
||||||
kms.lolico.moe
|
|
||||||
kms.moeclub.org
|
|
||||||
|
|
||||||
Generic Volume License Key (GVLK):
|
|
||||||
Thanks to @abbodi1406 for the Key collection.
|
|
||||||
|
|
||||||
GVLK Edition
|
|
||||||
|
|
||||||
Windows 10
|
|
||||||
|
|
||||||
TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 Home
|
|
||||||
3KHY7-WNT83-DGQKR-F7HPR-844BM Home N
|
|
||||||
7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH Home Single Language
|
|
||||||
PVMJN-6DFY6-9CCP6-7BKTT-D3WVR Home China
|
|
||||||
W269N-WFGWX-YVC9B-4J6C9-T83GX Pro
|
|
||||||
MH37W-N47XK-V7XM9-C7227-GCQG9 Pro N
|
|
||||||
6TP4R-GNPTD-KYYHQ-7B7DP-J447Y Pro Education
|
|
||||||
YVWGF-BXNMC-HTQYQ-CPQ99-66QFC Pro Education N
|
|
||||||
NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J Pro Workstation
|
|
||||||
9FNHH-K3HBT-3W4TD-6383H-6XYWF Pro Workstation N
|
|
||||||
NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 Education
|
|
||||||
2WH4N-8QGBV-H22JP-CT43Q-MDWWJ Education N
|
|
||||||
NPPR9-FWDCX-D2C8J-H872K-2YT43 Enterprise
|
|
||||||
DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 Enterprise N
|
|
||||||
YYVX9-NTFWV-6MDM3-9PT4T-4M68B Enterprise G
|
|
||||||
44RPN-FTY23-9VTTB-MP9BX-T84FV Enterprise G N
|
|
||||||
WNMTR-4C88C-JK8YV-HQ7T2-76DF9 Enterprise 2015 LTSB
|
|
||||||
2F77B-TNFGY-69QQF-B8YKP-D69TJ Enterprise 2015 LTSB N
|
|
||||||
DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ Enterprise 2016 LTSB
|
|
||||||
QFFDN-GRT3P-VKWWX-X7T3R-8B639 Enterprise 2016 LTSB N
|
|
||||||
M7XTQ-FN8P6-TTKYV-9D4CC-J462D Enterprise LTSC 2019
|
|
||||||
92NFX-8DJQP-P6BBQ-THF9C-7CG2H Enterprise LTSC 2019 N
|
|
||||||
CPWHC-NT2C7-VYW78-DHDB2-PG3GK Enterprise for Virtual Desktops
|
|
||||||
7NBT4-WGBQX-MP4H7-QXFF8-YP3KX Remote Server
|
|
||||||
NBTWJ-3DR69-3C4V8-C26MC-GQ9M6 Lean
|
|
||||||
|
|
||||||
Windows 8.1
|
|
||||||
|
|
||||||
M9Q9P-WNJJT-6PXPY-DWX8H-6XWKK Core
|
|
||||||
7B9N3-D94CG-YTVHR-QBPX3-RJP64 Core N
|
|
||||||
BB6NG-PQ82V-VRDPW-8XVD2-V8P66 Core Single Language
|
|
||||||
NCTT7-2RGK8-WMHRF-RY7YQ-JTXG3 Core China
|
|
||||||
XYTND-K6QKT-K2MRH-66RTM-43JKP Core ARM
|
|
||||||
GCRJD-8NW9H-F2CDX-CCM8D-9D6T9 Pro
|
|
||||||
HMCNV-VVBFX-7HMBH-CTY9B-B4FXY Pro N
|
|
||||||
789NJ-TQK6T-6XTH8-J39CJ-J8D3P Pro with Media Center
|
|
||||||
MHF9N-XY6XB-WVXMC-BTDCT-MKKG7 Enterprise
|
|
||||||
TT4HM-HN7YT-62K67-RGRQJ-JFFXW Enterprise N
|
|
||||||
NMMPB-38DD4-R2823-62W8D-VXKJB Embedded Industry Pro
|
|
||||||
FNFKF-PWTVT-9RC8H-32HB2-JB34X Embedded Industry Enterprise
|
|
||||||
VHXM3-NR6FT-RY6RT-CK882-KW2CJ Embedded Industry Automotive
|
|
||||||
3PY8R-QHNP9-W7XQD-G6DPH-3J2C9 with Bing
|
|
||||||
Q6HTR-N24GM-PMJFP-69CD8-2GXKR with Bing N
|
|
||||||
KF37N-VDV38-GRRTV-XH8X6-6F3BB with Bing Single Language
|
|
||||||
R962J-37N87-9VVK2-WJ74P-XTMHR with Bing China
|
|
||||||
MX3RK-9HNGX-K3QKC-6PJ3F-W8D7B Pro for Students
|
|
||||||
TNFGH-2R6PB-8XM3K-QYHX2-J4296 Pro for Students N
|
|
||||||
|
|
||||||
Windows 8
|
|
||||||
|
|
||||||
BN3D2-R7TKB-3YPBD-8DRP2-27GG4 Core
|
|
||||||
8N2M2-HWPGY-7PGT9-HGDD8-GVGGY Core N
|
|
||||||
2WN2H-YGCQR-KFX6K-CD6TF-84YXQ Core Single Language
|
|
||||||
4K36P-JN4VD-GDC6V-KDT89-DYFKP Core China
|
|
||||||
DXHJF-N9KQX-MFPVR-GHGQK-Y7RKV Core ARM
|
|
||||||
NG4HW-VH26C-733KW-K6F98-J8CK4 Pro
|
|
||||||
XCVCF-2NXM9-723PB-MHCB7-2RYQQ Pro N
|
|
||||||
GNBB8-YVD74-QJHX6-27H4K-8QHDG Pro with Media Center
|
|
||||||
32JNW-9KQ84-P47T8-D8GGY-CWCK7 Enterprise
|
|
||||||
JMNMF-RHW7P-DMY6X-RF3DR-X2BQT Enterprise N
|
|
||||||
RYXVT-BNQG7-VD29F-DBMRY-HT73M Embedded Industry Pro
|
|
||||||
NKB3R-R2F8T-3XCDP-7Q2KW-XWYQ2 Embedded Industry Enterprise
|
|
||||||
|
|
||||||
Windows 7
|
|
||||||
|
|
||||||
FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4 Professional
|
|
||||||
MRPKT-YTG23-K7D7T-X2JMM-QY7MG Professional N
|
|
||||||
W82YF-2Q76Y-63HXB-FGJG9-GF7QX Professional E
|
|
||||||
33PXH-7Y6KF-2VJC9-XBBR8-HVTHH Enterprise
|
|
||||||
YDRBP-3D83W-TY26F-D46B2-XCKRJ Enterprise N
|
|
||||||
C29WB-22CC8-VJ326-GHFJW-H9DH4 Enterprise E
|
|
||||||
YBYF6-BHCR3-JPKRB-CDW7B-F9BK4 Embedded POSReady 7
|
|
||||||
XGY72-BRBBT-FF8MH-2GG8H-W7KCW Embedded Standard
|
|
||||||
73KQT-CD9G6-K7TQG-66MRP-CQ22C Embedded ThinPC
|
|
||||||
|
|
||||||
Windows Server 2019
|
|
||||||
|
|
||||||
N69G4-B89J2-4G8F4-WWYCC-J464C Standard
|
|
||||||
WMDGN-G9PQG-XVVXX-R3X43-63DFG Datacenter
|
|
||||||
WVDHN-86M7X-466P6-VHXV7-YY726 Essentials
|
|
||||||
FDNH6-VW9RW-BXPJ7-4XTYG-239TB Azure Core
|
|
||||||
N2KJX-J94YW-TQVFB-DG9YT-724CC Standard ACor
|
|
||||||
6NMRW-2C8FM-D24W7-TQWMY-CWH2D Datacenter ACor
|
|
||||||
GRFBW-QNDC4-6QBHG-CCK3B-2PR88 ServerARM64
|
|
||||||
|
|
||||||
Windows Server 2016
|
|
||||||
|
|
||||||
WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY Standard
|
|
||||||
CB7KF-BWN84-R7R2Y-793K2-8XDDG Datacenter
|
|
||||||
JCKRF-N37P4-C2D82-9YXRT-4M63B Essentials
|
|
||||||
QN4C6-GBJD2-FB422-GHWJK-GJG2R Cloud Storage
|
|
||||||
VP34G-4NPPG-79JTQ-864T4-R3MQX Azure Core
|
|
||||||
PTXN8-JFHJM-4WC78-MPCBR-9W4KR Standard ACor
|
|
||||||
2HXDN-KRXHB-GPYC7-YCKFJ-7FVDG Datacenter ACor
|
|
||||||
K9FYF-G6NCK-73M32-XMVPY-F9DRR ServerARM64
|
|
||||||
|
|
||||||
Windows Server 2012 R2
|
|
||||||
|
|
||||||
D2N9P-3P6X9-2R39C-7RTCD-MDVJX Standard
|
|
||||||
W3GGN-FT8W3-Y4M27-J84CP-Q3VJ9 Datacenter
|
|
||||||
KNC87-3J2TX-XB4WP-VCPJV-M4FWM Essentials
|
|
||||||
3NPTF-33KPT-GGBPR-YX76B-39KDD Cloud Storage
|
|
||||||
|
|
||||||
Windows Server 2012
|
|
||||||
|
|
||||||
XC9B7-NBPP2-83J2H-RHMBY-92BT4 Standard
|
|
||||||
48HP8-DN98B-MYWDG-T2DCC-8W83P Datacenter
|
|
||||||
HM7DN-YVMH3-46JC3-XYTG7-CYQJJ MultiPoint Standard
|
|
||||||
XNH6W-2V9GX-RGJ4K-Y8X6F-QGJ2G MultiPoint Premium
|
|
||||||
|
|
||||||
Windows Server 2008 R2
|
|
||||||
|
|
||||||
6TPJF-RBVHG-WBW2R-86QPH-6RTM4 Web
|
|
||||||
TT8MH-CG224-D3D7Q-498W2-9QCTX HPC
|
|
||||||
YC6KT-GKW9T-YTKYR-T4X34-R7VHC Standard
|
|
||||||
74YFP-3QFB3-KQT8W-PMXWJ-7M648 Datacenter
|
|
||||||
489J6-VHDMP-X63PK-3K798-CPX3Y Enterprise
|
|
||||||
GT63C-RJFQ3-4GMB6-BRFB9-CB83V Itanium
|
|
||||||
736RG-XDKJK-V34PF-BHK87-J6X3K MultiPoint Server
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
----------------------------------------------
|
|
||||||
Windows /Server (All VL Supported Versions)
|
|
||||||
----------------------------------------------
|
|
||||||
|
|
||||||
- Connect to the internet.
|
|
||||||
- Open CMD as Admin, and enter the following listed commands in the sequence in which they are given.
|
|
||||||
- Enter Generic Volume License Key (GVLK) (Replace %key% with the key from above list) with
|
|
||||||
the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /ipk %key%
|
|
||||||
|
|
||||||
- Register the KMS Server, (Replace %server% with one of the above-listed servers)
|
|
||||||
(If activation is unsuccessful then try a different server) with the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /skms %server%
|
|
||||||
|
|
||||||
- Activate Windows with the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /ato
|
|
||||||
|
|
||||||
- Check Activation Status with the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /dli
|
|
||||||
|
|
||||||
- Check Activation Expiry Date with the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /xpr
|
|
||||||
|
|
||||||
- Clear the name of the KMS server (Optional) (It'll prevent activation auto-renewal) with the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /ckms
|
|
||||||
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------
|
|
||||||
Office VL Activation (Office 2010, 2013, 2016, 2019) -
|
|
||||||
----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- Connect to the internet.
|
|
||||||
- Open CMD as Admin, and enter the following listed commands in the sequence in which they are given.
|
|
||||||
- If Office is installed as VL (Volume License) then there is no need to enter its key.
|
|
||||||
- If Office is installed as Retail, then you need to convert it to VL, by using C2R-R2V by @abbodi1406
|
|
||||||
https://forums.mydigitallife.net/posts/1150042
|
|
||||||
|
|
||||||
- Change to the directory where Office is installed.
|
|
||||||
If your system is 32-bit Office on 32-bit Windows or 64-bit Office on 64-bit Windows use the following:
|
|
||||||
|
|
||||||
For Office 2016 or 2019 enter the command:
|
|
||||||
|
|
||||||
cd "C:\Program Files\Microsoft Office\Office16"
|
|
||||||
|
|
||||||
For Office 2013 enter the command:
|
|
||||||
|
|
||||||
cd "C:\Program Files\Microsoft Office\Office15"
|
|
||||||
|
|
||||||
For Office 2010 enter the command:
|
|
||||||
|
|
||||||
cd "C:\Program Files\Microsoft Office\Office14"
|
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
If your system is 32-bit Office on 64-bit Windows, use the following:
|
|
||||||
|
|
||||||
For Office 2016 or 2019 enter the command:
|
|
||||||
|
|
||||||
cd "C:\Program Files (x86)\Microsoft Office\Office16"
|
|
||||||
|
|
||||||
For Office 2013 enter the command:
|
|
||||||
|
|
||||||
cd "C:\Program Files (x86)\Microsoft Office\Office15"
|
|
||||||
|
|
||||||
For Office 2010 enter the command:
|
|
||||||
|
|
||||||
cd "C:\Program Files (x86)\Microsoft Office\Office14"
|
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- Once all of that is done correctly, you must register the KMS Server, (In the following,
|
|
||||||
replace %server% with one of the above-listed servers.) (If activation is unsuccessful
|
|
||||||
then try a different server.) with the following command:
|
|
||||||
|
|
||||||
cscript ospp.vbs /sethst:%server%
|
|
||||||
|
|
||||||
- Activate Office with the following command:
|
|
||||||
|
|
||||||
cscript ospp.vbs /act
|
|
||||||
|
|
||||||
- Check Activation Status with the following command:
|
|
||||||
|
|
||||||
cscript ospp.vbs /dstatus
|
|
||||||
|
|
||||||
- Clear the name of the KMS server, (Optional) (It'll prevent activation auto-renewal)
|
|
||||||
with the appropriate following commands:
|
|
||||||
|
|
||||||
To clear the KMS Server name for Office in Win 7, or Office 2010 on Win 8 or Win 10,
|
|
||||||
enter each of the following commands in the sequence which is given:
|
|
||||||
|
|
||||||
set "OSPP=HKLM\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform"
|
|
||||||
reg delete "%OSPP%" /f /v KeyManagementServiceName 2>nul
|
|
||||||
reg delete "%OSPP%" /f /v KeyManagementServicePort 2>nul
|
|
||||||
reg delete "%OSPP%\59a52881-a989-479d-af46-f275c6370663" /f 2>nul
|
|
||||||
reg delete "%OSPP%\0ff1ce15-a989-479d-af46-f275c6370663" /f 2>nul
|
|
||||||
|
|
||||||
To clear the KMS server name for Office (except Office 2010) on Win 8 or Win 10, run the following command:
|
|
||||||
|
|
||||||
set "SPPk=SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform"
|
|
||||||
reg delete "HKLM\%SPPk%" /f /v KeyManagementServiceName 2>nul
|
|
||||||
reg delete "HKLM\%SPPk%" /f /v KeyManagementServicePort 2>nul
|
|
||||||
reg delete "HKLM\%SPPk%\0ff1ce15-a989-479d-af46-f275c6370663" /f 2>nul
|
|
||||||
reg delete "HKEY_USERS\S-1-5-20\%SPPk%\0ff1ce15-a989-479d-af46-f275c6370663" /f 2>nul
|
|
||||||
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Troubleshoot activation issues:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- Make sure the Internet is connected.
|
|
||||||
|
|
||||||
- Reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
Open CMD as Admin, and enter the following command: (For Windows 10\8\8.1)
|
|
||||||
|
|
||||||
Dism /online /Cleanup-Image /RestoreHealth
|
|
||||||
|
|
||||||
- After its done, reboot the system and open CMD as Admin and enter the following command:
|
|
||||||
|
|
||||||
sfc.exe /scannow
|
|
||||||
|
|
||||||
- After it's done, reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
open CMD as administrator again, and enter the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /rearm
|
|
||||||
|
|
||||||
- Reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
You may try to rebuild licensing Tokens.dat as suggested in https://support.microsoft.com/en-us/help/2736303
|
|
||||||
(this will require to repair Office afterwards.)
|
|
||||||
|
|
||||||
- Reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
Try KMS_VL_ALL by @abbodi1406 https://forums.mydigitallife.net/posts/838808/
|
|
||||||
If still unsuccessful, it may be time to start over from the very beginning
|
|
||||||
and do a clean install of windows :D
|
|
||||||
|
|
||||||
-------------------------------
|
|
||||||
|
|
||||||
- If you have issues with Office activation, or got undesired or duplicate licenses (e.g. Office 2016 and 2019):
|
|
||||||
Download Office Scrubber pack from https://forums.mydigitallife.net/posts/1466365/
|
|
||||||
To get rid of any conflicted licenses, run Uninstall_Licenses.cmd, then you must start any
|
|
||||||
Office program to repair the licensing. You may also try Uninstall_Keys.cmd for similar manner.
|
|
||||||
|
|
||||||
If you wish to remove Office and leftovers completely and start clean:
|
|
||||||
Uninstall Office normally from Control Panel / Programs and Feature then run Full_Scrub.cmd
|
|
||||||
afterwards, install new Office.
|
|
||||||
|
|
||||||
- Can't activate Windows 7 with KMS: [Error 0xC004F035]
|
|
||||||
Some OEM licensed computers cannot be activated with KMS on WINDOWS 7.
|
|
||||||
Quote from the MS page https://tinyurl.com/yy8wfu5m
|
|
||||||
'Computers obtained through OEM channels that have an ACPI_SLIC table in the (BIOS) are
|
|
||||||
required to have a valid Windows marker in the same ACPI_SLIC table.
|
|
||||||
---Computers that have an ACPI_SLIC table without a valid Windows marker generate an error
|
|
||||||
when a volume edition of Windows 7 is installed.'
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Credits:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
@abbodi1406 Activate.cmd (KMS_VL_ALL)
|
|
||||||
https://forums.mydigitallife.net/posts/838808
|
|
||||||
(* With the great help from @RPO, Forked it to work with Multi KMS Servers,
|
|
||||||
Renewal task, Desktop context menu, $OEM$, etc for Online KMS)
|
|
||||||
|
|
||||||
Clear-KMS-Cache.cmd
|
|
||||||
https://forums.mydigitallife.net/posts/1511883
|
|
||||||
(*Applied it as it is)
|
|
||||||
|
|
||||||
Check-Activation-Status-wmic.cmd
|
|
||||||
https://forums.mydigitallife.net/posts/838808
|
|
||||||
(*Applied it as it is)
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Online Public KMS Servers:
|
|
||||||
|
|
||||||
kms.srv.crsoo.com
|
|
||||||
kms.loli.beer
|
|
||||||
kms8.MSGuides.com
|
|
||||||
|
|
||||||
kms9.MSGuides.com
|
|
||||||
kms.zhuxiaole.org
|
|
||||||
kms.lolico.moe
|
|
||||||
kms.moeclub.org
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Special Thanks to @RPO
|
|
||||||
|
|
||||||
For providing great support in making and improvements of this script,
|
|
||||||
To name a few,
|
|
||||||
|
|
||||||
Internet test with Powershell (No ping)
|
|
||||||
KMS server 1688 port test with Powershell
|
|
||||||
Multi KMS server integration
|
|
||||||
Scheduled task to renew the activation
|
|
||||||
|
|
||||||
And for solving countless problems in this batch script.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Kind Help:-
|
|
||||||
|
|
||||||
Thanks for having my back and answering all of my queries. (In no particular order)
|
|
||||||
|
|
||||||
@AveYo aka @BAU, @RPO, @leitek8, @mxman2k, @Yen, @abbodi1406
|
|
||||||
|
|
||||||
@BorrowedWifi For providing support in fixing English grammar errors in the Read Me.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
|
|
||||||
Homepages-
|
|
||||||
NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
|
|
||||||
Maintained by @WindowsAddict
|
|
||||||
|
|
||||||
====================================================================================================
|
|
@ -1,12 +0,0 @@
|
|||||||
----------------------------------------------------------------------------------------------
|
|
||||||
Activation Type Supported Product Activation Period
|
|
||||||
----------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Digital License - Windows 10 - Permanent
|
|
||||||
KMS38 - Windows 10 / Server - Until the year 2038
|
|
||||||
Online KMS - Windows / Server / Office - For 180 Days, renewal task needs to be
|
|
||||||
created for lifetime auto activation.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
* For more details, use the ReadMe.txt included in the respective activation folders.
|
|
@ -1,129 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
Credits:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
Microsoft Activation Scripts (MAS):
|
|
||||||
|
|
||||||
It is a collection of scripts for activating Microsoft products, these scripts are mostly a fork
|
|
||||||
of other honourable developer's tools and scripts.
|
|
||||||
|
|
||||||
This project consists of the following three activation methods:
|
|
||||||
|
|
||||||
* HWID Activation - Windows 10
|
|
||||||
* KMS38 Activation - Windows 10 /Server
|
|
||||||
* Online KMS Activation - Windows /Server /Office
|
|
||||||
|
|
||||||
The primary focus of this project is the following features:
|
|
||||||
|
|
||||||
* Open-source.
|
|
||||||
* Batch scripts for better transparency.
|
|
||||||
* Clean from antivirus detections (*As much as possible, but it's not completely clean).
|
|
||||||
* Easy to use.
|
|
||||||
|
|
||||||
Homepages:-
|
|
||||||
Discussion Forum: https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
|
|
||||||
Maintained by @WindowsAddict
|
|
||||||
|
|
||||||
To achieve this I have used the following projects as the base of this activator.
|
|
||||||
I would like to say thanks to the following authors for making such awesome projects.
|
|
||||||
|
|
||||||
====================================
|
|
||||||
HWID and KMS38 Activation:
|
|
||||||
====================================
|
|
||||||
|
|
||||||
@mspaintmsi Original co-authors of HWID/KMS38 Activation without KMS or predecessor install/upgrade.
|
|
||||||
and Created various methods for HWID/KMS38 Activation
|
|
||||||
*Anonymous https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
https://gitlab.com/massgrave/massgrave
|
|
||||||
|
|
||||||
@vyvojar Original slshim (slc.dll)
|
|
||||||
https://github.com/vyvojar/slshim/releases
|
|
||||||
|
|
||||||
====================================
|
|
||||||
|
|
||||||
HWID/KMS38 methods Suggestions and improvements:-
|
|
||||||
|
|
||||||
@sponpa New ideas for the HWID/KM38 Generation
|
|
||||||
https://www.nsaneforums.com/topic/316668--/page/21/?tab=comments#comment-1431257
|
|
||||||
|
|
||||||
@leitek8 Improvements for the slc.dll
|
|
||||||
https://www.nsaneforums.com/topic/316668--/page/22/?tab=comments#comment-1438005
|
|
||||||
|
|
||||||
====================================
|
|
||||||
Online KMS Activation:
|
|
||||||
====================================
|
|
||||||
|
|
||||||
@abbodi1406 Activate.cmd (KMS_VL_ALL)
|
|
||||||
https://forums.mydigitallife.net/posts/838808
|
|
||||||
(* With the great help from @RPO, Forked it to work with Multi KMS Servers,
|
|
||||||
Renewal task, Desktop context menu, $OEM$, etc for Online KMS)
|
|
||||||
|
|
||||||
Clear-KMS-Cache.cmd
|
|
||||||
https://forums.mydigitallife.net/posts/1511883
|
|
||||||
(*Applied it as it is)
|
|
||||||
|
|
||||||
Check-Activation-Status-wmic.cmd
|
|
||||||
https://forums.mydigitallife.net/posts/838808
|
|
||||||
(*Applied it as it is)
|
|
||||||
|
|
||||||
====================================
|
|
||||||
|
|
||||||
Online Public KMS Servers:
|
|
||||||
|
|
||||||
kms.srv.crsoo.com
|
|
||||||
kms.loli.beer
|
|
||||||
kms8.MSGuides.com
|
|
||||||
|
|
||||||
kms9.MSGuides.com
|
|
||||||
kms.zhuxiaole.org
|
|
||||||
kms.lolico.moe
|
|
||||||
kms.moeclub.org
|
|
||||||
|
|
||||||
====================================
|
|
||||||
Useful scripts and ideas I used :
|
|
||||||
====================================
|
|
||||||
|
|
||||||
@AveYo (@BAU) Compressed2TXT
|
|
||||||
https://github.com/AveYo/Compressed2TXT
|
|
||||||
(For storing the files in text format)
|
|
||||||
|
|
||||||
Reg_takeownership snippet
|
|
||||||
pastebin.com/XTPt0JSC
|
|
||||||
(*Applied in KMS38 Protection)
|
|
||||||
|
|
||||||
@hearywarlot Elevate program as admin with vbs method
|
|
||||||
https://forums.mydigitallife.net/threads/.74332/
|
|
||||||
|
|
||||||
@dbenham Set buffer height independently of window height
|
|
||||||
https://stackoverflow.com/a/13351373
|
|
||||||
|
|
||||||
@Ratiborus Ratiborus Tools
|
|
||||||
http://forum.ru-board.com/topic.cgi?forum=2&topic=5734#1
|
|
||||||
|
|
||||||
@abbodi1406 Continuously providing best solutions for tons of issues.
|
|
||||||
|
|
||||||
abbodi1406's Batch Scripts Repo
|
|
||||||
https://forums.mydigitallife.net/threads/74197/
|
|
||||||
|
|
||||||
@s1ave77 slave77s S-M-R-T JATDevice MkIII
|
|
||||||
https://forums.mydigitallife.net/threads/44717/
|
|
||||||
|
|
||||||
====================================
|
|
||||||
Kind Help:
|
|
||||||
====================================
|
|
||||||
|
|
||||||
Thanks to the following people for answering all of my queries. (In no particular order)
|
|
||||||
|
|
||||||
@AveYo aka @BAU, @sponpa, @mspaintmsi @RPO, @leitek8, @mxman2k, @Yen, @abbodi1406
|
|
||||||
|
|
||||||
@BorrowedWifi for providing support in fixing English grammar errors in the Read Me.
|
|
||||||
@Chibi ANUBIS for testing scripts for ARM64 system.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Special thanks to @RPO and @abbodi1406,
|
|
||||||
For providing great support and solving countless issues in this tool.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
@ -1,6 +0,0 @@
|
|||||||
[{000214A0-0000-0000-C000-000000000046}]
|
|
||||||
Prop3=19,11
|
|
||||||
[InternetShortcut]
|
|
||||||
IDList=
|
|
||||||
URL=https://pastebin.com/raw/jduBSazJ
|
|
||||||
HotKey=0
|
|
@ -1,620 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
:: =======================================================================================================
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: =======================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
title Extract $OEM$ Folder
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "EchoRed=%_psc% write-host -back Black -fore Red"
|
|
||||||
set "EchoGreen=%_psc% write-host -back Black -fore Green"
|
|
||||||
set "ELine=echo: & %EchoRed% ==== ERROR ==== &echo:"
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
for %%i in (powershell.exe) do if "%%~$path:i"=="" (
|
|
||||||
echo: &echo ==== ERROR ==== &echo:
|
|
||||||
echo Powershell is not installed in the system.
|
|
||||||
echo Aborting...
|
|
||||||
goto Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 7600 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo Project is supported only for Windows 7/8/8.1/10 and their Server equivalent.
|
|
||||||
goto Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Fix for the special characters limitation in path name
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
set "_work=%~dp0"
|
|
||||||
if "%_work:~-1%"=="\" set "_work=%_work:~0,-1%"
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_batp=%_batf:'=''%"
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
mode con cols=98 lines=30
|
|
||||||
|
|
||||||
:: Get correct Desktop Location with powershell
|
|
||||||
:: Written by @dcshoecomp (superuser.com)
|
|
||||||
:: https://superuser.com/a/1413170
|
|
||||||
|
|
||||||
for /f "delims=" %%a in ('%_psc% "& {write-host $([Environment]::GetFolderPath('Desktop'))}"') do Set "desktop=%%a"
|
|
||||||
|
|
||||||
if exist "%desktop%\$OEM$\" (
|
|
||||||
echo _____________________________________________________
|
|
||||||
%ELine%
|
|
||||||
echo $OEM$ folder already exists on the Desktop.
|
|
||||||
echo _____________________________________________________
|
|
||||||
goto Done2
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_dir=%desktop%\$OEM$\$$\Setup\Scripts"
|
|
||||||
set _nofile=
|
|
||||||
|
|
||||||
set "_fdir1=Activators\HWID-KMS38_Activation"
|
|
||||||
set "HWID_Activation.cmd=%_fdir1%\HWID_Activation.cmd"
|
|
||||||
set "KMS38_Activation.cmd=%_fdir1%\KMS38_Activation.cmd"
|
|
||||||
set "ClipUp.exe=%_fdir1%\BIN\ClipUp.exe"
|
|
||||||
set "gatherosstate.exe=%_fdir1%\BIN\gatherosstate.exe"
|
|
||||||
set "slc.dll=%_fdir1%\BIN\slc.dll"
|
|
||||||
set "ARM64_gatherosstate.exe=%_fdir1%\BIN\ARM64_gatherosstate.exe"
|
|
||||||
set "ARM64_slc.dll=%_fdir1%\BIN\ARM64_slc.dll"
|
|
||||||
|
|
||||||
set "_fdir2=Activators\Online_KMS_Activation"
|
|
||||||
set "Activate.cmd=%_fdir2%\Activate.cmd"
|
|
||||||
set "Renewal_Setup.cmd=%_fdir2%\Renewal_Setup.cmd"
|
|
||||||
set "cleanosppx64.exe=%_fdir2%\BIN\cleanosppx64.exe"
|
|
||||||
set "cleanosppx86.exe=%_fdir2%\BIN\cleanosppx86.exe"
|
|
||||||
|
|
||||||
cd /d "!_work!"
|
|
||||||
pushd "!_work!"
|
|
||||||
cd ..
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
if not exist "%HWID_Activation.cmd%" set _nofile=1
|
|
||||||
if not exist "%KMS38_Activation.cmd%" set _nofile=1
|
|
||||||
if not exist "%ClipUp.exe%" set _nofile=1
|
|
||||||
if not exist "%gatherosstate.exe%" set _nofile=1
|
|
||||||
if not exist "%slc.dll%" set _nofile=1
|
|
||||||
if not exist "%ARM64_gatherosstate.exe%" set _nofile=1
|
|
||||||
if not exist "%ARM64_slc.dll%" set _nofile=1
|
|
||||||
|
|
||||||
if not exist "%Activate.cmd%" set _nofile=1
|
|
||||||
if not exist "%Renewal_Setup.cmd%" set _nofile=1
|
|
||||||
if not exist "%cleanosppx64.exe%" set _nofile=1
|
|
||||||
if not exist "%cleanosppx86.exe%" set _nofile=1
|
|
||||||
|
|
||||||
if defined _nofile (
|
|
||||||
echo _____________________________________________________
|
|
||||||
%ELine%
|
|
||||||
echo Some files are missing in the 'Activators' folder.
|
|
||||||
echo _____________________________________________________
|
|
||||||
goto Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:Menu
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo:
|
|
||||||
echo:
|
|
||||||
echo Extract the $OEM$ Folder on your desktop.
|
|
||||||
echo For more details use Read me.
|
|
||||||
echo _______________________________________________________
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [1] HWID ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [2] KMS38 ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [3] HWID, Fallback to KMS38 ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [4] Online KMS ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [5] HWID ^+ Online KMS ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [6] KMS38 ^+ Online KMS ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [7] HWID, Fallback to KMS38 ^+ Online KMS ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [8] Exit ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^|_______________________________________________________^|
|
|
||||||
echo:
|
|
||||||
choice /C:12345678 /N /M "> Enter Your Choice [1,2,3,4,5,6,7,8] : "
|
|
||||||
|
|
||||||
if errorlevel 8 exit /b
|
|
||||||
if errorlevel 7 goto:$OEM$HWID_FB_KMS38-KMS
|
|
||||||
if errorlevel 6 goto:$OEM$KMS38KMS
|
|
||||||
if errorlevel 5 goto:$OEM$HWIDKMS
|
|
||||||
if errorlevel 4 goto:$OEM$KMS
|
|
||||||
if errorlevel 3 goto:$OEM$HWID_FB_KMS38
|
|
||||||
if errorlevel 2 goto:$OEM$KMS38
|
|
||||||
if errorlevel 1 goto:$OEM$HWID
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:$OEM$HWID
|
|
||||||
|
|
||||||
cls
|
|
||||||
call :Prep
|
|
||||||
call :HWIDPrep
|
|
||||||
call :export HWIDSetup "%_dir%\SetupComplete.cmd"
|
|
||||||
set error_=
|
|
||||||
call :HWIDPrep2
|
|
||||||
|
|
||||||
if defined error_ goto ErrorFound
|
|
||||||
set "_oem=HWID"
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:HWIDSetup:
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
reg query HKU\S-1-5-19 1>nul 2>nul || (
|
|
||||||
echo ==== Error ====
|
|
||||||
echo Right click on this file and select 'Run as administrator'
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
call "%~dp0HWID_Activation.cmd" /u
|
|
||||||
|
|
||||||
cd /d "%SystemRoot%\Setup\"
|
|
||||||
if exist "%SystemRoot%\Setup\Scripts\" @RD /S /Q "%SystemRoot%\Setup\Scripts\"
|
|
||||||
exit /b
|
|
||||||
:HWIDSetup:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:$OEM$KMS38
|
|
||||||
|
|
||||||
cls
|
|
||||||
call :Prep
|
|
||||||
call :KMS38Prep
|
|
||||||
call :export KMS38Setup "%_dir%\SetupComplete.cmd"
|
|
||||||
set error_=
|
|
||||||
call :KMS38Prep2
|
|
||||||
|
|
||||||
if defined error_ goto ErrorFound
|
|
||||||
set "_oem=KMS38"
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:KMS38Setup:
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
reg query HKU\S-1-5-19 1>nul 2>nul || (
|
|
||||||
echo ==== Error ====
|
|
||||||
echo Right click on this file and select 'Run as administrator'
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
call "%~dp0KMS38_Activation.cmd" /u
|
|
||||||
|
|
||||||
cd /d "%SystemRoot%\Setup\"
|
|
||||||
if exist "%SystemRoot%\Setup\Scripts\" @RD /S /Q "%SystemRoot%\Setup\Scripts\"
|
|
||||||
exit /b
|
|
||||||
:KMS38Setup:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:$OEM$HWID_FB_KMS38
|
|
||||||
|
|
||||||
cls
|
|
||||||
call :Prep
|
|
||||||
|
|
||||||
copy /y /b "%HWID_Activation.cmd%" "%_dir%\HWID_Activation.cmd" %nul%
|
|
||||||
call :KMS38Prep
|
|
||||||
call :export HWID_FB_KMS38 "%_dir%\SetupComplete.cmd"
|
|
||||||
|
|
||||||
set error_=
|
|
||||||
If not exist "%_dir%\HWID_Activation.cmd" (set error_=1)
|
|
||||||
call :KMS38Prep2
|
|
||||||
|
|
||||||
if defined error_ goto ErrorFound
|
|
||||||
set "_oem=HWID`, Fallback to KMS38"
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:HWID_FB_KMS38:
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
reg query HKU\S-1-5-19 1>nul 2>nul || (
|
|
||||||
echo ==== Error ====
|
|
||||||
echo Right click on this file and select 'Run as administrator'
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
|
|
||||||
:: Check Windows Edition
|
|
||||||
set osedition=
|
|
||||||
for /f "tokens=2 delims==" %%a in ('"wmic path SoftwareLicensingProduct where (ApplicationID='55c92734-d682-4d71-983e-d6ec3f16059f' and PartialProductKey is not NULL) get LicenseFamily /VALUE" 2^>nul') do if not errorlevel 1 set "osedition=%%a"
|
|
||||||
if not defined osedition for /f "tokens=3 delims=: " %%a in ('DISM /English /Online /Get-CurrentEdition 2^>nul ^| find /i "Current Edition :"') do set "osedition=%%a"
|
|
||||||
|
|
||||||
:: Check Installation type
|
|
||||||
set instype=
|
|
||||||
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v InstallationType 2^>nul') do if not errorlevel 1 set "instype=%%b"
|
|
||||||
|
|
||||||
set KMS38=
|
|
||||||
if "%winbuild%" GEQ "17763" if "%osedition%"=="EnterpriseS" set KMS38=1
|
|
||||||
if "%winbuild%" GEQ "17763" if "%osedition%"=="EnterpriseSN" set KMS38=1
|
|
||||||
if "%osedition%"=="EnterpriseG" set KMS38=1
|
|
||||||
if "%osedition%"=="EnterpriseGN" set KMS38=1
|
|
||||||
if not "%instype%"=="Client" echo %osedition%| findstr /I /B Server 1>nul && set KMS38=1
|
|
||||||
|
|
||||||
if defined KMS38 (
|
|
||||||
call "%~dp0KMS38_Activation.cmd" /u
|
|
||||||
) else (
|
|
||||||
call "%~dp0HWID_Activation.cmd" /u
|
|
||||||
)
|
|
||||||
|
|
||||||
cd /d "%SystemRoot%\Setup\"
|
|
||||||
if exist "%SystemRoot%\Setup\Scripts\" @RD /S /Q "%SystemRoot%\Setup\Scripts\"
|
|
||||||
exit /b
|
|
||||||
:HWID_FB_KMS38:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:$OEM$KMS
|
|
||||||
|
|
||||||
cls
|
|
||||||
call :Prep
|
|
||||||
call :KMSPrep
|
|
||||||
call :export KMSSetup "%_dir%\SetupComplete.cmd"
|
|
||||||
set error_=
|
|
||||||
call :KMSPrep2
|
|
||||||
|
|
||||||
if defined error_ goto ErrorFound
|
|
||||||
set "_oem=Online KMS"
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:KMSSetup:
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS Renewal And Activation Task
|
|
||||||
set Renewal_And_Activation_Task=1
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS activation desktop context menu
|
|
||||||
set Desktop_context_menu=1
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
reg query HKU\S-1-5-19 1>nul 2>nul || (
|
|
||||||
echo ==== Error ====
|
|
||||||
echo Right click on this file and select 'Run as administrator'
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
if %Renewal_And_Activation_Task% EQU 1 call "%~dp0Renewal_Setup.cmd" /rat
|
|
||||||
if %Desktop_context_menu% EQU 1 call "%~dp0Renewal_Setup.cmd" /dcm
|
|
||||||
|
|
||||||
cd /d "%SystemRoot%\Setup\"
|
|
||||||
if exist "%SystemRoot%\Setup\Scripts\" @RD /S /Q "%SystemRoot%\Setup\Scripts\"
|
|
||||||
exit /b
|
|
||||||
:KMSSetup:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:$OEM$HWIDKMS
|
|
||||||
|
|
||||||
cls
|
|
||||||
call :Prep
|
|
||||||
call :HWIDPrep
|
|
||||||
call :KMSPrep
|
|
||||||
|
|
||||||
call :export HWIDKMSSetup "%_dir%\SetupComplete.cmd"
|
|
||||||
|
|
||||||
set error_=
|
|
||||||
call :HWIDPrep2
|
|
||||||
call :KMSPrep2
|
|
||||||
|
|
||||||
if defined error_ goto ErrorFound
|
|
||||||
set "_oem=HWID `+ Online KMS"
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:HWIDKMSSetup:
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS Renewal And Activation Task
|
|
||||||
set Renewal_And_Activation_Task=1
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS activation desktop context menu
|
|
||||||
set Desktop_context_menu=1
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
reg query HKU\S-1-5-19 1>nul 2>nul || (
|
|
||||||
echo ==== Error ====
|
|
||||||
echo Right click on this file and select 'Run as administrator'
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
call "%~dp0HWID_Activation.cmd" /u
|
|
||||||
if defined HWIDAct set SkipWinAct=/swa
|
|
||||||
|
|
||||||
if %Renewal_And_Activation_Task% EQU 1 call "%~dp0Renewal_Setup.cmd" /rat %SkipWinAct%
|
|
||||||
if %Desktop_context_menu% EQU 1 call "%~dp0Renewal_Setup.cmd" /dcm %SkipWinAct%
|
|
||||||
|
|
||||||
cd /d "%SystemRoot%\Setup\"
|
|
||||||
if exist "%SystemRoot%\Setup\Scripts\" @RD /S /Q "%SystemRoot%\Setup\Scripts\"
|
|
||||||
exit /b
|
|
||||||
:HWIDKMSSetup:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:$OEM$KMS38KMS
|
|
||||||
|
|
||||||
cls
|
|
||||||
call :Prep
|
|
||||||
call :KMS38Prep
|
|
||||||
call :KMSPrep
|
|
||||||
call :export KMS38KMSSetup "%_dir%\SetupComplete.cmd"
|
|
||||||
set error_=
|
|
||||||
call :KMS38Prep2
|
|
||||||
call :KMSPrep2
|
|
||||||
|
|
||||||
if defined error_ goto ErrorFound
|
|
||||||
set "_oem=KMS38 `+ Online KMS"
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:KMS38KMSSetup:
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS Renewal And Activation Task
|
|
||||||
set Renewal_And_Activation_Task=1
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS activation desktop context menu
|
|
||||||
set Desktop_context_menu=1
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
reg query HKU\S-1-5-19 1>nul 2>nul || (
|
|
||||||
echo ==== Error ====
|
|
||||||
echo Right click on this file and select 'Run as administrator'
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
call "%~dp0KMS38_Activation.cmd" /u
|
|
||||||
|
|
||||||
if %Renewal_And_Activation_Task% EQU 1 call "%~dp0Renewal_Setup.cmd" /rat
|
|
||||||
if %Desktop_context_menu% EQU 1 call "%~dp0Renewal_Setup.cmd" /dcm
|
|
||||||
|
|
||||||
cd /d "%SystemRoot%\Setup\"
|
|
||||||
if exist "%SystemRoot%\Setup\Scripts\" @RD /S /Q "%SystemRoot%\Setup\Scripts\"
|
|
||||||
exit /b
|
|
||||||
:KMS38KMSSetup:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:$OEM$HWID_FB_KMS38-KMS
|
|
||||||
|
|
||||||
cls
|
|
||||||
call :Prep
|
|
||||||
|
|
||||||
copy /y /b "%HWID_Activation.cmd%" "%_dir%\HWID_Activation.cmd" %nul%
|
|
||||||
call :KMS38Prep
|
|
||||||
call :KMSPrep
|
|
||||||
call :export HWID_FB_KMS38-KMSSetup "%_dir%\SetupComplete.cmd"
|
|
||||||
|
|
||||||
set error_=
|
|
||||||
If not exist "%_dir%\HWID_Activation.cmd" (set error_=1)
|
|
||||||
call :KMS38Prep2
|
|
||||||
call :KMSPrep2
|
|
||||||
|
|
||||||
if defined error_ goto ErrorFound
|
|
||||||
set "_oem=HWID`, Fallback to KMS38 `+ Online KMS"
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:HWID_FB_KMS38-KMSSetup:
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS Renewal And Activation Task
|
|
||||||
set Renewal_And_Activation_Task=1
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS activation desktop context menu
|
|
||||||
set Desktop_context_menu=1
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
reg query HKU\S-1-5-19 1>nul 2>nul || (
|
|
||||||
echo ==== Error ====
|
|
||||||
echo Right click on this file and select 'Run as administrator'
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
|
|
||||||
:: Check Windows Edition
|
|
||||||
set osedition=
|
|
||||||
for /f "tokens=2 delims==" %%a in ('"wmic path SoftwareLicensingProduct where (ApplicationID='55c92734-d682-4d71-983e-d6ec3f16059f' and PartialProductKey is not NULL) get LicenseFamily /VALUE" 2^>nul') do if not errorlevel 1 set "osedition=%%a"
|
|
||||||
if not defined osedition for /f "tokens=3 delims=: " %%a in ('DISM /English /Online /Get-CurrentEdition 2^>nul ^| find /i "Current Edition :"') do set "osedition=%%a"
|
|
||||||
|
|
||||||
:: Check Installation type
|
|
||||||
set instype=
|
|
||||||
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v InstallationType 2^>nul') do if not errorlevel 1 set "instype=%%b"
|
|
||||||
|
|
||||||
set KMS38=
|
|
||||||
if "%winbuild%" GEQ "17763" if "%osedition%"=="EnterpriseS" set KMS38=1
|
|
||||||
if "%winbuild%" GEQ "17763" if "%osedition%"=="EnterpriseSN" set KMS38=1
|
|
||||||
if "%osedition%"=="EnterpriseG" set KMS38=1
|
|
||||||
if "%osedition%"=="EnterpriseGN" set KMS38=1
|
|
||||||
if not "%instype%"=="Client" echo %osedition%| findstr /I /B Server 1>nul && set KMS38=1
|
|
||||||
|
|
||||||
if defined KMS38 (
|
|
||||||
call "%~dp0KMS38_Activation.cmd" /u
|
|
||||||
) else (
|
|
||||||
call "%~dp0HWID_Activation.cmd" /u
|
|
||||||
if defined HWIDAct set SkipWinAct=/swa
|
|
||||||
)
|
|
||||||
|
|
||||||
if %Renewal_And_Activation_Task% EQU 1 call "%~dp0Renewal_Setup.cmd" /rat %SkipWinAct%
|
|
||||||
if %Desktop_context_menu% EQU 1 call "%~dp0Renewal_Setup.cmd" /dcm %SkipWinAct%
|
|
||||||
|
|
||||||
cd /d "%SystemRoot%\Setup\"
|
|
||||||
if exist "%SystemRoot%\Setup\Scripts\" @RD /S /Q "%SystemRoot%\Setup\Scripts\"
|
|
||||||
exit /b
|
|
||||||
:HWID_FB_KMS38-KMSSetup:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:ErrorFound
|
|
||||||
|
|
||||||
%ELine%
|
|
||||||
echo $OEM$ Folder was not created successfully...
|
|
||||||
goto :Done2
|
|
||||||
:Done
|
|
||||||
echo ________________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
%EchoGreen% %_oem% `$OEM`$ folder is successfully created on the Desktop.
|
|
||||||
echo ________________________________________________________________________________________________
|
|
||||||
:Done2
|
|
||||||
echo:
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:Prep
|
|
||||||
|
|
||||||
cd /d "%desktop%"
|
|
||||||
md "%desktop%\$OEM$\$$\Setup\Scripts\"
|
|
||||||
md "%desktop%\$OEM$\$$\Setup\Scripts\BIN"
|
|
||||||
|
|
||||||
cd /d "!_work!"
|
|
||||||
pushd "!_work!"
|
|
||||||
cd ..
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:HWIDPrep
|
|
||||||
|
|
||||||
copy /y /b "%HWID_Activation.cmd%" "%_dir%\HWID_Activation.cmd" %nul%
|
|
||||||
copy /y /b "%gatherosstate.exe%" "%_dir%\BIN\gatherosstate.exe" %nul%
|
|
||||||
copy /y /b "%slc.dll%" "%_dir%\BIN\slc.dll" %nul%
|
|
||||||
copy /y /b "%ARM64_gatherosstate.exe%" "%_dir%\BIN\ARM64_gatherosstate.exe" %nul%
|
|
||||||
copy /y /b "%ARM64_slc.dll%" "%_dir%\BIN\ARM64_slc.dll" %nul%
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:KMS38Prep
|
|
||||||
|
|
||||||
copy /y /b "%KMS38_Activation.cmd%" "%_dir%\KMS38_Activation.cmd" %nul%
|
|
||||||
copy /y /b "%ClipUp.exe%" "%_dir%\BIN\ClipUp.exe" %nul%
|
|
||||||
copy /y /b "%gatherosstate.exe%" "%_dir%\BIN\gatherosstate.exe" %nul%
|
|
||||||
copy /y /b "%slc.dll%" "%_dir%\BIN\slc.dll" %nul%
|
|
||||||
copy /y /b "%ARM64_gatherosstate.exe%" "%_dir%\BIN\ARM64_gatherosstate.exe" %nul%
|
|
||||||
copy /y /b "%ARM64_slc.dll%" "%_dir%\BIN\ARM64_slc.dll" %nul%
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:KMSPrep
|
|
||||||
|
|
||||||
copy /y /b "%Activate.cmd%" "%_dir%\Activate.cmd" %nul%
|
|
||||||
copy /y /b "%Renewal_Setup.cmd%" "%_dir%\Renewal_Setup.cmd" %nul%
|
|
||||||
copy /y /b "%cleanosppx64.exe%" "%_dir%\BIN\cleanosppx64.exe" %nul%
|
|
||||||
copy /y /b "%cleanosppx86.exe%" "%_dir%\BIN\cleanosppx86.exe" %nul%
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:HWIDPrep2
|
|
||||||
|
|
||||||
If not exist "%_dir%\HWID_Activation.cmd" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\gatherosstate.exe" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\slc.dll" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\ARM64_gatherosstate.exe" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\ARM64_slc.dll" (set error_=1)
|
|
||||||
If not exist "%_dir%\SetupComplete.cmd" (set error_=1)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:KMS38Prep2
|
|
||||||
|
|
||||||
If not exist "%_dir%\KMS38_Activation.cmd" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\ClipUp.exe" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\gatherosstate.exe" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\slc.dll" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\ARM64_gatherosstate.exe" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\ARM64_slc.dll" (set error_=1)
|
|
||||||
If not exist "%_dir%\SetupComplete.cmd" (set error_=1)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:KMSPrep2
|
|
||||||
|
|
||||||
If not exist "%_dir%\Activate.cmd" (set error_=1)
|
|
||||||
If not exist "%_dir%\Renewal_Setup.cmd" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\cleanosppx64.exe" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\cleanosppx86.exe" (set error_=1)
|
|
||||||
If not exist "%_dir%\SetupComplete.cmd" (set error_=1)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Extract the text from batch script without character and file encoding issue
|
|
||||||
:: Thanks to @abbodi1406
|
|
||||||
|
|
||||||
:export
|
|
||||||
%nul% %_psc% "$f=[io.file]::ReadAllText('!_batp!') -split \":%~1\:.*`r`n\"; [io.file]::WriteAllText('%~2',$f[1].Trim(),[System.Text.Encoding]::ASCII);" &exit/b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,123 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
$OEM$ Folders [Windows Pre-Activation]:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- To create a Preactivated Windows installation .iso, do the following things:
|
|
||||||
Copy the "$OEM$" folder to the "sources" folder in the Windows installation media (.iso or USB).
|
|
||||||
The directory will appear like this: \sources\$OEM$ in your altered .iso or on your bootable
|
|
||||||
USB drive.
|
|
||||||
Now use this .iso or bootable USB drive to install Windows and it will either already be activated
|
|
||||||
(KMS38) as soon as it boots, or will self-activate at first internet contact.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
HWID:
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- When using Digital License (HWID), no files are stored on the system, and when connected to the
|
|
||||||
internet for the first time, the system will self-activate at that time.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
KMS38:
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- When using KMS38, no files are stored on the system, and Windows becomes activated immediately
|
|
||||||
without further actions or connectivity of any kind being required.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
Online KMS (separately, or in combination with HWID or KMS38):
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- It creates the following 2 Activation/Renewal Methods. You can turn off any of them in
|
|
||||||
setupcomplete.cmd file
|
|
||||||
|
|
||||||
----------------------------------------------------------
|
|
||||||
|
|
||||||
1- Automatic Renewal via Task Scheduler---
|
|
||||||
|
|
||||||
It creates following files and tasks,
|
|
||||||
|
|
||||||
Files:
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx64.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx86.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Activate.cmd
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Info.txt
|
|
||||||
|
|
||||||
Scheduled Tasks:
|
|
||||||
\Online_KMS_Activation_Script-Renewal (Weekly)
|
|
||||||
\Online_KMS_Activation_Script-Run_Once (Activation Task)
|
|
||||||
|
|
||||||
The scheduled task runs only if the system is connected to the Internet.
|
|
||||||
Activation Task will run on the system login and after successful activation and registering
|
|
||||||
online KMS server, this task will delete itself. leaving behind only one task to run weekly
|
|
||||||
for the lifetime of the system.
|
|
||||||
|
|
||||||
----------------------------------------------------------
|
|
||||||
|
|
||||||
2- Manual Renewal via Desktop Context Menu---
|
|
||||||
|
|
||||||
It creates Desktop context Menu for manual activation and renewal.
|
|
||||||
It creates the following files and registry entries.
|
|
||||||
|
|
||||||
Files:
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx64.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx86.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Activate.cmd
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Info.txt
|
|
||||||
|
|
||||||
Registry entries:
|
|
||||||
HKCR\DesktopBackground\shell\Activate Windows - Office
|
|
||||||
HKCR\DesktopBackground\shell\Activate Windows - Office\command
|
|
||||||
|
|
||||||
It creates an easy to reach the Desktop context menu for the manual activation renewal.
|
|
||||||
|
|
||||||
----------------------------------------------------------
|
|
||||||
|
|
||||||
d30a0e4e5911d3ca705617d17225372731c770e2 *cleanosppx64.exe Virus Total = 0/66
|
|
||||||
39ed8659e7ca16aaccb86def94ce6cec4c847dd6 *cleanosppx86.exe Virus Total = 1/66
|
|
||||||
|
|
||||||
Virus Total Report Date: 12-11-2019
|
|
||||||
|
|
||||||
These files are official Microsoft files and in this script, these are used in
|
|
||||||
cleaning office license in C2R Retail office to VL conversion process.
|
|
||||||
|
|
||||||
The source of these files is the 'old' version of Microsoft Tool O15CTRRemove.diagcab
|
|
||||||
You can get the original file here https://s.put.re/WFuXpyWA.zip
|
|
||||||
|
|
||||||
----------------------------------------------------------
|
|
||||||
|
|
||||||
IMPORTANT NOTE - Some sensitive AV's may flag the Automatic Renewal via the Task, and not
|
|
||||||
because of KMS, because for them it's suspicious to run long scripts in the background as Tasks.
|
|
||||||
|
|
||||||
It's recommended to set exclusions in Antivirus for
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Activate.cmd
|
|
||||||
|
|
||||||
----------------------------------------------------------
|
|
||||||
|
|
||||||
- When using Online KMS plus HWID Digital License, Online KMS script will be set to skip Windows
|
|
||||||
activation (if the HWID activation was applied but was not successful due to lack of internet
|
|
||||||
at the time of installation of Windows) but will register the KMS for other products, and all
|
|
||||||
later installed Volume License (VL) products (MS Office) will self-activate when going online.
|
|
||||||
|
|
||||||
- When using Online KMS plus KMS38, Online KMS will not skip Windows activation but skip KMS38
|
|
||||||
activation and will register the KMS for other products, and all subsequently-installed Volume
|
|
||||||
License (VL) products (MS Office) will self-activate when going online.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
HWID (Fallback to KMS38):
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- In this method, KMS38 will be used for the activation in case the Windows version is not
|
|
||||||
supported by HWID. For example, Windows 10 LTSC and Windows server.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
Activation Type Supported Product Activation Period
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Digital License - Windows 10 - Permanent
|
|
||||||
KMS38 - Windows 10 / Server - Until the year 2038
|
|
||||||
Online KMS - Windows / Server / Office - For 180 Days, renewal task needs to be
|
|
||||||
created for lifetime auto-activation.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
* For more details, use the ReadMe.txt included in the respective activation folders.
|
|
@ -1,402 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
:: =======================================================================================================
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: =======================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
title Protect / Unprotect KMS38 Activation
|
|
||||||
set _elev=
|
|
||||||
if /i "%~1"=="-el" set _elev=1
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "Red="white" "DarkRed""
|
|
||||||
set "Green="white" "DarkGreen""
|
|
||||||
set "Magenta="white" "darkmagenta""
|
|
||||||
set "Gray="white" "darkgray""
|
|
||||||
set "Black="white" "Black""
|
|
||||||
set "ELine=echo: &call :PU_color "==== ERROR ====" %Red% &echo:"
|
|
||||||
set line=__________________________________________________________________________________________________
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 14393 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo Project is supported only for Windows 10 / Server 1607 [14393] and later builds.
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Elevate script as admin and pass arguments and preventing loop
|
|
||||||
:: Thanks to @hearywarlot [ https://forums.mydigitallife.net/threads/.74332/ ] for the VBS method.
|
|
||||||
:: Thanks to @abbodi1406 for the powershell method and solving special characters issue in file path name.
|
|
||||||
|
|
||||||
%nul% reg query HKU\S-1-5-19 && (
|
|
||||||
goto :Passed
|
|
||||||
) || (
|
|
||||||
if defined _elev goto :E_Admin
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_vbsf=%temp%\admin.vbs"
|
|
||||||
set _PSarg="""%~f0""" -el
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
(
|
|
||||||
echo Set strArg=WScript.Arguments.Named
|
|
||||||
echo Set strRdlproc = CreateObject^("WScript.Shell"^).Exec^("rundll32 kernel32,Sleep"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& strRdlproc.ProcessId ^& "'"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& .ParentProcessId ^& "'"^)
|
|
||||||
echo If InStr ^(.CommandLine, WScript.ScriptName^) ^<^> 0 Then
|
|
||||||
echo strLine = Mid^(.CommandLine, InStr^(.CommandLine , "/File:"^) + Len^(strArg^("File"^)^) + 8^)
|
|
||||||
echo End If
|
|
||||||
echo End With
|
|
||||||
echo .Terminate
|
|
||||||
echo End With
|
|
||||||
echo CreateObject^("Shell.Application"^).ShellExecute "cmd.exe", "/c " ^& chr^(34^) ^& chr^(34^) ^& strArg^("File"^) ^& chr^(34^) ^& strLine ^& chr^(34^), "", "runas", 1
|
|
||||||
)>"!_vbsf!"
|
|
||||||
|
|
||||||
(%nul% cscript //NoLogo "!_vbsf!" /File:"!_batf!" -el) && (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
%nul% %_psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && (
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
goto :E_Admin
|
|
||||||
)
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:E_Admin
|
|
||||||
%ELine%
|
|
||||||
echo This script require administrator privileges.
|
|
||||||
echo To do so, right click on this script and select 'Run as administrator'.
|
|
||||||
goto PU_Done
|
|
||||||
|
|
||||||
:Passed
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
mode con: cols=98 lines=30
|
|
||||||
|
|
||||||
set slp=SoftwareLicensingProduct
|
|
||||||
set sls=SoftwareLicensingService
|
|
||||||
set wApp=55c92734-d682-4d71-983e-d6ec3f16059f
|
|
||||||
set "SPPk=SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform"
|
|
||||||
|
|
||||||
:: Fix for the special characters limitation in path name
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_batp=%_batf:'=''%"
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
:: Check Windows OS name
|
|
||||||
|
|
||||||
set winos=
|
|
||||||
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
if not defined winos for /f "tokens=2* delims== " %%a in ('"wmic os get caption /value" 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo:
|
|
||||||
echo %line%
|
|
||||||
echo:
|
|
||||||
echo [1] Protect KMS38 Activation from being overwritten by 180 days KMS Activators
|
|
||||||
echo:
|
|
||||||
echo [2] Undo changes
|
|
||||||
echo:
|
|
||||||
echo [3] Exit
|
|
||||||
echo:
|
|
||||||
echo %line%
|
|
||||||
echo:
|
|
||||||
choice /C:123 /N /M "> Enter Your Choice [1,2,3] : "
|
|
||||||
|
|
||||||
if errorlevel 3 exit /b
|
|
||||||
if errorlevel 2 goto Undo
|
|
||||||
if errorlevel 1 goto Protect
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:Protect
|
|
||||||
|
|
||||||
cls
|
|
||||||
|
|
||||||
:: Check KMS client setup key
|
|
||||||
|
|
||||||
set _gvlk=
|
|
||||||
wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get ProductKeyChannel 2>nul | findstr /i GVLK 1>nul && (set _gvlk=1)
|
|
||||||
|
|
||||||
if not defined _gvlk (
|
|
||||||
%ELine%
|
|
||||||
echo System is not activated with KMS38. ^(KMS Key is not installed^) Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Activation Grace Period
|
|
||||||
|
|
||||||
set gpr=
|
|
||||||
for /f "tokens=2 delims==" %%# in ('"wmic path %slp% where (ApplicationID='%wApp%' and Description like '%%KMSCLIENT%%' and PartialProductKey is not NULL) get GracePeriodRemaining /VALUE" ') do set "gpr=%%#"
|
|
||||||
|
|
||||||
if "%gpr%" LEQ "259200" (
|
|
||||||
%ELine%
|
|
||||||
echo System is not activated with KMS38. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check SKU value
|
|
||||||
|
|
||||||
set SKU=
|
|
||||||
for /f "tokens=2 delims==" %%a IN ('"wmic Path Win32_OperatingSystem Get OperatingSystemSKU /format:LIST" 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
if not defined SKU for /f "tokens=3 delims=." %%a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions" /v OSProductPfn 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
|
|
||||||
if "%osSKU%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo SKU value was not detected properly. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
set osedition=
|
|
||||||
call :K38_CheckEdition %nul%
|
|
||||||
|
|
||||||
if "%osedition%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo OS Edition was not detected properly. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Activation ID
|
|
||||||
|
|
||||||
set app=
|
|
||||||
for /f "tokens=2 delims==" %%a in ('"wmic path %slp% where (ApplicationID='%wApp%' and LicenseFamily='%osedition%' and Description like '%%KMSCLIENT%%') get ID /VALUE" 2^>nul') do set "app=%%a"
|
|
||||||
|
|
||||||
if "%app%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo Activation ID was not detected properly. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call ClearKeyManagementServiceMachine %nul%
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call ClearKeyManagementServicePort %nul%
|
|
||||||
|
|
||||||
reg query "HKLM\%SPPk%\%wApp%" %nul% && (
|
|
||||||
%nul% call :reg_takeownership "HKLM\%SPPk%\%wApp%" FullControl Allow S-1-5-32-544
|
|
||||||
reg delete "HKLM\%SPPk%\%wApp%" /f %nul%
|
|
||||||
reg delete "HKU\S-1-5-20\%SPPk%\%wApp%" /f %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
reg query "HKLM\%SPPk%\%wApp%" %nul% && (
|
|
||||||
%ELine%
|
|
||||||
echo Registry Key was not cleared successfully. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Set specific KMS host to Local Host
|
|
||||||
:: Thanks to @abbodi1406
|
|
||||||
|
|
||||||
set setkms_error=
|
|
||||||
|
|
||||||
wmic path %slp% where ID='%app%' call ClearKeyManagementServiceMachine %nul% || (set setkms_error=1)
|
|
||||||
wmic path %slp% where ID='%app%' call ClearKeyManagementServicePort %nul% || (set setkms_error=1)
|
|
||||||
wmic path %slp% where ID='%app%' call SetKeyManagementServiceMachine MachineName="127.0.0.2" %nul% || (set setkms_error=1)
|
|
||||||
wmic path %slp% where ID='%app%' call SetKeyManagementServicePort 1688 %nul% || (set setkms_error=1)
|
|
||||||
|
|
||||||
if defined setkms_error (
|
|
||||||
reg delete "HKLM\%SPPk%\%wApp%" /f %nul%
|
|
||||||
reg delete "HKU\S-1-5-20\%SPPk%\%wApp%" /f %nul%
|
|
||||||
%ELine%
|
|
||||||
echo Specific KMS host to Local Host was not properly applied. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
%nul% call :reg_takeownership "HKLM\%SPPk%\%wApp%" "SetValue, Delete" Deny S-1-5-32-544
|
|
||||||
|
|
||||||
reg delete "HKLM\%SPPk%\%wApp%" /f %nul%
|
|
||||||
reg query "HKLM\%SPPk%\%wApp%" %nul% || (
|
|
||||||
%ELine%
|
|
||||||
echo Registry Key was not protected properly. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Activation Grace Period
|
|
||||||
|
|
||||||
set gpr=
|
|
||||||
for /f "tokens=2 delims==" %%# in ('"wmic path %slp% where (ApplicationID='%wApp%' and Description like '%%KMSCLIENT%%' and PartialProductKey is not NULL) get GracePeriodRemaining /VALUE" ') do set "gpr=%%#"
|
|
||||||
|
|
||||||
if "%gpr%" LEQ "259200" (
|
|
||||||
%ELine%
|
|
||||||
echo System is not activated with KMS38.
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo:
|
|
||||||
echo %line%
|
|
||||||
echo:
|
|
||||||
echo Specific KMS host set to 127.0.0.2 ^(Local Host^) successfully.
|
|
||||||
echo:
|
|
||||||
echo Registry item locked successfully.
|
|
||||||
echo HKLM\%SPPk%\%wApp%
|
|
||||||
echo:
|
|
||||||
call :PU_color "%winos% - KMS38 Activation is now protected." %Green%
|
|
||||||
echo:
|
|
||||||
echo Now you need to activate Office with KMS ^(If required^)
|
|
||||||
echo:
|
|
||||||
echo %line%
|
|
||||||
|
|
||||||
goto PU_Done
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:Undo
|
|
||||||
|
|
||||||
cls
|
|
||||||
set exist_=
|
|
||||||
reg query "HKLM\%SPPk%\%wApp%" %nul% && (set exist_=1)
|
|
||||||
|
|
||||||
if defined exist_ (
|
|
||||||
%nul% call :reg_takeownership "HKLM\%SPPk%\%wApp%" FullControl Allow S-1-5-32-544
|
|
||||||
reg delete "HKLM\%SPPk%\%wApp%" /f %nul%
|
|
||||||
reg delete "HKU\S-1-5-20\%SPPk%\%wApp%" /f %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
reg query "HKLM\%SPPk%\%wApp%" %nul% && (
|
|
||||||
%ELine%
|
|
||||||
echo Registry Key was not cleared successfully. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
echo:
|
|
||||||
echo %line%
|
|
||||||
echo:
|
|
||||||
if defined exist_ (
|
|
||||||
echo Registry item deleted successfully.
|
|
||||||
echo HKLM\%SPPk%\%wApp%
|
|
||||||
echo:
|
|
||||||
call :PU_color "KMS38 Activation is now unprotected [set to default]" %Green%
|
|
||||||
) else (
|
|
||||||
call :PU_color "It is already unprotected [set to default]" %Green%
|
|
||||||
)
|
|
||||||
echo:
|
|
||||||
echo %line%
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:PU_Done
|
|
||||||
echo:
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:PU_color
|
|
||||||
|
|
||||||
%_psc% write-host '%1' -fore '%2' -back '%3'
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
:K38_CheckEdition
|
|
||||||
|
|
||||||
for %%# in (
|
|
||||||
4:Enterprise
|
|
||||||
7:ServerStandard
|
|
||||||
8:ServerDatacenter
|
|
||||||
27:EnterpriseN
|
|
||||||
48:Professional
|
|
||||||
49:ProfessionalN
|
|
||||||
50:ServerSolution
|
|
||||||
98:CoreN
|
|
||||||
99:CoreCountrySpecific
|
|
||||||
100:CoreSingleLanguage
|
|
||||||
101:Core
|
|
||||||
110:ServerCloudStorage
|
|
||||||
120:ServerARM64
|
|
||||||
121:Education
|
|
||||||
122:EducationN
|
|
||||||
125:EnterpriseS
|
|
||||||
126:EnterpriseSN
|
|
||||||
145:ServerDatacenterACor
|
|
||||||
146:ServerStandardACor
|
|
||||||
161:ProfessionalWorkstation
|
|
||||||
162:ProfessionalWorkstationN
|
|
||||||
164:ProfessionalEducation
|
|
||||||
165:ProfessionalEducationN
|
|
||||||
168:ServerAzureCor
|
|
||||||
171:EnterpriseG
|
|
||||||
172:EnterpriseGN
|
|
||||||
175:ServerRdsh
|
|
||||||
183:CloudE
|
|
||||||
) do for /f "tokens=1,2 delims=:" %%A in ("%%#") do (
|
|
||||||
if %osSKU%==%%A set "osedition=%%B"
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Reg_takeownership snippet
|
|
||||||
:: Written by @AveYo aka @BAU
|
|
||||||
:: pastebin.com/XTPt0JSC
|
|
||||||
|
|
||||||
:reg_takeownership
|
|
||||||
set "pargs=$regkey='%~1'; $p='%~2'; $a='%~3'; $u='%~4'; $o='%~5';"
|
|
||||||
%_psc% "%pargs%; $f=[io.file]::ReadAllText('!_batp!') -split ':ps_reg_own\:.*';iex ($f[1]);" & exit/b:ps_reg_own:
|
|
||||||
$dll0='[DllImport("ntdll.dll")]public static extern IntPtr RtlAdjustPrivilege(int a,bool b,bool c,ref bool d);';
|
|
||||||
$nt=Add-Type -Member $dll0 -Name Nt -PassThru; foreach($i in @(9,17,18)){$null=$nt::RtlAdjustPrivilege($i,1,0,[ref]0)}
|
|
||||||
$root=$true; if($o -eq ''){$o=$u}; $rk=$regkey -split '\\',2; $key=$rk[1];
|
|
||||||
switch -regex ($rk[0]){ '[mM]'{$HK='LocalMachine'};'[uU]'{$HK='CurrentUser'};default{$HK='ClassesRoot'}; }
|
|
||||||
$usr=0,0,0; $sec=0,0,0; $rule=0,0,0; $perm='FullControl',$p,$p; $access='Allow',$a,$a; $s=$o,$u,'S-1-5-32-544';
|
|
||||||
for($i=0;$i -le 2;$i++){ $usr[$i]=[System.Security.Principal.SecurityIdentifier]$s[$i];
|
|
||||||
$rule[$i]=[System.Security.AccessControl.RegistryAccessRule]::new($usr[$i], $perm[$i], 3, 0, $access[$i]);
|
|
||||||
$sec[$i]=[System.Security.AccessControl.RegistrySecurity]::new(); }
|
|
||||||
function Reg_TakeOwnership { param($hive, $key, $root=$false);
|
|
||||||
$reg=[Microsoft.Win32.Registry]::$hive.OpenSubKey($key,'ReadWriteSubTree','TakeOwnership'); $sec[2].SetOwner($usr[2]);
|
|
||||||
$reg.SetAccessControl($sec[2]); if($root){ $reg=$reg.OpenSubKey('','ReadWriteSubTree','ChangePermissions');
|
|
||||||
$acl=$reg.GetAccessControl(); $acl.SetAccessRuleProtection($false,$false); $acl.ResetAccessRule($rule[1]);
|
|
||||||
$reg.SetAccessControl($acl); } $sec[0].SetOwner($usr[0]); $reg.SetAccessControl($sec[0]); }
|
|
||||||
Reg_TakeOwnership $HK $key $true; if($root){ $r=[Microsoft.Win32.Registry]::$HK.OpenSubKey($key);
|
|
||||||
foreach($sk in $r.GetSubKeyNames()){try{ Reg_TakeOwnership $HK "$($key+'\\'+$sk)" $false}catch{} }}
|
|
||||||
Get-Acl "$($rk[0]+':\\'+$rk[1])" | fl:ps_reg_own:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,37 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
KMS38 Protection:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- If you don't know what KMS38 is, then first check it in the Read Me.
|
|
||||||
|
|
||||||
- By default, a KMS38 Activation is vulnerable to unintended overwriting/replacement and
|
|
||||||
neutralization by a 180-Day KMS Activator (non-KMS38 Activator).
|
|
||||||
However, with a few tricks you can ensure that no alternative KMS Activator can replace KMS38
|
|
||||||
Activation by accident or even on purpose. This script demonstrate how to do/undo that.
|
|
||||||
|
|
||||||
- Protect KMS38:
|
|
||||||
- How does KMS38 Protection work?
|
|
||||||
In the KMS activation method, the Windows Operating System first checks the KMS IP registered
|
|
||||||
as a specific KMS, and if that is not defined then it checks the Global KMS IP.
|
|
||||||
Another fact is that if LocalHost (127.0.0.2) is defined as KMS IP in the Windows 8.1 and 10 OS's
|
|
||||||
then Windows will not accept it as a valid KMS IP.
|
|
||||||
This script simply utilizes the above facts to protect the KMS38 activation from being
|
|
||||||
overwritten by any alternative 'normal' 180-Day KMS Activation.
|
|
||||||
|
|
||||||
Script steps-
|
|
||||||
- Check if Windows is activated with KMS38, if yes,
|
|
||||||
- Set that Windows edition specific KMS IP to LocalHost (127.0.0.2),
|
|
||||||
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform\55c92734-d682-4d71-983e-d6ec3f16059f\XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
|
||||||
where X is Windows edition Activation ID.
|
|
||||||
|
|
||||||
- Lock this Registry with Reg_takeownership snippet by @AveYo aka @BAU
|
|
||||||
pastebin.com/XTPt0JSC
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
- Unprotect KMS38:
|
|
||||||
- Just undo above steps,
|
|
||||||
- Give administrator full control of that mentioned registry key.
|
|
||||||
- Delete that registry key.
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
@ -1,290 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
:: =======================================================================================================
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: =======================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
title Change Windows 10 Edition with Retail/OEM Key
|
|
||||||
set _elev=
|
|
||||||
if /i "%~1"=="-el" set _elev=1
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "ELine=echo: &echo ==== ERROR ==== &echo:"
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 17134 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo OS Requirement - Windows 10 [17134] 1803 and later builds.
|
|
||||||
goto Ced_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Elevate script as admin and pass arguments and preventing loop
|
|
||||||
:: Thanks to @hearywarlot [ https://forums.mydigitallife.net/threads/.74332/ ] for the VBS method.
|
|
||||||
:: Thanks to @abbodi1406 for the powershell method and solving special characters issue in file path name.
|
|
||||||
|
|
||||||
%nul% reg query HKU\S-1-5-19 && (
|
|
||||||
goto :Passed
|
|
||||||
) || (
|
|
||||||
if defined _elev goto :E_Admin
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_vbsf=%temp%\admin.vbs"
|
|
||||||
set _PSarg="""%~f0""" -el
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
(
|
|
||||||
echo Set strArg=WScript.Arguments.Named
|
|
||||||
echo Set strRdlproc = CreateObject^("WScript.Shell"^).Exec^("rundll32 kernel32,Sleep"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& strRdlproc.ProcessId ^& "'"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& .ParentProcessId ^& "'"^)
|
|
||||||
echo If InStr ^(.CommandLine, WScript.ScriptName^) ^<^> 0 Then
|
|
||||||
echo strLine = Mid^(.CommandLine, InStr^(.CommandLine , "/File:"^) + Len^(strArg^("File"^)^) + 8^)
|
|
||||||
echo End If
|
|
||||||
echo End With
|
|
||||||
echo .Terminate
|
|
||||||
echo End With
|
|
||||||
echo CreateObject^("Shell.Application"^).ShellExecute "cmd.exe", "/c " ^& chr^(34^) ^& chr^(34^) ^& strArg^("File"^) ^& chr^(34^) ^& strLine ^& chr^(34^), "", "runas", 1
|
|
||||||
)>"!_vbsf!"
|
|
||||||
|
|
||||||
(%nul% cscript //NoLogo "!_vbsf!" /File:"!_batf!" -el) && (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
%nul% %_psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && (
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
goto :E_Admin
|
|
||||||
)
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:E_Admin
|
|
||||||
%ELine%
|
|
||||||
echo This script require administrator privileges.
|
|
||||||
echo To do so, right click on this script and select 'Run as administrator'.
|
|
||||||
goto Ced_Done
|
|
||||||
|
|
||||||
:Passed
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Set buffer height independently of window height
|
|
||||||
:: https://stackoverflow.com/a/13351373
|
|
||||||
:: Written by @dbenham
|
|
||||||
|
|
||||||
mode con: cols=98 lines=31
|
|
||||||
%nul% %_psc% "&{$H=get-host;$W=$H.ui.rawui;$B=$W.buffersize;$B.height=36;$W.buffersize=$B;}"
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
set slp=SoftwareLicensingProduct
|
|
||||||
set sls=SoftwareLicensingService
|
|
||||||
set wApp=55c92734-d682-4d71-983e-d6ec3f16059f
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
:: Check Installation type
|
|
||||||
set instype=
|
|
||||||
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v InstallationType 2^>nul') do if not errorlevel 1 set "instype=%%b"
|
|
||||||
|
|
||||||
if not "%instype%"=="Client" (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version [Server] Detected.
|
|
||||||
echo OS Requirement - Windows 10 [17134] 1803 and later builds.
|
|
||||||
goto Ced_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Windows Edition
|
|
||||||
set osedition=
|
|
||||||
for /f "tokens=2 delims==" %%a in ('"wmic path %slp% where (ApplicationID='%wApp%' and PartialProductKey is not NULL) get LicenseFamily /VALUE" 2^>nul') do if not errorlevel 1 set "osedition=%%a"
|
|
||||||
if not defined osedition for /f "tokens=3 delims=: " %%a in ('DISM /English /Online /Get-CurrentEdition 2^>nul ^| find /i "Current Edition :"') do set "osedition=%%a"
|
|
||||||
|
|
||||||
cls
|
|
||||||
if "%osedition%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo OS Edition was not detected properly. Aborting...
|
|
||||||
goto Ced_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
echo _______________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
echo Note 1 - This script can not change 'Core'(Home) to 'Non-Core' (Pro) Editions.
|
|
||||||
echo You'll have to do the above manually, Follow these steps.
|
|
||||||
echo - Disable internet.
|
|
||||||
echo - Go to Settings ^> Update ^& Security ^> Activation and
|
|
||||||
echo Insert 'Pro' Edition Product Key VK7JG-NPHTM-C97JM-9MPGT-3V66T
|
|
||||||
echo - Follow on screen instructions, Done.
|
|
||||||
echo:
|
|
||||||
echo Note 2 - Following option works only in W10 17134 (RS4) and later builds.
|
|
||||||
echo _______________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
echo You can change the Current Edition '%osedition%' to one of the following :
|
|
||||||
echo _______________________________________________________________________________________________
|
|
||||||
|
|
||||||
REM Thanks to @RPO for the help in codes
|
|
||||||
|
|
||||||
echo:
|
|
||||||
for /f "tokens=4" %%a in ('dism /online /english /Get-TargetEditions ^| findstr /i /c:"Target Edition : "') do echo %%a
|
|
||||||
echo:
|
|
||||||
choice /C:21 /N /M "[1] Continue [2] Exit : "
|
|
||||||
if %errorlevel%==1 exit /b
|
|
||||||
echo:
|
|
||||||
|
|
||||||
for /f "tokens=4" %%a in ('dism /online /english /Get-TargetEditions ^| findstr /i /c:"Target Edition : "') do (
|
|
||||||
|
|
||||||
choice /C:NY /N /M "Do you want to change to the %%a edition? [Y,N] : "
|
|
||||||
if errorlevel 2 (
|
|
||||||
|
|
||||||
call :%%a %nul%
|
|
||||||
if "!key!"=="" cls &%ELine% &echo [%%a ^| %winbuild%] HWID Activation is Not Supported. &goto Ced_Done
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo ____________________________________________________________________
|
|
||||||
|
|
||||||
REM Thanks to @abbodi1406 for the WMI methods
|
|
||||||
|
|
||||||
echo:
|
|
||||||
echo Changing the Edition to Windows 10 %%a
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call InstallProductKey ProductKey="!key!" %nul% && (
|
|
||||||
for /f "tokens=2 delims==" %%# in ('wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get ProductKeyChannel /value 2^>nul') do set "_channel=%%#"
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call RefreshLicenseStatus %nul%
|
|
||||||
echo:
|
|
||||||
call echo Installing %%_channel%% Key [!key!]
|
|
||||||
echo [Successful]
|
|
||||||
echo:
|
|
||||||
echo Reboot is required to properly change the Edition.
|
|
||||||
) || (
|
|
||||||
%ELine%
|
|
||||||
echo Installing Retail/OEM Key [!key!]
|
|
||||||
echo [Unsuccessful]
|
|
||||||
)
|
|
||||||
echo ____________________________________________________________________
|
|
||||||
|
|
||||||
goto Ced_Done
|
|
||||||
))
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:Ced_Done
|
|
||||||
|
|
||||||
echo:
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Retail_OEM Key List
|
|
||||||
|
|
||||||
:Core
|
|
||||||
set "key=YTMG3-N6DKC-DKB77-7M9GH-8HVX7"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreCountrySpecific
|
|
||||||
set "key=N2434-X9D7W-8PF6X-8DV9T-8TYMD"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreN
|
|
||||||
set "key=4CPRK-NM3K3-X6XXQ-RXX86-WXCHW"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreSingleLanguage
|
|
||||||
set "key=BT79Q-G7N6G-PGBYW-4YWX6-6F4BT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Education
|
|
||||||
set "key=YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EducationN
|
|
||||||
set "key=84NGF-MHBT6-FXBX8-QWJK7-DRR8H"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Enterprise
|
|
||||||
set "key=XGVPP-NMH47-7TTHJ-W3FW7-8HV2C"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseN
|
|
||||||
set "key=3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseS
|
|
||||||
if "%winbuild%" EQU "10240" set "key=FWN7H-PF93Q-4GGP8-M8RF3-MDWWW"
|
|
||||||
if "%winbuild%" EQU "14393" set "key=NK96Y-D9CD8-W44CQ-R8YTK-DYJWX"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseSN
|
|
||||||
if "%winbuild%" EQU "10240" set "key=8V8WN-3GXBH-2TCMG-XHRX3-9766K"
|
|
||||||
if "%winbuild%" EQU "14393" set "key=2DBW3-N2PJG-MVHW3-G7TDK-9HKR4"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Professional
|
|
||||||
set "key=VK7JG-NPHTM-C97JM-9MPGT-3V66T"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalEducation
|
|
||||||
set "key=8PTT6-RNW4C-6V7J2-C2D3X-MHBPB"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalEducationN
|
|
||||||
set "key=GJTYN-HDMQY-FRR76-HVGC7-QPF8P"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalN
|
|
||||||
set "key=2B87N-8KFHP-DKV6R-Y2C8J-PKCKT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalWorkstation
|
|
||||||
set "key=DXG7C-N36C4-C4HTG-X4T3X-2YV77"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalWorkstationN
|
|
||||||
set "key=WYPNQ-8C467-V2W6J-TX4WX-WT2RQ"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ServerRdsh
|
|
||||||
set "key=NJCF7-PW8QT-3324D-688JX-2YV66"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:IoTEnterprise
|
|
||||||
set "key=XQQYW-NFFMW-XJPBH-K8732-CKFFD"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,321 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
:: For unattended mode, run the script with /u parameter.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
:: =======================================================================================================
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: =======================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
title Install Windows 10 Retail/OEM Key
|
|
||||||
set Unattended=
|
|
||||||
set _args=
|
|
||||||
set _elev=
|
|
||||||
set "_arg1=%~1"
|
|
||||||
if not defined _arg1 goto :NoProgArgs
|
|
||||||
set "_args=%~1"
|
|
||||||
set "_arg2=%~2"
|
|
||||||
if defined _arg2 set "_args=%~1 %~2"
|
|
||||||
for %%A in (%_args%) do (
|
|
||||||
if /i "%%A"=="-el" set _elev=1
|
|
||||||
if /i "%%A"=="/u" set Unattended=1)
|
|
||||||
:NoProgArgs
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "ELine=echo: &echo ==== ERROR ==== &echo:"
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 10240 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo Project is supported only for Windows 10.
|
|
||||||
goto Ins_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Elevate script as admin and pass arguments and preventing loop
|
|
||||||
:: Thanks to @hearywarlot [ https://forums.mydigitallife.net/threads/.74332/ ] for the VBS method.
|
|
||||||
:: Thanks to @abbodi1406 for the powershell method and solving special characters issue in file path name.
|
|
||||||
|
|
||||||
%nul% reg query HKU\S-1-5-19 && (
|
|
||||||
goto :Passed
|
|
||||||
) || (
|
|
||||||
if defined _elev goto :E_Admin
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_vbsf=%temp%\admin.vbs"
|
|
||||||
set _PSarg="""%~f0""" -el
|
|
||||||
if defined _args set _PSarg="""%~f0""" -el """%_args%"""
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
(
|
|
||||||
echo Set strArg=WScript.Arguments.Named
|
|
||||||
echo Set strRdlproc = CreateObject^("WScript.Shell"^).Exec^("rundll32 kernel32,Sleep"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& strRdlproc.ProcessId ^& "'"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& .ParentProcessId ^& "'"^)
|
|
||||||
echo If InStr ^(.CommandLine, WScript.ScriptName^) ^<^> 0 Then
|
|
||||||
echo strLine = Mid^(.CommandLine, InStr^(.CommandLine , "/File:"^) + Len^(strArg^("File"^)^) + 8^)
|
|
||||||
echo End If
|
|
||||||
echo End With
|
|
||||||
echo .Terminate
|
|
||||||
echo End With
|
|
||||||
echo CreateObject^("Shell.Application"^).ShellExecute "cmd.exe", "/c " ^& chr^(34^) ^& chr^(34^) ^& strArg^("File"^) ^& chr^(34^) ^& strLine ^& chr^(34^), "", "runas", 1
|
|
||||||
)>"!_vbsf!"
|
|
||||||
|
|
||||||
(%nul% cscript //NoLogo "!_vbsf!" /File:"!_batf!" -el "!_args!") && (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
%nul% %_psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && (
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
goto :E_Admin
|
|
||||||
)
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:E_Admin
|
|
||||||
%ELine%
|
|
||||||
echo This script require administrator privileges.
|
|
||||||
echo To do so, right click on this script and select 'Run as administrator'.
|
|
||||||
goto Ins_Done
|
|
||||||
|
|
||||||
:Passed
|
|
||||||
|
|
||||||
mode con: cols=98 lines=30
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check Windows OS name
|
|
||||||
|
|
||||||
set winos=
|
|
||||||
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
if not defined winos for /f "tokens=2* delims== " %%a in ('"wmic os get caption /value" 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
|
|
||||||
:: Check SKU value
|
|
||||||
|
|
||||||
set SKU=
|
|
||||||
for /f "tokens=2 delims==" %%a IN ('"wmic Path Win32_OperatingSystem Get OperatingSystemSKU /format:LIST" 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
if not defined SKU for /f "tokens=3 delims=." %%a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions" /v OSProductPfn 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
|
|
||||||
if "%osSKU%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo SKU value was not detected properly. Aborting...
|
|
||||||
goto Ins_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
set osedition=
|
|
||||||
call :CheckEdition %nul%
|
|
||||||
|
|
||||||
if "%osedition%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild% ^| SKU:%osSKU%] HWID Activation is Not Supported.
|
|
||||||
goto Ins_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
set key=
|
|
||||||
call :%osedition% %nul%
|
|
||||||
|
|
||||||
if "%key%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild%] HWID Activation is Not Supported.
|
|
||||||
goto Ins_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if defined Unattended goto ContinueKeyInsert
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
echo Install [%winos% ^| %winbuild%] Retail/OEM Key
|
|
||||||
echo [%key%]
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
choice /C:12 /N /M "[1] Continue [2] Exit : "
|
|
||||||
|
|
||||||
if errorlevel 2 exit /b
|
|
||||||
if errorlevel 1 goto ContinueKeyInsert
|
|
||||||
|
|
||||||
:ContinueKeyInsert
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
|
|
||||||
:: Thanks to @abbodi1406 for the WMI methods
|
|
||||||
|
|
||||||
set slp=SoftwareLicensingProduct
|
|
||||||
set sls=SoftwareLicensingService
|
|
||||||
set wApp=55c92734-d682-4d71-983e-d6ec3f16059f
|
|
||||||
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call InstallProductKey ProductKey="%key%" %nul% && (
|
|
||||||
for /f "tokens=2 delims==" %%# in ('wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get ProductKeyChannel /value 2^>nul') do set "_channel=%%#"
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call RefreshLicenseStatus %nul%
|
|
||||||
echo:
|
|
||||||
echo [%winos% ^| %winbuild%]
|
|
||||||
call echo Installing %%_channel%% Key [%key%]
|
|
||||||
echo [Successful]
|
|
||||||
) || (
|
|
||||||
%ELine%
|
|
||||||
echo Installing Retail/OEM Key [%key%]
|
|
||||||
echo [Unsuccessful]
|
|
||||||
)
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:Ins_Done
|
|
||||||
echo:
|
|
||||||
if defined Unattended (
|
|
||||||
echo Exiting in 3 seconds...
|
|
||||||
if %winbuild% LSS 7600 (ping -n 3 127.0.0.1 > nul) else (timeout /t 3)
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
:CheckEdition
|
|
||||||
|
|
||||||
for %%# in (
|
|
||||||
4:Enterprise
|
|
||||||
27:EnterpriseN
|
|
||||||
48:Professional
|
|
||||||
49:ProfessionalN
|
|
||||||
98:CoreN
|
|
||||||
99:CoreCountrySpecific
|
|
||||||
100:CoreSingleLanguage
|
|
||||||
101:Core
|
|
||||||
121:Education
|
|
||||||
122:EducationN
|
|
||||||
125:EnterpriseS
|
|
||||||
126:EnterpriseSN
|
|
||||||
161:ProfessionalWorkstation
|
|
||||||
162:ProfessionalWorkstationN
|
|
||||||
164:ProfessionalEducation
|
|
||||||
165:ProfessionalEducationN
|
|
||||||
175:ServerRdsh
|
|
||||||
188:IoTEnterprise
|
|
||||||
) do for /f "tokens=1,2 delims=:" %%A in ("%%#") do (
|
|
||||||
if %osSKU%==%%A set "osedition=%%B"
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Retail/OEM Key List
|
|
||||||
|
|
||||||
:Core
|
|
||||||
set "key=YTMG3-N6DKC-DKB77-7M9GH-8HVX7"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreCountrySpecific
|
|
||||||
set "key=N2434-X9D7W-8PF6X-8DV9T-8TYMD"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreN
|
|
||||||
set "key=4CPRK-NM3K3-X6XXQ-RXX86-WXCHW"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreSingleLanguage
|
|
||||||
set "key=BT79Q-G7N6G-PGBYW-4YWX6-6F4BT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Education
|
|
||||||
set "key=YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EducationN
|
|
||||||
set "key=84NGF-MHBT6-FXBX8-QWJK7-DRR8H"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Enterprise
|
|
||||||
set "key=XGVPP-NMH47-7TTHJ-W3FW7-8HV2C"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseN
|
|
||||||
set "key=3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseS
|
|
||||||
if "%winbuild%" EQU "10240" set "key=FWN7H-PF93Q-4GGP8-M8RF3-MDWWW"
|
|
||||||
if "%winbuild%" EQU "14393" set "key=NK96Y-D9CD8-W44CQ-R8YTK-DYJWX"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseSN
|
|
||||||
if "%winbuild%" EQU "10240" set "key=8V8WN-3GXBH-2TCMG-XHRX3-9766K"
|
|
||||||
if "%winbuild%" EQU "14393" set "key=2DBW3-N2PJG-MVHW3-G7TDK-9HKR4"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Professional
|
|
||||||
set "key=VK7JG-NPHTM-C97JM-9MPGT-3V66T"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalEducation
|
|
||||||
set "key=8PTT6-RNW4C-6V7J2-C2D3X-MHBPB"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalEducationN
|
|
||||||
set "key=GJTYN-HDMQY-FRR76-HVGC7-QPF8P"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalN
|
|
||||||
set "key=2B87N-8KFHP-DKV6R-Y2C8J-PKCKT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalWorkstation
|
|
||||||
set "key=DXG7C-N36C4-C4HTG-X4T3X-2YV77"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalWorkstationN
|
|
||||||
set "key=WYPNQ-8C467-V2W6J-TX4WX-WT2RQ"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ServerRdsh
|
|
||||||
set "key=NJCF7-PW8QT-3324D-688JX-2YV66"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:IoTEnterprise
|
|
||||||
set "key=XQQYW-NFFMW-XJPBH-K8732-CKFFD"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,3 +0,0 @@
|
|||||||
@echo off
|
|
||||||
start https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/ &:: Login required
|
|
||||||
start https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
@ -1,31 +0,0 @@
|
|||||||
Use the tool 'HashCheck' to compare hashes.
|
|
||||||
https://github.com/gurnec/HashCheck/releases/latest
|
|
||||||
|
|
||||||
9d5b4b3e761cca9531d64200dfbbfa0dec94f5b0 *Activators\Online_KMS_Activation\BIN\_Info.txt
|
|
||||||
378f9fceabbc4ddd6df9f8e33dbd93a1bc94e3ed *Activators\Online_KMS_Activation\Renewal_Setup.cmd
|
|
||||||
d9f0a4b850060929c2c8195dc5e739ba613ab1f5 *Activators\Check_Activation_Status.cmd
|
|
||||||
40a7a78e629f6610de3dd41d91c153503ee2da08 *Activators\Online_KMS_Activation\Uninstall.cmd
|
|
||||||
c2eaf29daa0e7c021a45c95584b036040da52b04 *Activators\Online_KMS_Activation\_ReadMe.txt
|
|
||||||
f9aa119dbe10d54dab5d99c51e937eaf9727fa41 *Extras\KMS38_Protection\Protect_Unprotect-KMS38.cmd
|
|
||||||
68de64a326cdf1b0336c2ecd42a62fec8e7110f2 *Activators\ReadMe.txt
|
|
||||||
8b81e4db09cf7800d678b0ff8569df7c8ca278f1 *Extras\Download_Genuine_Installation_Media.url
|
|
||||||
232e158d5a1c27ea4222f5557c8a979ba8403b34 *Extras\KMS38_Protection\ReadMe.txt
|
|
||||||
7656476fc6c572c8a6e8777c13ed8b5bf07e35a0 *Extras\OEMRET-Change_W10_Edition.cmd
|
|
||||||
136379c8bee42fb65f1ba7ab5390ec7245df82f0 *Extras\OEMRET-Install_W10_Key.cmd
|
|
||||||
dab684c73a4301b35e2feb09292b5626268f7b5f *Credits.txt
|
|
||||||
4e996f40bfface2d3c65027e61489ac74b5a0264 *Homepages.cmd
|
|
||||||
83fc81d5103c83ef31e447f96da27fe1f6458913 *Extras\Extract_OEM_Folder\Extract_OEM_Folder.cmd
|
|
||||||
578364cb2319da7999acd8c015b4ce8da8f1b282 *Activators\HWID-KMS38_Activation\BIN\ARM64_gatherosstate.exe
|
|
||||||
6c0697f17d1a7d8589eaaf37a4275fa745615f30 *Extras\Extract_OEM_Folder\ReadMe.txt
|
|
||||||
5dbea3a580cf60391453a04a5c910a3ceca2b810 *Activators\HWID-KMS38_Activation\BIN\ARM64_slc.dll
|
|
||||||
68da9ab497c6c1e126607a73f3a638749aa0bc88 *Activators\HWID-KMS38_Activation\KMS38_Activation.cmd
|
|
||||||
8fd232b2a0166c6dc015ff427a55966b731c5907 *Activators\HWID-KMS38_Activation\ReadMe_HWID.txt
|
|
||||||
ec3bf25a42b39b6b1b18cfbde14df4bc517f7913 *Activators\HWID-KMS38_Activation\ReadMe_KMS38.txt
|
|
||||||
f5397a68b2afc2453ed61ee3f2f66fb04c03aaca *Activators\Online_KMS_Activation\Activate.cmd
|
|
||||||
48d928b1bec25a56fe896c430c2c034b7866aa7a *Activators\HWID-KMS38_Activation\BIN\ClipUp.exe
|
|
||||||
d30a0e4e5911d3ca705617d17225372731c770e2 *Activators\Online_KMS_Activation\BIN\cleanosppx64.exe
|
|
||||||
fabb5a0fc1e6a372219711152291339af36ed0b5 *Activators\HWID-KMS38_Activation\BIN\gatherosstate.exe
|
|
||||||
39ed8659e7ca16aaccb86def94ce6cec4c847dd6 *Activators\Online_KMS_Activation\BIN\cleanosppx86.exe
|
|
||||||
ca3a51fdfc8749b8be85f7904b1c238a6dfba135 *Activators\HWID-KMS38_Activation\BIN\slc.dll
|
|
||||||
43eaf2c93e4e5850a24e8abf69f7b037f3f39187 *Activators\HWID-KMS38_Activation\BIN\_Info.txt
|
|
||||||
808b6cc1c96027594a66cfb0e2f118357ae93f31 *Activators\HWID-KMS38_Activation\HWID_Activation.cmd
|
|
File diff suppressed because it is too large
Load Diff
@ -1,239 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
@cls
|
|
||||||
|
|
||||||
|
|
||||||
:: ==================================================
|
|
||||||
:: Check-Activation-Status-Alternative.cmd
|
|
||||||
:: Written by @abbodi1406 (MDL)
|
|
||||||
:: https://forums.mydigitallife.net/posts/838808
|
|
||||||
:: ==================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
color 07
|
|
||||||
title Check Activation Status [wmic]
|
|
||||||
set wspp=SoftwareLicensingProduct
|
|
||||||
set wsps=SoftwareLicensingService
|
|
||||||
set ospp=OfficeSoftwareProtectionProduct
|
|
||||||
set osps=OfficeSoftwareProtectionService
|
|
||||||
set winApp=55c92734-d682-4d71-983e-d6ec3f16059f
|
|
||||||
set o14App=59a52881-a989-479d-af46-f275c6370663
|
|
||||||
set o15App=0ff1ce15-a989-479d-af46-f275c6370663
|
|
||||||
for %%# in (spp_get,ospp_get,cW1nd0ws,sppw,c0ff1ce15,sppo,osppsvc,ospp14,ospp15) do set "%%#="
|
|
||||||
for /f "tokens=6 delims=[]. " %%# in ('ver') do set winbuild=%%#
|
|
||||||
set "spp_get=Description, DiscoveredKeyManagementServiceMachineName, DiscoveredKeyManagementServiceMachinePort, EvaluationEndDate, GracePeriodRemaining, ID, KeyManagementServiceMachine, KeyManagementServicePort, KeyManagementServiceProductKeyID, LicenseStatus, LicenseStatusReason, Name, PartialProductKey, ProductKeyID, VLActivationInterval, VLRenewalInterval"
|
|
||||||
set "ospp_get=%spp_get%"
|
|
||||||
if %winbuild% geq 9200 set "spp_get=%spp_get%, DiscoveredKeyManagementServiceMachineIpAddress, KeyManagementServiceLookupDomain, ProductKeyChannel, VLActivationTypeEnabled"
|
|
||||||
|
|
||||||
set "SysPath=%Windir%\System32"
|
|
||||||
if exist "%Windir%\Sysnative\reg.exe" (set "SysPath=%Windir%\Sysnative")
|
|
||||||
set "Path=%SysPath%;%Windir%;%SysPath%\Wbem;%SysPath%\WindowsPowerShell\v1.0\"
|
|
||||||
set "line2=************************************************************"
|
|
||||||
set "line3=____________________________________________________________"
|
|
||||||
|
|
||||||
call :casWpkey %wspp% %winApp% cW1nd0ws sppw
|
|
||||||
if %winbuild% geq 9200 call :casWpkey %wspp% %o15App% c0ff1ce15 sppo
|
|
||||||
wmic path %osps% get Version 1>nul 2>nul && (
|
|
||||||
call :casWpkey %ospp% %o14App% osppsvc ospp14
|
|
||||||
if %winbuild% lss 9200 call :casWpkey %ospp% %o15App% osppsvc ospp15
|
|
||||||
)
|
|
||||||
|
|
||||||
echo %line2%
|
|
||||||
echo *** Windows Status ***
|
|
||||||
echo %line2%
|
|
||||||
if not defined cW1nd0ws (
|
|
||||||
echo:
|
|
||||||
echo Error: product key not found.
|
|
||||||
goto :casWcon
|
|
||||||
)
|
|
||||||
set winID=1
|
|
||||||
for /f "tokens=2 delims==" %%# in ('"wmic path %wspp% where (ApplicationID='%winApp%' and PartialProductKey is not null) get ID /value"') do (
|
|
||||||
set "chkID=%%#"
|
|
||||||
call :casWdet "%wspp%" "%wsps%" "%spp_get%"
|
|
||||||
call :casWout
|
|
||||||
echo %line3%
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
|
|
||||||
:casWcon
|
|
||||||
set winID=0
|
|
||||||
set verbose=1
|
|
||||||
if not defined c0ff1ce15 (
|
|
||||||
if defined osppsvc goto :casWospp
|
|
||||||
goto :casWend
|
|
||||||
)
|
|
||||||
echo %line2%
|
|
||||||
echo *** Office Status ***
|
|
||||||
echo %line2%
|
|
||||||
for /f "tokens=2 delims==" %%# in ('"wmic path %wspp% where (ApplicationID='%o15App%' and PartialProductKey is not null) get ID /value"') do (
|
|
||||||
set "chkID=%%#"
|
|
||||||
call :casWdet "%wspp%" "%wsps%" "%spp_get%"
|
|
||||||
call :casWout
|
|
||||||
echo %line3%
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
set verbose=0
|
|
||||||
if defined osppsvc goto :casWospp
|
|
||||||
goto :casWend
|
|
||||||
|
|
||||||
:casWospp
|
|
||||||
if %verbose%==1 (
|
|
||||||
echo %line2%
|
|
||||||
echo *** Office Status ***
|
|
||||||
echo %line2%
|
|
||||||
)
|
|
||||||
if defined ospp15 for /f "tokens=2 delims==" %%# in ('"wmic path %ospp% where (ApplicationID='%o15App%' and PartialProductKey is not null) get ID /value"') do (
|
|
||||||
set "chkID=%%#"
|
|
||||||
call :casWdet "%ospp%" "%osps%" "%ospp_get%"
|
|
||||||
call :casWout
|
|
||||||
echo %line3%
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
if defined ospp14 for /f "tokens=2 delims==" %%# in ('"wmic path %ospp% where (ApplicationID='%o14App%' and PartialProductKey is not null) get ID /value"') do (
|
|
||||||
set "chkID=%%#"
|
|
||||||
call :casWdet "%ospp%" "%osps%" "%ospp_get%"
|
|
||||||
call :casWout
|
|
||||||
echo %line3%
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
goto :casWend
|
|
||||||
|
|
||||||
:casWpkey
|
|
||||||
wmic path %1 where (ApplicationID='%2' and PartialProductKey is not null) get ID /value 2>nul | findstr /i ID 1>nul && (set %3=1&set %4=1)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:casWdet
|
|
||||||
for %%# in (%~3) do set "%%#="
|
|
||||||
if %~1 equ %ospp% for %%# in (DiscoveredKeyManagementServiceMachineIpAddress, KeyManagementServiceLookupDomain, ProductKeyChannel, VLActivationTypeEnabled) do set "%%#="
|
|
||||||
set "cKmsClient="
|
|
||||||
set "cTblClient="
|
|
||||||
set "cAvmClient="
|
|
||||||
set "ExpireMsg="
|
|
||||||
set "_xpr="
|
|
||||||
for /f "tokens=* delims=" %%# in ('"wmic path %~1 where ID='%chkID%' get %~3 /value" ^| findstr ^=') do set "%%#"
|
|
||||||
|
|
||||||
set /a _gpr=(GracePeriodRemaining+1440-1)/1440
|
|
||||||
echo %Description%| findstr /i VOLUME_KMSCLIENT 1>nul && (set cKmsClient=1&set _mTag=Volume)
|
|
||||||
echo %Description%| findstr /i TIMEBASED_ 1>nul && (set cTblClient=1&set _mTag=Timebased)
|
|
||||||
echo %Description%| findstr /i VIRTUAL_MACHINE_ACTIVATION 1>nul && (set cAvmClient=1&set _mTag=Automatic VM)
|
|
||||||
cmd /c exit /b %LicenseStatusReason%
|
|
||||||
set "LicenseReason=%=ExitCode%"
|
|
||||||
set "LicenseMsg=Time remaining: %GracePeriodRemaining% minute(s) (%_gpr% day(s))"
|
|
||||||
if %_gpr% GEQ 1 for /f "tokens=* delims=" %%# in ('powershell -nop -ep bypass -c "$([DateTime]::Now.addMinutes(%GracePeriodRemaining%)).ToString('yyyy-MM-dd HH:mm:ss')" 2^>nul') do set "_xpr=%%#"
|
|
||||||
|
|
||||||
if %LicenseStatus% EQU 0 (
|
|
||||||
set "License=Unlicensed"
|
|
||||||
set "LicenseMsg="
|
|
||||||
)
|
|
||||||
if %LicenseStatus% EQU 1 (
|
|
||||||
set "License=Licensed"
|
|
||||||
set "LicenseMsg="
|
|
||||||
if %GracePeriodRemaining% EQU 0 (
|
|
||||||
if %winID% EQU 1 (set "ExpireMsg=The machine is permanently activated.") else (set "ExpireMsg=The product is permanently activated.")
|
|
||||||
) else (
|
|
||||||
set "LicenseMsg=%_mTag% activation expiration: %GracePeriodRemaining% minute(s) (%_gpr% day(s))"
|
|
||||||
if defined _xpr set "ExpireMsg=%_mTag% activation will expire %_xpr%"
|
|
||||||
)
|
|
||||||
)
|
|
||||||
if %LicenseStatus% EQU 2 (
|
|
||||||
set "License=Initial grace period"
|
|
||||||
if defined _xpr set "ExpireMsg=Initial grace period ends %_xpr%"
|
|
||||||
)
|
|
||||||
if %LicenseStatus% EQU 3 (
|
|
||||||
set "License=Additional grace period (KMS license expired or hardware out of tolerance)"
|
|
||||||
if defined _xpr set "ExpireMsg=Additional grace period ends %_xpr%"
|
|
||||||
)
|
|
||||||
if %LicenseStatus% EQU 4 (
|
|
||||||
set "License=Non-genuine grace period."
|
|
||||||
if defined _xpr set "ExpireMsg=Non-genuine grace period ends %_xpr%"
|
|
||||||
)
|
|
||||||
if %LicenseStatus% EQU 6 (
|
|
||||||
set "License=Extended grace period"
|
|
||||||
if defined _xpr set "ExpireMsg=Extended grace period ends %_xpr%"
|
|
||||||
)
|
|
||||||
if %LicenseStatus% EQU 5 (
|
|
||||||
set "License=Notification"
|
|
||||||
if "%LicenseReason%"=="C004F200" (set "LicenseMsg=Notification Reason: 0xC004F200 (non-genuine)."
|
|
||||||
) else if "%LicenseReason%"=="C004F009" (set "LicenseMsg=Notification Reason: 0xC004F009 (grace time expired)."
|
|
||||||
) else (set "LicenseMsg=Notification Reason: 0x%LicenseReason%"
|
|
||||||
)
|
|
||||||
)
|
|
||||||
if %LicenseStatus% GTR 6 (
|
|
||||||
set "License=Unknown"
|
|
||||||
set "LicenseMsg="
|
|
||||||
)
|
|
||||||
if not defined cKmsClient exit /b
|
|
||||||
|
|
||||||
if %KeyManagementServicePort%==0 set KeyManagementServicePort=1688
|
|
||||||
set "KmsReg=Registered KMS machine name: %KeyManagementServiceMachine%:%KeyManagementServicePort%"
|
|
||||||
if "%KeyManagementServiceMachine%"=="" set "KmsReg=Registered KMS machine name: KMS name not available"
|
|
||||||
|
|
||||||
if %DiscoveredKeyManagementServiceMachinePort%==0 set DiscoveredKeyManagementServiceMachinePort=1688
|
|
||||||
set "KmsDns=KMS machine name from DNS: %DiscoveredKeyManagementServiceMachineName%:%DiscoveredKeyManagementServiceMachinePort%"
|
|
||||||
if "%DiscoveredKeyManagementServiceMachineName%"=="" set "KmsDns=DNS auto-discovery: KMS name not available"
|
|
||||||
|
|
||||||
for /f "tokens=* delims=" %%# in ('"wmic path %~2 get ClientMachineID, KeyManagementServiceHostCaching /value" ^| findstr ^=') do set "%%#"
|
|
||||||
if /i %KeyManagementServiceHostCaching%==True (set KeyManagementServiceHostCaching=Enabled) else (set KeyManagementServiceHostCaching=Disabled)
|
|
||||||
|
|
||||||
if %winbuild% lss 9200 exit /b
|
|
||||||
if %~1 equ %ospp% exit /b
|
|
||||||
|
|
||||||
if "%DiscoveredKeyManagementServiceMachineIpAddress%"=="" set "DiscoveredKeyManagementServiceMachineIpAddress=not available"
|
|
||||||
|
|
||||||
if "%KeyManagementServiceLookupDomain%"=="" set "KeyManagementServiceLookupDomain="
|
|
||||||
|
|
||||||
if %VLActivationTypeEnabled% EQU 3 (
|
|
||||||
set VLActivationType=Token
|
|
||||||
) else if %VLActivationTypeEnabled% EQU 2 (
|
|
||||||
set VLActivationType=KMS
|
|
||||||
) else if %VLActivationTypeEnabled% EQU 1 (
|
|
||||||
set VLActivationType=AD
|
|
||||||
) else (
|
|
||||||
set VLActivationType=All
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:casWout
|
|
||||||
echo:
|
|
||||||
echo Name: %Name%
|
|
||||||
echo Description: %Description%
|
|
||||||
echo Activation ID: %ID%
|
|
||||||
echo Extended PID: %ProductKeyID%
|
|
||||||
if defined ProductKeyChannel echo Product Key Channel: %ProductKeyChannel%
|
|
||||||
echo Partial Product Key: %PartialProductKey%
|
|
||||||
echo License Status: %License%
|
|
||||||
if defined LicenseMsg echo %LicenseMsg%
|
|
||||||
if not %LicenseStatus%==0 if not %EvaluationEndDate:~0,8%==16010101 echo Evaluation End Date: %EvaluationEndDate:~0,4%-%EvaluationEndDate:~4,2%-%EvaluationEndDate:~6,2% %EvaluationEndDate:~8,2%:%EvaluationEndDate:~10,2% UTC
|
|
||||||
if not defined cKmsClient (
|
|
||||||
if defined ExpireMsg echo:&echo: %ExpireMsg%
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
if defined VLActivationTypeEnabled echo Configured Activation Type: %VLActivationType%
|
|
||||||
echo:
|
|
||||||
if not %LicenseStatus%==1 (
|
|
||||||
echo Please activate the product in order to update KMS client information values.
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
echo Most recent activation information:
|
|
||||||
echo Key Management Service client information
|
|
||||||
echo: Client Machine ID (CMID): %ClientMachineID%
|
|
||||||
echo: %KmsDns%
|
|
||||||
echo: %KmsReg%
|
|
||||||
if defined DiscoveredKeyManagementServiceMachineIpAddress echo: KMS machine IP address: %DiscoveredKeyManagementServiceMachineIpAddress%
|
|
||||||
echo: KMS machine extended PID: %KeyManagementServiceProductKeyID%
|
|
||||||
echo: Activation interval: %VLActivationInterval% minutes
|
|
||||||
echo: Renewal interval: %VLRenewalInterval% minutes
|
|
||||||
echo: KMS host caching: %KeyManagementServiceHostCaching%
|
|
||||||
if defined KeyManagementServiceLookupDomain echo: KMS SRV record lookup domain: %KeyManagementServiceLookupDomain%
|
|
||||||
if defined ExpireMsg echo:&echo: %ExpireMsg%
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:casWend
|
|
||||||
echo:
|
|
||||||
echo Press any key to exit.
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,45 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
File Details:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
fabb5a0fc1e6a372219711152291339af36ed0b5 *gatherosstate.exe Virus Total = 0/71
|
|
||||||
ca3a51fdfc8749b8be85f7904b1c238a6dfba135 *slc.dll Virus Total = 0/68
|
|
||||||
578364cb2319da7999acd8c015b4ce8da8f1b282 *ARM64_gatherosstate.exe Virus Total = 0/69
|
|
||||||
5dbea3a580cf60391453a04a5c910a3ceca2b810 *ARM64_slc.dll Virus Total = 0/67
|
|
||||||
48d928b1bec25a56fe896c430c2c034b7866aa7a *ClipUp.exe Virus Total = 0/68
|
|
||||||
|
|
||||||
Virus Total Report Date: 2020-01-21
|
|
||||||
|
|
||||||
- File Sources:
|
|
||||||
|
|
||||||
- ClipUp.exe (Original):
|
|
||||||
From Windows server 2016 x64 ISO
|
|
||||||
|
|
||||||
- gatherosstate.exe (Original):
|
|
||||||
From Windows 10 x86 14393 ADK
|
|
||||||
|
|
||||||
- ARM64_gatherosstate.exe (Original):
|
|
||||||
From Windows 10 ARM64 18362 ISO
|
|
||||||
|
|
||||||
- ARM64_slc.dll and slc.dll:
|
|
||||||
|
|
||||||
Original slshim
|
|
||||||
https://github.com/vyvojar/slshim
|
|
||||||
|
|
||||||
Improved by @mspaintmsi
|
|
||||||
https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
https://github.com/massgravel/MASSGRAVE
|
|
||||||
https://gitlab.com/massgrave/massgrave
|
|
||||||
|
|
||||||
Source code is included.
|
|
||||||
slc.dll is based on Integrated_Patcher_2 method.
|
|
||||||
It is currently in use in HWID/KMS38 Activation script.
|
|
||||||
|
|
||||||
____________________________________________________________________________________________________
|
|
||||||
|
|
||||||
You can safely delete the following files if it's not required for you.
|
|
||||||
|
|
||||||
ClipUp.exe - Required to KMS38 activate Server Cor and Acor editions.
|
|
||||||
ARM64_gatherosstate.exe and ARM64_slc.dll - Required to activate ARM64 Arch Windows 10.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
Binary file not shown.
Binary file not shown.
@ -1,763 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
|
|
||||||
:: For unattended mode, run the script with /u parameter.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::=========================================================================================================
|
|
||||||
: Credits:
|
|
||||||
::=========================================================================================================
|
|
||||||
::
|
|
||||||
:: @mspaintmsi Original co-authors of HWID/KMS38 Activation without KMS or predecessor install/upgrade.
|
|
||||||
:: and Created various methods for HWID/KMS38 Activation
|
|
||||||
:: *Anonymous https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
:: https://github.com/massgravel/MASSGRAVE
|
|
||||||
:: https://gitlab.com/massgrave/massgrave
|
|
||||||
::
|
|
||||||
:: @vyvojar Original slshim (slc.dll)
|
|
||||||
:: https://github.com/vyvojar/slshim/releases
|
|
||||||
::
|
|
||||||
::---------------------------------------------------------------------------------------------------------
|
|
||||||
::
|
|
||||||
:: HWID/KMS38 methods Suggestions and improvements:-
|
|
||||||
::
|
|
||||||
:: @sponpa New ideas for the HWID/KM38 Generation
|
|
||||||
:: https://www.nsaneforums.com/topic/316668--/page/21/?tab=comments#comment-1431257
|
|
||||||
::
|
|
||||||
:: @leitek8 Improvements for the slc.dll
|
|
||||||
:: https://www.nsaneforums.com/topic/316668--/page/22/?tab=comments#comment-1438005
|
|
||||||
::
|
|
||||||
::---------------------------------------------------------------------------------------------------------
|
|
||||||
::
|
|
||||||
:: Kind Help:-
|
|
||||||
::
|
|
||||||
:: Thanks for having my back and answering all of my queries. (In no particular order)
|
|
||||||
::
|
|
||||||
:: @AveYo aka @BAU, @sponpa, @mspaintmsi @RPO, @leitek8, @mxman2k, @Yen, @abbodi1406
|
|
||||||
::
|
|
||||||
:: @BorrowedWifi for providing support in fixing English grammar errors in the Read Me.
|
|
||||||
:: @Chibi ANUBIS and @smashed for testing scripts for ARM64 system.
|
|
||||||
::
|
|
||||||
:: Special thanks to @abbodi1406 for providing the great help.
|
|
||||||
::
|
|
||||||
::---------------------------------------------------------------------------------------------------------
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: P.S. I (@WindowsAddict) did not help in the development of HWID/KMS38 Activation in any way, I only
|
|
||||||
:: manage batch script tool which is based on the above mentioned original co-authors activation methods.
|
|
||||||
::
|
|
||||||
::=========================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
title [HWID] Digital License Activation
|
|
||||||
set Unattended=
|
|
||||||
set _args=
|
|
||||||
set _elev=
|
|
||||||
set "_arg1=%~1"
|
|
||||||
if not defined _arg1 goto :DL_NoProgArgs
|
|
||||||
set "_args=%~1"
|
|
||||||
set "_arg2=%~2"
|
|
||||||
if defined _arg2 set "_args=%~1 %~2"
|
|
||||||
for %%A in (%_args%) do (
|
|
||||||
if /i "%%A"=="-el" set _elev=1
|
|
||||||
if /i "%%A"=="/u" set Unattended=1)
|
|
||||||
:DL_NoProgArgs
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "Red="white" "DarkRed""
|
|
||||||
set "Green="white" "DarkGreen""
|
|
||||||
set "Magenta="white" "darkmagenta""
|
|
||||||
set "Gray="white" "darkgray""
|
|
||||||
set "Black="white" "Black""
|
|
||||||
set "ELine=echo: &call :DL_color "==== ERROR ====" %Red% &echo:"
|
|
||||||
set slp=SoftwareLicensingProduct
|
|
||||||
set sls=SoftwareLicensingService
|
|
||||||
set wApp=55c92734-d682-4d71-983e-d6ec3f16059f
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
for %%i in (powershell.exe) do if "%%~$path:i"=="" (
|
|
||||||
echo: &echo ==== ERROR ==== &echo:
|
|
||||||
echo Powershell is not installed in the system.
|
|
||||||
echo Aborting...
|
|
||||||
goto DL_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 10240 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo Project is supported only for Windows 10.
|
|
||||||
goto DL_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Elevate script as admin and pass arguments and preventing loop
|
|
||||||
:: Thanks to @hearywarlot [ https://forums.mydigitallife.net/threads/.74332/ ] for the VBS method.
|
|
||||||
:: Thanks to @abbodi1406 for the powershell method and solving special characters issue in file path name.
|
|
||||||
|
|
||||||
%nul% reg query HKU\S-1-5-19 && (
|
|
||||||
goto :DL_Passed
|
|
||||||
) || (
|
|
||||||
if defined _elev goto :DL_E_Admin
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_vbsf=%temp%\admin.vbs"
|
|
||||||
set _PSarg="""%~f0""" -el
|
|
||||||
if defined _args set _PSarg="""%~f0""" -el """%_args%"""
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
(
|
|
||||||
echo Set strArg=WScript.Arguments.Named
|
|
||||||
echo Set strRdlproc = CreateObject^("WScript.Shell"^).Exec^("rundll32 kernel32,Sleep"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& strRdlproc.ProcessId ^& "'"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& .ParentProcessId ^& "'"^)
|
|
||||||
echo If InStr ^(.CommandLine, WScript.ScriptName^) ^<^> 0 Then
|
|
||||||
echo strLine = Mid^(.CommandLine, InStr^(.CommandLine , "/File:"^) + Len^(strArg^("File"^)^) + 8^)
|
|
||||||
echo End If
|
|
||||||
echo End With
|
|
||||||
echo .Terminate
|
|
||||||
echo End With
|
|
||||||
echo CreateObject^("Shell.Application"^).ShellExecute "cmd.exe", "/c " ^& chr^(34^) ^& chr^(34^) ^& strArg^("File"^) ^& chr^(34^) ^& strLine ^& chr^(34^), "", "runas", 1
|
|
||||||
)>"!_vbsf!"
|
|
||||||
|
|
||||||
(%nul% cscript //NoLogo "!_vbsf!" /File:"!_batf!" -el "!_args!") && (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
%nul% %_psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && (
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
goto :DL_E_Admin
|
|
||||||
)
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:DL_E_Admin
|
|
||||||
%ELine%
|
|
||||||
echo This script require administrator privileges.
|
|
||||||
echo To do so, right click on this script and select 'Run as administrator'.
|
|
||||||
goto DL_Done
|
|
||||||
|
|
||||||
:DL_Passed
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Fix for the special characters limitation in path name
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
set "_work=%~dp0"
|
|
||||||
if "%_work:~-1%"=="\" set "_work=%_work:~0,-1%"
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_batp=%_batf:'=''%"
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
mode con: cols=102 lines=31
|
|
||||||
|
|
||||||
:: Check Windows OS name
|
|
||||||
|
|
||||||
set winos=
|
|
||||||
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
if not defined winos for /f "tokens=2* delims== " %%a in ('"wmic os get caption /value" 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
|
|
||||||
call :DL_CheckPermAct
|
|
||||||
if defined PermAct (
|
|
||||||
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
call :DL_color1 " " %Black% &call :DL_color "Checking: %winos% is Permanently Activated." %Green%
|
|
||||||
call :DL_color1 " " %Black% &call :DL_color "Activation is not required." %Gray%
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
if defined Unattended goto DL_Done
|
|
||||||
|
|
||||||
echo Press [1] or [2] button in Keyboard :
|
|
||||||
echo ___________________________________________
|
|
||||||
echo:
|
|
||||||
choice /C:12 /N /M "> [1] Activate [2] Exit : "
|
|
||||||
|
|
||||||
if errorlevel 2 exit /b
|
|
||||||
if errorlevel 1 Goto DL_Continue
|
|
||||||
)
|
|
||||||
|
|
||||||
:DL_Continue
|
|
||||||
cls
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cd /d "!_work!"
|
|
||||||
pushd "!_work!"
|
|
||||||
|
|
||||||
if not exist "!_work!\BIN\" (
|
|
||||||
%ELine%
|
|
||||||
echo 'BIN' Folder does not exist in current directory.
|
|
||||||
echo It's supposed to have files required for the Activation.
|
|
||||||
goto DL_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
echo %winos%| findstr /I Evaluation >nul && set Eval=1||set Eval=
|
|
||||||
if defined Eval (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild%] HWID Activation is Not Supported.
|
|
||||||
echo %winos%| findstr /I Server >nul && (
|
|
||||||
echo Server Evaluation cannot be activated. Convert it to full Server OS.
|
|
||||||
) || (
|
|
||||||
echo Evaluation Editions cannot be activated. Install full Windows OS.
|
|
||||||
)
|
|
||||||
goto DL_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check SKU value
|
|
||||||
|
|
||||||
set SKU=
|
|
||||||
for /f "tokens=2 delims==" %%a IN ('"wmic Path Win32_OperatingSystem Get OperatingSystemSKU /format:LIST" 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
if not defined SKU for /f "tokens=3 delims=." %%a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions" /v OSProductPfn 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
|
|
||||||
if "%osSKU%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo SKU value was not detected properly. Aborting...
|
|
||||||
goto DL_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
set osedition=
|
|
||||||
call :_CheckEdition %nul%
|
|
||||||
|
|
||||||
if "%osedition%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild% ^| SKU:%osSKU%] HWID Activation is Not Supported.
|
|
||||||
goto DL_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Windows Architecture
|
|
||||||
|
|
||||||
set arch=
|
|
||||||
reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > nul && set arch=x86|| set arch=x64
|
|
||||||
wmic os get osarchitecture | find /i "ARM" > nul && set arch=ARM64|| echo %PROCESSOR_ARCHITECTURE% | find /i "ARM" > nul && set arch=ARM64
|
|
||||||
|
|
||||||
if "%arch%"=="ARM64" call :DL_check ARM64_gatherosstate.exe ARM64_slc.dll
|
|
||||||
if not "%arch%"=="ARM64" call :DL_check gatherosstate.exe slc.dll
|
|
||||||
if defined _miss goto DL_Done
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
set key=
|
|
||||||
call :%osedition% %nul%
|
|
||||||
|
|
||||||
if "%key%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild%] HWID Activation is Not Supported.
|
|
||||||
goto DL_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo Checking OS Info [%winos% ^| %winbuild% ^| %arch%]
|
|
||||||
|
|
||||||
set "Chkint=Checking Internet Connection "
|
|
||||||
set IntCon=
|
|
||||||
ping -n 1 www.microsoft.com %nul% && (
|
|
||||||
set IntCon=1
|
|
||||||
echo %Chkint% [Connected]
|
|
||||||
) || (
|
|
||||||
call :DL_color "%Chkint% [Not connected] [Ping www.microsoft.com - Failed]" %Red%
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set _1=ClipSVC
|
|
||||||
set _2=wlidsvc
|
|
||||||
set _3=sppsvc
|
|
||||||
set _4=wuauserv
|
|
||||||
|
|
||||||
for %%# in (%_1% %_2% %_3% %_4%) do call :DL_ServiceCheck %%#
|
|
||||||
|
|
||||||
set "CLecho=Checking %_1% [Service Status -%Cl_state%] [Startup Type -%Cl_start_type%]"
|
|
||||||
set "wlecho=Checking %_2% [Service Status -%wl_state%] [Startup Type -%wl_start_type%]"
|
|
||||||
set "specho=Checking %_3% [Service Status -%sp_state%] [Startup Type -%sp_start_type%]"
|
|
||||||
set "wuecho=Checking %_4% [Service Status -%wu_state%] [Startup Type -%wu_start_type%]"
|
|
||||||
|
|
||||||
if not "%Cl_start_type%"=="Demand" (call :DL_color "%CLecho%" %Red% & set Clst_e=1) else (echo %CLecho%)
|
|
||||||
if not "%wl_start_type%"=="Demand" (call :DL_color "%wlecho%" %Red% & set wlst_e=1) else (echo %wlecho%)
|
|
||||||
if not "%sp_start_type%"=="Delayed-Auto" (call :DL_color "%specho%" %Red% & set spst_e=1) else (echo %specho%)
|
|
||||||
|
|
||||||
if "%wu_start_type%"=="Disabled" (set "_C=%Red%") else (set "_C=%Gray%")
|
|
||||||
if not "%wu_start_type%"=="Auto" (call :DL_color "%wuecho%" %_C% & set wust_e=1) else (echo %wuecho%)
|
|
||||||
|
|
||||||
echo:
|
|
||||||
if defined Clst_e (sc config %_1% start= Demand %nul% && set Clst_s=%_1%-Demand || set Clst_u=%_1%-Demand )
|
|
||||||
if defined wlst_e (sc config %_2% start= Demand %nul% && set wlst_s=%_2%-Demand || set wlst_u=%_2%-Demand )
|
|
||||||
if defined spst_e (sc config %_3% start= Delayed-Auto %nul% && set spst_s=%_3%-Delayed-Auto || set spst_u=%_3%-Delayed-Auto )
|
|
||||||
if defined wust_e (sc config %_4% start= Auto %nul% && set wust_s=%_4%-Auto || set wust_u=%_4%-Auto )
|
|
||||||
|
|
||||||
for %%# in (Clst_s,wlst_s,spst_s,wust_s) do if defined %%# set st_s=1
|
|
||||||
if defined st_s (echo Changing services Startup Type to [ %Clst_s%%wlst_s%%spst_s%%wust_s%] [Successful])
|
|
||||||
|
|
||||||
for %%# in (Clst_u,wlst_u,spst_u,wust_u) do if defined %%# set st_u=1
|
|
||||||
if defined st_u (call :DL_color "Error in changing Startup Type to [ %Clst_u%%wlst_u%%spst_u%%wust_u%]" %Red%)
|
|
||||||
|
|
||||||
if not "%Cl_state%"=="Running" (%_psc% start-service %_1% %nul% && set Cl_s=%_1% || set Cl_u=%_1% )
|
|
||||||
if not "%wl_state%"=="Running" (%_psc% start-service %_2% %nul% && set wl_s=%_2% || set wl_u=%_2% )
|
|
||||||
if not "%sp_state%"=="Running" (%_psc% start-service %_3% %nul% && set sp_s=%_3% || set sp_u=%_3% )
|
|
||||||
if not "%wu_state%"=="Running" (%_psc% start-service %_4% %nul% && set wu_s=%_4% || set wu_u=%_4% )
|
|
||||||
|
|
||||||
for %%# in (Cl_s,wl_s,sp_s,wu_s) do if defined %%# set s_s=1
|
|
||||||
if defined s_s (echo Starting services [ %Cl_s%%wl_s%%sp_s%%wu_s%] [Successful])
|
|
||||||
|
|
||||||
for %%# in (Cl_u,wl_u,sp_u,wu_u) do if defined %%# set s_u=1
|
|
||||||
if defined s_u (call :DL_color "Error in starting services [ %Cl_u%%wl_u%%sp_u%%wu_u%]" %Red%)
|
|
||||||
|
|
||||||
if defined wust_u (
|
|
||||||
call :DL_color "Most likely the Windows Update Service was blocked with a tool, identify and unblock it." %Magenta%
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Thanks to @abbodi1406 for the WMI methods
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set _channel=
|
|
||||||
set _Keyexist=
|
|
||||||
set _partial=
|
|
||||||
|
|
||||||
for /f "tokens=2 delims==" %%# in ('wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get ProductKeyChannel /value 2^>nul') do set "_channel=%%#"
|
|
||||||
for %%A in (MAK, OEM, Retail) do echo %_channel%| findstr /i %%A >nul && set _Keyexist=1
|
|
||||||
|
|
||||||
if defined _Keyexist (
|
|
||||||
for /f "tokens=2 delims==" %%# in ('wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get PartialProductKey /value 2^>nul') do set "_partial=%%#"
|
|
||||||
call echo Checking Installed Product Key [%_channel%] [Partial Key -%%_partial%%]
|
|
||||||
)
|
|
||||||
|
|
||||||
if not defined _Keyexist (
|
|
||||||
set "InsKey=Installing Generic Product Key "
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call InstallProductKey ProductKey="%key%" %nul% && (
|
|
||||||
for /f "tokens=2 delims==" %%# in ('wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get ProductKeyChannel /value 2^>nul') do set "_channel=%%#"
|
|
||||||
call echo %%InsKey%% [%key%] [%%_channel%%] [Successful]
|
|
||||||
) || (
|
|
||||||
call :DL_color "%%InsKey%% [%key%] [Unsuccessful]" %Red%
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call RefreshLicenseStatus %nul%
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Files are copied to temp to generate ticket to avoid possible issues in case the path contains special character or non English names.
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set "temp_=%SystemRoot%\Temp\_Ticket_Work"
|
|
||||||
if exist "%temp_%\" @RD /S /Q "%temp_%\" %nul%
|
|
||||||
md "%temp_%\" %nul%
|
|
||||||
|
|
||||||
cd /d "!_work!\BIN\"
|
|
||||||
|
|
||||||
set ARM64_file=
|
|
||||||
if "%arch%"=="ARM64" set ARM64_file=ARM64_
|
|
||||||
|
|
||||||
copy /y /b "%ARM64_file%gatherosstate.exe" "%temp_%\gatherosstate.exe" %nul%
|
|
||||||
copy /y /b "%ARM64_file%slc.dll" "%temp_%\slc.dll" %nul%
|
|
||||||
|
|
||||||
set cfailed=
|
|
||||||
if not exist "%temp_%\gatherosstate.exe" set cfailed=1
|
|
||||||
if not exist "%temp_%\slc.dll" set cfailed=1
|
|
||||||
|
|
||||||
set "copyfiles=Copying Required Files to Temp "
|
|
||||||
if defined cfailed (
|
|
||||||
call :DL_color "%copyfiles% [%SystemRoot%\Temp\_Ticket_Work\] [Unsuccessful] Aborting..." %Red%
|
|
||||||
goto :DL_Act_Cont
|
|
||||||
) else (
|
|
||||||
echo %copyfiles% [%SystemRoot%\Temp\_Ticket_Work\] [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
cd /d "%temp_%\"
|
|
||||||
attrib -R -A -S -H *.*
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
set "GatherMod=Creating modified gatherosstate "
|
|
||||||
|
|
||||||
if not "%arch%"=="ARM64" (
|
|
||||||
rundll32 "%temp_%\slc.dll",PatchGatherosstate %nul%
|
|
||||||
if not exist "%temp_%\gatherosstatemodified.exe" (
|
|
||||||
call :DL_color "%GatherMod% [Unsuccessful] Aborting" %Red%
|
|
||||||
call :DL_color "Most likely Antivirus program blocked the process, disable it and-or create proper exclsuions." %Magenta%
|
|
||||||
goto :DL_Act_Cont
|
|
||||||
) else (
|
|
||||||
echo %GatherMod% [Successful]
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
set _gather=
|
|
||||||
if "%arch%"=="ARM64" (
|
|
||||||
set _gather=gatherosstate.exe
|
|
||||||
) else (
|
|
||||||
set _gather=gatherosstatemodified.exe
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Multiple attempts to generate the ticket because in some cases, one attempt is not enough.
|
|
||||||
|
|
||||||
set "_noxml=if not exist "%temp_%\GenuineTicket.xml""
|
|
||||||
|
|
||||||
start /wait "" "%temp_%/%_gather%" %nul%
|
|
||||||
%_noxml% timeout /t 3 %nul%
|
|
||||||
%_noxml% call "%temp_%/%_gather%" %nul%
|
|
||||||
%_noxml% timeout /t 3 %nul%
|
|
||||||
%_noxml% "%temp_%/%_gather%" %nul%
|
|
||||||
%_noxml% timeout /t 3 %nul%
|
|
||||||
|
|
||||||
set "GenTicket=Generating GenuineTicket.xml "
|
|
||||||
%_noxml% (
|
|
||||||
call :DL_color "%GenTicket% [Unsuccessful] Aborting..." %Red%
|
|
||||||
goto :DL_Act_Cont
|
|
||||||
) else (
|
|
||||||
echo %GenTicket% [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
:: clipup -v -o -altto <Ticket path> method to apply ticket was not used to avoid the certain issues in case the username have spaces or non English names.
|
|
||||||
|
|
||||||
set "InsTicket=Installing GenuineTicket.xml "
|
|
||||||
set "TDir=%ProgramData%\Microsoft\Windows\ClipSVC\GenuineTicket"
|
|
||||||
if exist "%TDir%\*.xml" del /f /q "%TDir%\*.xml" %nul%
|
|
||||||
copy /y /b "%temp_%\GenuineTicket.xml" "%TDir%\GenuineTicket.xml" %nul%
|
|
||||||
|
|
||||||
if not exist "%TDir%\GenuineTicket.xml" (
|
|
||||||
call :DL_color "Failed to copy Ticket to [%ProgramData%\Microsoft\Windows\ClipSVC\GenuineTicket\] Aborting..." %Red%
|
|
||||||
goto :DL_Act_Cont
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_xmlexist=if exist "%TDir%\GenuineTicket.xml""
|
|
||||||
|
|
||||||
%_psc% Restart-Service ClipSVC %nul%
|
|
||||||
%_xmlexist% timeout /t 2 %nul%
|
|
||||||
%_xmlexist% timeout /t 2 %nul%
|
|
||||||
|
|
||||||
%_xmlexist% (
|
|
||||||
%_psc% stop-Service ClipSVC %nul%
|
|
||||||
%_psc% start-Service ClipSVC %nul%
|
|
||||||
%_xmlexist% timeout /t 2 %nul%
|
|
||||||
%_xmlexist% timeout /t 2 %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
set fallback_=
|
|
||||||
%_xmlexist% (
|
|
||||||
set fallback_=1
|
|
||||||
%nul% clipup -v -o
|
|
||||||
%_xmlexist% timeout /t 2 %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
%_xmlexist% (
|
|
||||||
call :DL_color "%InsTicket% [Unsuccessful] Aborting..." %Red%
|
|
||||||
if exist "%TDir%\*.xml" del /f /q "%TDir%\*.xml" %nul%
|
|
||||||
goto :DL_Act_Cont
|
|
||||||
) else (
|
|
||||||
if not defined fallback_ echo %InsTicket% [Successful]
|
|
||||||
if defined fallback_ call :DL_color "%InsTicket% [Successful] [Fallback method: clipup -v -o]" %Red%
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
echo:
|
|
||||||
echo Activating...
|
|
||||||
echo:
|
|
||||||
|
|
||||||
wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" call Activate %nul%
|
|
||||||
call :DL_CheckPermAct
|
|
||||||
if defined PermAct goto DL_Act_successful
|
|
||||||
|
|
||||||
call :DL_ReTry
|
|
||||||
if not "%ErrCode%"=="" set "Error_Code_=[Error Code %ErrCode%]"
|
|
||||||
call :DL_CheckPermAct
|
|
||||||
|
|
||||||
:DL_Act_successful
|
|
||||||
|
|
||||||
if defined PermAct (
|
|
||||||
call :DL_color "%winos% is permanently activated." %Green%
|
|
||||||
goto :DL_Act_Cont
|
|
||||||
)
|
|
||||||
|
|
||||||
call :DL_color "Activation Failed %Error_Code_%" %Red%
|
|
||||||
call :DL_color "Try the Troubleshoot Guide listed in the ReadMe." %Magenta%
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:DL_Act_Cont
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set "changing_wust_back=Changing wu Startup Type back to [%wu_start_type%]"
|
|
||||||
if defined wust_s (
|
|
||||||
sc config %_4% start= %wu_start_type% %nul% && echo %changing_wust_back% [Successful]
|
|
||||||
) || (
|
|
||||||
call :DL_color "%changing_wust_back% [Unsuccessful]" %Red%
|
|
||||||
)
|
|
||||||
|
|
||||||
cd /d "!_work!\"
|
|
||||||
if exist "%temp_%\" @RD /S /Q "%temp_%\" %nul%
|
|
||||||
set "delFiles=Cleaning Temp Files "
|
|
||||||
if exist "%temp_%\" (
|
|
||||||
call :DL_color "%delFiles% [Unsuccessful]" %Red%
|
|
||||||
) else (
|
|
||||||
echo %delFiles% [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
goto DL_Done
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Echo all the missing files.
|
|
||||||
:: Written by @abbodi1406 (MDL)
|
|
||||||
|
|
||||||
:DL_check
|
|
||||||
|
|
||||||
for %%# in (%1 %2) do (if not exist "!_work!\BIN\%%#" (if defined _miss (set "_miss=!_miss! %%#") else (set "_miss=%%#")))
|
|
||||||
if defined _miss (
|
|
||||||
%ELine%
|
|
||||||
echo Following required file^(s^) is missing in 'BIN' folder. Aborting...
|
|
||||||
echo:
|
|
||||||
echo !_miss!
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:DL_ServiceCheck
|
|
||||||
|
|
||||||
:: Detect Service status and start type
|
|
||||||
:: Written by @RPO
|
|
||||||
|
|
||||||
for /f "tokens=1,3 delims=: " %%a in ('sc query %1') do (if /i %%a==state set "state=%%b")
|
|
||||||
for /f "tokens=1-4 delims=: " %%a in ('sc qc %1') do (if /i %%a==start_type set "start_type=%%c %%d")
|
|
||||||
|
|
||||||
if /i "%state%"=="STOPPED" set state=Stopped
|
|
||||||
if /i "%state%"=="RUNNING" set state=Running
|
|
||||||
|
|
||||||
if /i "%start_type%"=="auto_start (delayed)" set start_type=Delayed-Auto
|
|
||||||
if /i "%start_type%"=="auto_start " set start_type=Auto
|
|
||||||
if /i "%start_type%"=="demand_start " set start_type=Demand
|
|
||||||
if /i "%start_type%"=="disabled " set start_type=Disabled
|
|
||||||
|
|
||||||
for %%i in (%*) do (
|
|
||||||
if /i "%%i"=="%_4%" set "wu_start_type=%start_type%" & set "wu_state=%state%"
|
|
||||||
if /i "%%i"=="%_3%" set "sp_start_type=%start_type%" & set "sp_state=%state%"
|
|
||||||
if /i "%%i"=="%_1%" set "Cl_start_type=%start_type%" & set "Cl_state=%state%"
|
|
||||||
if /i "%%i"=="%_2%" set "wl_start_type=%start_type%" & set "wl_state=%state%"
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:DL_CheckPermAct
|
|
||||||
|
|
||||||
:: Check Windows Permanent Activation status
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
wmic path %slp% where (LicenseStatus='1' and GracePeriodRemaining='0' and PartialProductKey is not NULL) get Name 2>nul | findstr /i "Windows" 1>nul && set PermAct=1||set PermAct=
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:DL_ReTry
|
|
||||||
|
|
||||||
if defined IntCon if not defined wust_u if not defined wu_u call :DL_ReTry_2
|
|
||||||
|
|
||||||
:: Detect Error Code in the Activation
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" call Activate %nul%
|
|
||||||
set errorcode=%errorlevel%
|
|
||||||
cmd /c exit /b %errorcode%
|
|
||||||
if %errorcode% NEQ 0 set "ErrCode=0x%=ExitCode%"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:DL_ReTry_2
|
|
||||||
|
|
||||||
set app=
|
|
||||||
%_psc% Restart-Service sppsvc %nul%
|
|
||||||
|
|
||||||
:: Specific rearm - reset the licensing status of the Windows SKU and app, without the need to restart the system.
|
|
||||||
:: wmic method by @abbodi1406
|
|
||||||
|
|
||||||
for /f "tokens=2 delims==" %%G in ('"wmic path %slp% where (ApplicationID='%wApp%' AND ProductKeyID like '%%-%%') get ID /value" 2^>nul') do (set app=%%G)
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call ReArmApp ApplicationId="%wApp%" %nul%
|
|
||||||
wmic path %slp% where ID='%app%' call ReArmsku %nul%
|
|
||||||
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call RefreshLicenseStatus %nul%
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs -ato %nul%
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:DL_color
|
|
||||||
|
|
||||||
%_psc% write-host '%1' -fore '%2' -back '%3'
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:DL_color1
|
|
||||||
|
|
||||||
%_psc% write-host '%1' -fore '%2' -back '%3' -NoNewline
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:DL_Done
|
|
||||||
|
|
||||||
echo:
|
|
||||||
if defined Unattended (
|
|
||||||
echo Exiting in 3 seconds...
|
|
||||||
if %winbuild% LSS 7600 (ping -n 3 127.0.0.1 > nul) else (timeout /t 3)
|
|
||||||
:: set a value to use in certain conditions of setupcomplete.cmd file.
|
|
||||||
if defined key if not defined PermAct (endlocal & endlocal & set HWIDAct=1)
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
:_CheckEdition
|
|
||||||
|
|
||||||
for %%# in (
|
|
||||||
4-Enterprise
|
|
||||||
27-EnterpriseN
|
|
||||||
48-Professional
|
|
||||||
49-ProfessionalN
|
|
||||||
98-CoreN
|
|
||||||
99-CoreCountrySpecific
|
|
||||||
100-CoreSingleLanguage
|
|
||||||
101-Core
|
|
||||||
121-Education
|
|
||||||
122-EducationN
|
|
||||||
125-EnterpriseS
|
|
||||||
126-EnterpriseSN
|
|
||||||
161-ProfessionalWorkstation
|
|
||||||
162-ProfessionalWorkstationN
|
|
||||||
164-ProfessionalEducation
|
|
||||||
165-ProfessionalEducationN
|
|
||||||
175-ServerRdsh
|
|
||||||
188-IoTEnterprise
|
|
||||||
) do for /f "tokens=1,2 delims=-" %%A in ("%%#") do (
|
|
||||||
if %osSKU%==%%A set "osedition=%%B"
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Retail_OEM Key List
|
|
||||||
|
|
||||||
:Core
|
|
||||||
set "key=YTMG3-N6DKC-DKB77-7M9GH-8HVX7"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreCountrySpecific
|
|
||||||
set "key=N2434-X9D7W-8PF6X-8DV9T-8TYMD"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreN
|
|
||||||
set "key=4CPRK-NM3K3-X6XXQ-RXX86-WXCHW"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreSingleLanguage
|
|
||||||
set "key=BT79Q-G7N6G-PGBYW-4YWX6-6F4BT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Education
|
|
||||||
set "key=YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EducationN
|
|
||||||
set "key=84NGF-MHBT6-FXBX8-QWJK7-DRR8H"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Enterprise
|
|
||||||
set "key=XGVPP-NMH47-7TTHJ-W3FW7-8HV2C"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseN
|
|
||||||
set "key=3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseS
|
|
||||||
if "%winbuild%" EQU "10240" set "key=FWN7H-PF93Q-4GGP8-M8RF3-MDWWW"
|
|
||||||
if "%winbuild%" EQU "14393" set "key=NK96Y-D9CD8-W44CQ-R8YTK-DYJWX"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseSN
|
|
||||||
if "%winbuild%" EQU "10240" set "key=8V8WN-3GXBH-2TCMG-XHRX3-9766K"
|
|
||||||
if "%winbuild%" EQU "14393" set "key=2DBW3-N2PJG-MVHW3-G7TDK-9HKR4"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Professional
|
|
||||||
set "key=VK7JG-NPHTM-C97JM-9MPGT-3V66T"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalEducation
|
|
||||||
set "key=8PTT6-RNW4C-6V7J2-C2D3X-MHBPB"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalEducationN
|
|
||||||
set "key=GJTYN-HDMQY-FRR76-HVGC7-QPF8P"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalN
|
|
||||||
set "key=2B87N-8KFHP-DKV6R-Y2C8J-PKCKT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalWorkstation
|
|
||||||
set "key=DXG7C-N36C4-C4HTG-X4T3X-2YV77"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalWorkstationN
|
|
||||||
set "key=WYPNQ-8C467-V2W6J-TX4WX-WT2RQ"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ServerRdsh
|
|
||||||
set "key=NJCF7-PW8QT-3324D-688JX-2YV66"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:IoTEnterprise
|
|
||||||
set "key=XQQYW-NFFMW-XJPBH-K8732-CKFFD"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,885 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
|
|
||||||
:: For unattended mode, run the script with /u parameter.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::=========================================================================================================
|
|
||||||
: Credits:
|
|
||||||
::=========================================================================================================
|
|
||||||
::
|
|
||||||
:: @mspaintmsi Original co-authors of HWID/KMS38 Activation without KMS or predecessor install/upgrade.
|
|
||||||
:: and Created various methods for HWID/KMS38 Activation
|
|
||||||
:: *Anonymous https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
:: https://github.com/massgravel/MASSGRAVE
|
|
||||||
:: https://gitlab.com/massgrave/massgrave
|
|
||||||
::
|
|
||||||
:: @vyvojar Original slshim (slc.dll)
|
|
||||||
:: https://github.com/vyvojar/slshim/releases
|
|
||||||
::
|
|
||||||
::---------------------------------------------------------------------------------------------------------
|
|
||||||
::
|
|
||||||
:: HWID/KMS38 methods Suggestions and improvements:-
|
|
||||||
::
|
|
||||||
:: @sponpa New ideas for the HWID/KM38 Generation
|
|
||||||
:: https://www.nsaneforums.com/topic/316668--/page/21/?tab=comments#comment-1431257
|
|
||||||
::
|
|
||||||
:: @leitek8 Improvements for the slc.dll
|
|
||||||
:: https://www.nsaneforums.com/topic/316668--/page/22/?tab=comments#comment-1438005
|
|
||||||
::
|
|
||||||
::---------------------------------------------------------------------------------------------------------
|
|
||||||
::
|
|
||||||
:: Kind Help:-
|
|
||||||
::
|
|
||||||
:: Thanks for having my back and answering all of my queries. (In no particular order)
|
|
||||||
::
|
|
||||||
:: @AveYo aka @BAU, @sponpa, @mspaintmsi @RPO, @leitek8, @mxman2k, @Yen, @abbodi1406
|
|
||||||
::
|
|
||||||
:: @BorrowedWifi for providing support in fixing English grammar errors in the Read Me.
|
|
||||||
:: @Chibi ANUBIS and @smashed for testing scripts for ARM64 system.
|
|
||||||
::
|
|
||||||
:: Special thanks to @abbodi1406 for providing the great help.
|
|
||||||
::
|
|
||||||
::---------------------------------------------------------------------------------------------------------
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: P.S. I (@WindowsAddict) did not help in the development of HWID/KMS38 Activation in any way, I only
|
|
||||||
:: manage batch script tool which is based on the above mentioned original co-authors activation methods.
|
|
||||||
::
|
|
||||||
::=========================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
title KMS38 Activation
|
|
||||||
set Unattended=
|
|
||||||
set _args=
|
|
||||||
set _elev=
|
|
||||||
set "_arg1=%~1"
|
|
||||||
if not defined _arg1 goto :K38_NoProgArgs
|
|
||||||
set "_args=%~1"
|
|
||||||
set "_arg2=%~2"
|
|
||||||
if defined _arg2 set "_args=%~1 %~2"
|
|
||||||
for %%A in (%_args%) do (
|
|
||||||
if /i "%%A"=="-el" set _elev=1
|
|
||||||
if /i "%%A"=="/u" set Unattended=1)
|
|
||||||
:K38_NoProgArgs
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "Red="white" "DarkRed""
|
|
||||||
set "Green="white" "DarkGreen""
|
|
||||||
set "Magenta="white" "darkmagenta""
|
|
||||||
set "Gray="white" "darkgray""
|
|
||||||
set "Black="white" "Black""
|
|
||||||
set "ELine=echo: &call :K38_color "==== ERROR ====" %Red% &echo:"
|
|
||||||
set slp=SoftwareLicensingProduct
|
|
||||||
set sls=SoftwareLicensingService
|
|
||||||
set wApp=55c92734-d682-4d71-983e-d6ec3f16059f
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
for %%i in (powershell.exe) do if "%%~$path:i"=="" (
|
|
||||||
echo: &echo ==== ERROR ==== &echo:
|
|
||||||
echo Powershell is not installed in the system.
|
|
||||||
echo Aborting...
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 14393 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo Project is supported only for Windows 10 / Server - 1607 [14393] and later builds.
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Elevate script as admin and pass arguments and preventing loop
|
|
||||||
:: Thanks to @hearywarlot [ https://forums.mydigitallife.net/threads/.74332/ ] for the VBS method.
|
|
||||||
:: Thanks to @abbodi1406 for the powershell method and solving special characters issue in file path name.
|
|
||||||
|
|
||||||
%nul% reg query HKU\S-1-5-19 && (
|
|
||||||
goto :K38_Passed
|
|
||||||
) || (
|
|
||||||
if defined _elev goto :K38_E_Admin
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_vbsf=%temp%\admin.vbs"
|
|
||||||
set _PSarg="""%~f0""" -el
|
|
||||||
if defined _args set _PSarg="""%~f0""" -el """%_args%"""
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
(
|
|
||||||
echo Set strArg=WScript.Arguments.Named
|
|
||||||
echo Set strRdlproc = CreateObject^("WScript.Shell"^).Exec^("rundll32 kernel32,Sleep"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& strRdlproc.ProcessId ^& "'"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& .ParentProcessId ^& "'"^)
|
|
||||||
echo If InStr ^(.CommandLine, WScript.ScriptName^) ^<^> 0 Then
|
|
||||||
echo strLine = Mid^(.CommandLine, InStr^(.CommandLine , "/File:"^) + Len^(strArg^("File"^)^) + 8^)
|
|
||||||
echo End If
|
|
||||||
echo End With
|
|
||||||
echo .Terminate
|
|
||||||
echo End With
|
|
||||||
echo CreateObject^("Shell.Application"^).ShellExecute "cmd.exe", "/c " ^& chr^(34^) ^& chr^(34^) ^& strArg^("File"^) ^& chr^(34^) ^& strLine ^& chr^(34^), "", "runas", 1
|
|
||||||
)>"!_vbsf!"
|
|
||||||
|
|
||||||
(%nul% cscript //NoLogo "!_vbsf!" /File:"!_batf!" -el "!_args!") && (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
%nul% %_psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && (
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
goto :K38_E_Admin
|
|
||||||
)
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:K38_E_Admin
|
|
||||||
%ELine%
|
|
||||||
echo This script require administrator privileges.
|
|
||||||
echo To do so, right click on this script and select 'Run as administrator'.
|
|
||||||
goto K38_Done
|
|
||||||
|
|
||||||
:K38_Passed
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Fix for the special characters limitation in path name
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
set "_work=%~dp0"
|
|
||||||
if "%_work:~-1%"=="\" set "_work=%_work:~0,-1%"
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_batp=%_batf:'=''%"
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
mode con: cols=102 lines=30
|
|
||||||
|
|
||||||
:: Check Windows OS name
|
|
||||||
|
|
||||||
set winos=
|
|
||||||
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
if not defined winos for /f "tokens=2* delims== " %%a in ('"wmic os get caption /value" 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
|
|
||||||
call :K38_CheckPermAct
|
|
||||||
if defined PermAct (
|
|
||||||
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
call :K38_color1 " " %Black% &call :K38_color "Checking: %winos% is Permanently Activated." %Green%
|
|
||||||
call :K38_color1 " " %Black% &call :K38_color "Activation is not required." %Gray%
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
if defined Unattended goto K38_Done
|
|
||||||
|
|
||||||
echo Press [1] or [2] button in Keyboard :
|
|
||||||
echo ___________________________________________
|
|
||||||
echo:
|
|
||||||
choice /C:12 /N /M "> [1] Activate [2] Exit : "
|
|
||||||
|
|
||||||
if errorlevel 2 exit /b
|
|
||||||
if errorlevel 1 Goto K38_Continue
|
|
||||||
)
|
|
||||||
|
|
||||||
:K38_Continue
|
|
||||||
cls
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cd /d "!_work!"
|
|
||||||
pushd "!_work!"
|
|
||||||
|
|
||||||
if not exist "!_work!\BIN\" (
|
|
||||||
%ELine%
|
|
||||||
echo 'BIN' Folder does not exist in current directory.
|
|
||||||
echo It's supposed to have files required for the Activation.
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
echo %winos%| findstr /I Evaluation >nul && set Eval=1||set Eval=
|
|
||||||
if defined Eval (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild%] KMS38 Activation is Not Supported.
|
|
||||||
echo %winos%| findstr /I Server >nul && (
|
|
||||||
echo Server Evaluation cannot be activated. Convert it to full Server OS.
|
|
||||||
) || (
|
|
||||||
echo Evaluation Editions cannot be activated. Install full Windows OS.
|
|
||||||
)
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check SKU value
|
|
||||||
|
|
||||||
set SKU=
|
|
||||||
for /f "tokens=2 delims==" %%a IN ('"wmic Path Win32_OperatingSystem Get OperatingSystemSKU /format:LIST" 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
if not defined SKU for /f "tokens=3 delims=." %%a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions" /v OSProductPfn 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
|
|
||||||
if "%osSKU%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo SKU value was not detected properly. Aborting...
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
set osedition=
|
|
||||||
call :K38_CheckEdition %nul%
|
|
||||||
|
|
||||||
if "%osedition%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild% ^| SKU:%osSKU%] KMS38 Activation is Not Supported.
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Activation ID
|
|
||||||
|
|
||||||
set app=
|
|
||||||
for /f "tokens=2 delims==" %%a in ('"wmic path %slp% where (ApplicationID='%wApp%' and LicenseFamily='%osedition%' and Description like '%%KMSCLIENT%%') get ID /VALUE" 2^>nul') do set "app=%%a"
|
|
||||||
|
|
||||||
:: Check Windows Architecture
|
|
||||||
|
|
||||||
set arch=
|
|
||||||
reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > nul && set arch=x86|| set arch=x64
|
|
||||||
wmic os get osarchitecture | find /i "ARM" > nul && set arch=ARM64|| echo %PROCESSOR_ARCHITECTURE% | find /i "ARM" > nul && set arch=ARM64
|
|
||||||
|
|
||||||
if "%arch%"=="ARM64" call :K38_check ARM64_gatherosstate.exe ARM64_slc.dll
|
|
||||||
if not "%arch%"=="ARM64" call :K38_check gatherosstate.exe slc.dll
|
|
||||||
if defined _miss goto K38_Done
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
if "%app%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild%] KMS38 Activation is Not Supported.
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
set key=
|
|
||||||
call :%app% %nul%
|
|
||||||
|
|
||||||
if "%key%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild% ^| %app%] KMS38 Activation is Not Supported.
|
|
||||||
goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: clipup.exe does not exist in server cor and acor editions.
|
|
||||||
|
|
||||||
set A_Cor=
|
|
||||||
echo %osedition%| findstr /I /B Server >nul && if not exist "%systemroot%\System32\clipup.exe" set A_Cor=1
|
|
||||||
|
|
||||||
if defined A_Cor (
|
|
||||||
call :K38_check clipup.exe
|
|
||||||
if defined _miss goto K38_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo Checking OS Info [%winos% ^| %winbuild% ^| %arch%]
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set _1=ClipSVC
|
|
||||||
set _3=sppsvc
|
|
||||||
|
|
||||||
for %%# in (%_1% %_3%) do call :K38_ServiceCheck %%#
|
|
||||||
|
|
||||||
set "CLecho=Checking %_1% [Service Status -%Cl_state%] [Startup Type -%Cl_start_type%]"
|
|
||||||
set "specho=Checking %_3% [Service Status -%sp_state%] [Startup Type -%sp_start_type%]"
|
|
||||||
|
|
||||||
if not "%Cl_start_type%"=="Demand" (call :K38_color "%CLecho%" %Red% & set Clst_e=1) else (echo %CLecho%)
|
|
||||||
if not "%sp_start_type%"=="Delayed-Auto" (call :K38_color "%specho%" %Red% & set spst_e=1) else (echo %specho%)
|
|
||||||
|
|
||||||
echo:
|
|
||||||
if defined Clst_e (sc config %_1% start= Demand %nul% && set Clst_s=%_1%-Demand || set Clst_u=%_1%-Demand )
|
|
||||||
if defined spst_e (sc config %_3% start= Delayed-Auto %nul% && set spst_s=%_3%-Delayed-Auto || set spst_u=%_3%-Delayed-Auto )
|
|
||||||
|
|
||||||
for %%# in (Clst_s,spst_s) do if defined %%# set st_s=1
|
|
||||||
if defined st_s (echo Changing services Startup Type to [ %Clst_s%%spst_s%] [Successful])
|
|
||||||
|
|
||||||
for %%# in (Clst_u,spst_u) do if defined %%# set st_u=1
|
|
||||||
if defined st_u (call :K38_color "Error in changing Startup Type to [ %Clst_u%%spst_u%]" %Red%)
|
|
||||||
|
|
||||||
if not "%Cl_state%"=="Running" (%_psc% start-service %_1% %nul% && set Cl_s=%_1% || set Cl_u=%_1% )
|
|
||||||
if not "%sp_state%"=="Running" (%_psc% start-service %_3% %nul% && set sp_s=%_3% || set sp_u=%_3% )
|
|
||||||
|
|
||||||
for %%# in (Cl_s,sp_s) do if defined %%# set s_s=1
|
|
||||||
if defined s_s (echo Starting services [ %Cl_s%%sp_s%] [Successful])
|
|
||||||
|
|
||||||
for %%# in (Cl_u,sp_u) do if defined %%# set s_u=1
|
|
||||||
if defined s_u (call :K38_color "Error in starting services [ %Cl_u%%sp_u%]" %Red%)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Thanks to @abbodi1406 for the WMI methods
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set _channel=
|
|
||||||
set _Keyexist=
|
|
||||||
set _partial=
|
|
||||||
|
|
||||||
wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get ProductKeyChannel 2>nul | findstr /i GVLK 1>nul && (set _Keyexist=1)
|
|
||||||
|
|
||||||
if defined _Keyexist (
|
|
||||||
for /f "tokens=2 delims==" %%# in ('wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get PartialProductKey /value 2^>nul') do set "_partial=%%#"
|
|
||||||
call echo Checking Installed Product Key [Volume:GVLK] [Partial Key -%%_partial%%]
|
|
||||||
)
|
|
||||||
|
|
||||||
if not defined _Keyexist (
|
|
||||||
set "InsKey=Installing KMS Client Setup Key "
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call InstallProductKey ProductKey="%key%" %nul% && (
|
|
||||||
call echo %%InsKey%% [%key%] [Successful]
|
|
||||||
) || (
|
|
||||||
call :K38_color "%%InsKey%% [%key%] [Unsuccessful]" %Red%
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call RefreshLicenseStatus %nul%
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Set specific KMS host to Local Host
|
|
||||||
:: Thanks to @abbodi1406
|
|
||||||
|
|
||||||
:: By doing this, global KMS IP can not replace KMS38 activation but can be used with Office and other Windows Editions.
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set "SPPk=SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform"
|
|
||||||
reg delete "HKLM\%SPPk%\%wApp%" /f %nul%
|
|
||||||
reg delete "HKU\S-1-5-20\%SPPk%\%wApp%" /f %nul%
|
|
||||||
|
|
||||||
set setkms_error=
|
|
||||||
set "setkms_=Setting Specific KMS Host to "
|
|
||||||
|
|
||||||
wmic path %slp% where ID='%app%' call ClearKeyManagementServiceMachine %nul% || (set setkms_error=1)
|
|
||||||
wmic path %slp% where ID='%app%' call ClearKeyManagementServicePort %nul% || (set setkms_error=1)
|
|
||||||
wmic path %slp% where ID='%app%' call SetKeyManagementServiceMachine MachineName="127.0.0.2" %nul% || (set setkms_error=1)
|
|
||||||
wmic path %slp% where ID='%app%' call SetKeyManagementServicePort 1688 %nul% || (set setkms_error=1)
|
|
||||||
|
|
||||||
if not defined setkms_error (
|
|
||||||
echo %setkms_% [LocalHost 127.0.0.2] [Successful]
|
|
||||||
) else (
|
|
||||||
call :K38_color "%setkms_% [LocalHost 127.0.0.2] [Unsuccessful]" %Red%
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Files are copied to temp to generate ticket to avoid possible issues in case the path contains special character or non English names.
|
|
||||||
|
|
||||||
echo:
|
|
||||||
set "temp_=%SystemRoot%\Temp\_Ticket_Work"
|
|
||||||
if exist "%temp_%\" @RD /S /Q "%temp_%\" %nul%
|
|
||||||
md "%temp_%\" %nul%
|
|
||||||
|
|
||||||
cd /d "!_work!\BIN\"
|
|
||||||
|
|
||||||
set ARM64_file=
|
|
||||||
if "%arch%"=="ARM64" set ARM64_file=ARM64_
|
|
||||||
|
|
||||||
set "A_Cor_cl=%systemroot%\System32\clipup.exe"
|
|
||||||
copy /y /b "%ARM64_file%gatherosstate.exe" "%temp_%\gatherosstate.exe" %nul%
|
|
||||||
copy /y /b "%ARM64_file%slc.dll" "%temp_%\slc.dll" %nul%
|
|
||||||
if defined A_Cor (copy /y /b "ClipUp.exe" "%A_Cor_cl%" %nul%)
|
|
||||||
|
|
||||||
set cfailed=
|
|
||||||
if not exist "%temp_%\gatherosstate.exe" set cfailed=1
|
|
||||||
if not exist "%temp_%\slc.dll" set cfailed=1
|
|
||||||
|
|
||||||
set "copyfiles=Copying Required Files to Temp "
|
|
||||||
set "copyclipup=Copying clipup.exe File to "
|
|
||||||
|
|
||||||
if defined cfailed (
|
|
||||||
call :K38_color "%copyfiles% [%SystemRoot%\Temp\_Ticket_Work\] [Unsuccessful] Aborting..." %Red%
|
|
||||||
goto K38_Act_Cont
|
|
||||||
) else (
|
|
||||||
echo %copyfiles% [%SystemRoot%\Temp\_Ticket_Work\] [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
if defined A_Cor (
|
|
||||||
if not exist "%A_Cor_cl%" call :K38_color "%copyclipup% [%systemroot%\System32\] [Unsuccessful] Aborting..." %Red% & goto K38_Act_Cont
|
|
||||||
if exist "%A_Cor_cl%" echo %copyclipup% [%systemroot%\System32\] [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
cd /d "%temp_%\"
|
|
||||||
attrib -R -A -S -H *.*
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Multiple attempts to generate the ticket because in some cases, one attempt is not enough.
|
|
||||||
|
|
||||||
set "_noxml=if not exist "%temp_%\GenuineTicket.xml""
|
|
||||||
|
|
||||||
start /wait "" "%temp_%/gatherosstate.exe" %nul%
|
|
||||||
%_noxml% timeout /t 3 %nul%
|
|
||||||
%_noxml% call "%temp_%/gatherosstate.exe" %nul%
|
|
||||||
%_noxml% timeout /t 3 %nul%
|
|
||||||
%_noxml% "%temp_%/gatherosstate.exe" %nul%
|
|
||||||
%_noxml% timeout /t 3 %nul%
|
|
||||||
|
|
||||||
set "GenTicket=Generating GenuineTicket.xml "
|
|
||||||
%_noxml% (
|
|
||||||
call :K38_color "%GenTicket% [Unsuccessful] Aborting..." %Red%
|
|
||||||
goto K38_Act_Cont
|
|
||||||
) else (
|
|
||||||
echo %GenTicket% [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
:: clipup -v -o -altto <Ticket path> method to apply ticket was not used to avoid the certain issues in case the username have spaces or non English names.
|
|
||||||
|
|
||||||
set "InsTicket=Installing GenuineTicket.xml "
|
|
||||||
set "TDir=%ProgramData%\Microsoft\Windows\ClipSVC\GenuineTicket"
|
|
||||||
if exist "%TDir%\*.xml" del /f /q "%TDir%\*.xml" %nul%
|
|
||||||
copy /y /b "%temp_%\GenuineTicket.xml" "%TDir%\GenuineTicket.xml" %nul%
|
|
||||||
|
|
||||||
if not exist "%TDir%\GenuineTicket.xml" (
|
|
||||||
call :K38_color "Failed to copy Ticket to [%ProgramData%\Microsoft\Windows\ClipSVC\GenuineTicket\] Aborting..." %Red%
|
|
||||||
goto K38_Act_Cont
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_xmlexist=if exist "%TDir%\GenuineTicket.xml""
|
|
||||||
|
|
||||||
%_psc% Restart-Service ClipSVC %nul%
|
|
||||||
%_xmlexist% timeout /t 2 %nul%
|
|
||||||
%_xmlexist% timeout /t 2 %nul%
|
|
||||||
|
|
||||||
%_xmlexist% (
|
|
||||||
%_psc% stop-Service ClipSVC %nul%
|
|
||||||
%_psc% start-Service ClipSVC %nul%
|
|
||||||
%_xmlexist% timeout /t 2 %nul%
|
|
||||||
%_xmlexist% timeout /t 2 %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
set fallback_=
|
|
||||||
%_xmlexist% (
|
|
||||||
set fallback_=1
|
|
||||||
%nul% clipup -v -o
|
|
||||||
%_xmlexist% timeout /t 2 %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
%_xmlexist% (
|
|
||||||
call :K38_color "%InsTicket% [Unsuccessful] Aborting..." %Red%
|
|
||||||
if exist "%TDir%\*.xml" del /f /q "%TDir%\*.xml" %nul%
|
|
||||||
goto K38_Act_Cont
|
|
||||||
) else (
|
|
||||||
if not defined fallback_ echo %InsTicket% [Successful]
|
|
||||||
if defined fallback_ call :K38_color "%InsTicket% [Successful] [Fallback method: clipup -v -o]" %Red%
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
echo:
|
|
||||||
echo Activating...
|
|
||||||
echo:
|
|
||||||
|
|
||||||
call :K38_CheckEXPtime
|
|
||||||
if %gpr% GTR 259200 (
|
|
||||||
call :K38_Actinfo
|
|
||||||
goto K38_Act_Cont
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Clear 180 Days KMS Activation lock without full Rearm and Restart
|
|
||||||
|
|
||||||
set RearmF=
|
|
||||||
set "Rearm=Applying SKU-APP ID Rearm "
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call ReArmApp ApplicationId="%wApp%" %nul% || (set RearmF=1)
|
|
||||||
wmic path %slp% where ID='%app%' call ReArmsku %nul% || (set RearmF=1)
|
|
||||||
|
|
||||||
if defined RearmF (
|
|
||||||
call :K38_color "%Rearm% [Unsuccessful]" %Red%
|
|
||||||
) else (
|
|
||||||
echo %Rearm% [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
echo:
|
|
||||||
call :K38_CheckEXPtime
|
|
||||||
if %gpr% GTR 259200 (
|
|
||||||
call :K38_Actinfo
|
|
||||||
goto K38_Act_Cont
|
|
||||||
)
|
|
||||||
|
|
||||||
%_psc% Restart-Service sppsvc %nul%
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call RefreshLicenseStatus %nul%
|
|
||||||
|
|
||||||
call :K38_CheckEXPtime
|
|
||||||
if %gpr% GTR 259200 (
|
|
||||||
call :K38_Actinfo
|
|
||||||
goto K38_Act_Cont
|
|
||||||
)
|
|
||||||
|
|
||||||
call :K38_color "Activation Failed." %Red%
|
|
||||||
call :K38_color "Try the Troubleshoot Guide listed in the ReadMe." %Magenta%
|
|
||||||
|
|
||||||
:K38_Act_Cont
|
|
||||||
|
|
||||||
:: clipup.exe does not exist in server cor and acor editions by default, it was copied there with this script.
|
|
||||||
|
|
||||||
echo:
|
|
||||||
cd /d "!_work!\"
|
|
||||||
if exist "%temp_%\" @RD /S /Q "%temp_%\" %nul%
|
|
||||||
if defined A_Cor (if exist "%A_Cor_cl%" del /f /q "%A_Cor_cl%" %nul%)
|
|
||||||
|
|
||||||
set "delFiles=Cleaning Temp Files "
|
|
||||||
set "delclipup=Deleting copied clipup.exe file "
|
|
||||||
|
|
||||||
if exist "%temp_%\" (
|
|
||||||
call :K38_color "%delFiles% [Unsuccessful]" %Red%
|
|
||||||
) else (
|
|
||||||
echo %delFiles% [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
if defined A_Cor (
|
|
||||||
if exist "%A_Cor_cl%" call :K38_color "%delclipup% [Unsuccessful]" %Red%
|
|
||||||
if not exist "%A_Cor_cl%" echo %delclipup% [Successful]
|
|
||||||
)
|
|
||||||
|
|
||||||
goto K38_Done
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Echo all the missing files.
|
|
||||||
:: Written by @abbodi1406 (MDL)
|
|
||||||
|
|
||||||
:K38_check
|
|
||||||
|
|
||||||
for %%# in (%1 %2) do (if not exist "!_work!\BIN\%%#" (if defined _miss (set "_miss=!_miss! %%#") else (set "_miss=%%#")))
|
|
||||||
if defined _miss (
|
|
||||||
%ELine%
|
|
||||||
echo Following required file^(s^) is missing in 'BIN' folder. Aborting...
|
|
||||||
echo:
|
|
||||||
echo !_miss!
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:K38_ServiceCheck
|
|
||||||
|
|
||||||
:: Detect Service status and start type
|
|
||||||
:: Written by @RPO
|
|
||||||
|
|
||||||
for /f "tokens=1,3 delims=: " %%a in ('sc query %1') do (if /i %%a==state set "state=%%b")
|
|
||||||
for /f "tokens=1-4 delims=: " %%a in ('sc qc %1') do (if /i %%a==start_type set "start_type=%%c %%d")
|
|
||||||
|
|
||||||
if /i "%state%"=="STOPPED" set state=Stopped
|
|
||||||
if /i "%state%"=="RUNNING" set state=Running
|
|
||||||
|
|
||||||
if /i "%start_type%"=="auto_start (delayed)" set start_type=Delayed-Auto
|
|
||||||
if /i "%start_type%"=="auto_start " set start_type=Auto
|
|
||||||
if /i "%start_type%"=="demand_start " set start_type=Demand
|
|
||||||
if /i "%start_type%"=="disabled " set start_type=Disabled
|
|
||||||
|
|
||||||
for %%i in (%*) do (
|
|
||||||
if /i "%%i"=="%_3%" set "sp_start_type=%start_type%" & set "sp_state=%state%"
|
|
||||||
if /i "%%i"=="%_1%" set "Cl_start_type=%start_type%" & set "Cl_state=%state%"
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:K38_CheckPermAct
|
|
||||||
|
|
||||||
:: Check Windows Permanent Activation status
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
wmic path %slp% where (LicenseStatus='1' and GracePeriodRemaining='0' and PartialProductKey is not NULL) get Name 2>nul | findstr /i "Windows" 1>nul && set PermAct=1||set PermAct=
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check Expiration date with powershell
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
:K38_Actinfo
|
|
||||||
|
|
||||||
for /f "tokens=* delims=" %%# in ('%_psc% "$([DateTime]::Now.addMinutes(%gpr%)).ToString('yyyy-MM-dd HH:mm:ss')" 2^>nul') do set "_xpr=%%#"
|
|
||||||
call :K38_color "%winos% is activated till %_xpr%" %Green%
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:K38_CheckEXPtime
|
|
||||||
|
|
||||||
:: Check Activation remaining time
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
for /f "tokens=2 delims==" %%# in ('"wmic path %slp% where (ApplicationID='%wApp%' and Description like '%%KMSCLIENT%%' and PartialProductKey is not NULL) get GracePeriodRemaining /VALUE" ') do set "gpr=%%#"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:K38_color
|
|
||||||
|
|
||||||
%_psc% write-host '%1' -fore '%2' -back '%3'
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:K38_color1
|
|
||||||
|
|
||||||
%_psc% write-host '%1' -fore '%2' -back '%3' -NoNewline
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:K38_Done
|
|
||||||
|
|
||||||
echo:
|
|
||||||
if defined Unattended (
|
|
||||||
echo Exiting in 3 seconds...
|
|
||||||
if %winbuild% LSS 7600 (ping -n 3 127.0.0.1 > nul) else (timeout /t 3)
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
:K38_CheckEdition
|
|
||||||
|
|
||||||
for %%# in (
|
|
||||||
4-Enterprise
|
|
||||||
7-ServerStandard
|
|
||||||
8-ServerDatacenter
|
|
||||||
27-EnterpriseN
|
|
||||||
48-Professional
|
|
||||||
49-ProfessionalN
|
|
||||||
50-ServerSolution
|
|
||||||
98-CoreN
|
|
||||||
99-CoreCountrySpecific
|
|
||||||
100-CoreSingleLanguage
|
|
||||||
101-Core
|
|
||||||
110-ServerCloudStorage
|
|
||||||
120-ServerARM64
|
|
||||||
121-Education
|
|
||||||
122-EducationN
|
|
||||||
125-EnterpriseS
|
|
||||||
126-EnterpriseSN
|
|
||||||
145-ServerDatacenterACor
|
|
||||||
146-ServerStandardACor
|
|
||||||
161-ProfessionalWorkstation
|
|
||||||
162-ProfessionalWorkstationN
|
|
||||||
164-ProfessionalEducation
|
|
||||||
165-ProfessionalEducationN
|
|
||||||
168-ServerAzureCor
|
|
||||||
171-EnterpriseG
|
|
||||||
172-EnterpriseGN
|
|
||||||
175-ServerRdsh
|
|
||||||
183-CloudE
|
|
||||||
) do for /f "tokens=1,2 delims=-" %%A in ("%%#") do (
|
|
||||||
if %osSKU%==%%A set "osedition=%%B"
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Generic Volume License Key (GVLK) List
|
|
||||||
|
|
||||||
:: Windows 10 [RS5]
|
|
||||||
:32d2fab3-e4a8-42c2-923b-4bf4fd13e6ee
|
|
||||||
set "key=M7XTQ-FN8P6-TTKYV-9D4CC-J462D" &:: Enterprise LTSC 2019
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:7103a333-b8c8-49cc-93ce-d37c09687f92
|
|
||||||
set "key=92NFX-8DJQP-P6BBQ-THF9C-7CG2H" &:: Enterprise LTSC 2019 N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ec868e65-fadf-4759-b23e-93fe37f2cc29
|
|
||||||
set "key=CPWHC-NT2C7-VYW78-DHDB2-PG3GK" &:: Enterprise for Virtual Desktops
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:0df4f814-3f57-4b8b-9a9d-fddadcd69fac
|
|
||||||
set "key=NBTWJ-3DR69-3C4V8-C26MC-GQ9M6" &:: Lean
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows 10 [RS3]
|
|
||||||
:82bbc092-bc50-4e16-8e18-b74fc486aec3
|
|
||||||
set "key=NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J" &:: Pro Workstation
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:4b1571d3-bafb-4b40-8087-a961be2caf65
|
|
||||||
set "key=9FNHH-K3HBT-3W4TD-6383H-6XYWF" &:: Pro Workstation N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:e4db50ea-bda1-4566-b047-0ca50abc6f07
|
|
||||||
set "key=7NBT4-WGBQX-MP4H7-QXFF8-YP3KX" &:: Enterprise Remote Server
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows 10 [RS2]
|
|
||||||
:e0b2d383-d112-413f-8a80-97f373a5820c
|
|
||||||
set "key=YYVX9-NTFWV-6MDM3-9PT4T-4M68B" &:: Enterprise G
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:e38454fb-41a4-4f59-a5dc-25080e354730
|
|
||||||
set "key=44RPN-FTY23-9VTTB-MP9BX-T84FV" &:: Enterprise G N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows 10 [RS1]
|
|
||||||
:2d5a5a60-3040-48bf-beb0-fcd770c20ce0
|
|
||||||
set "key=DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ" &:: Enterprise 2016 LTSB
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:9f776d83-7156-45b2-8a5c-359b9c9f22a3
|
|
||||||
set "key=QFFDN-GRT3P-VKWWX-X7T3R-8B639" &:: Enterprise 2016 LTSB N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:3f1afc82-f8ac-4f6c-8005-1d233e606eee
|
|
||||||
set "key=6TP4R-GNPTD-KYYHQ-7B7DP-J447Y" &:: Pro Education
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:5300b18c-2e33-4dc2-8291-47ffcec746dd
|
|
||||||
set "key=YVWGF-BXNMC-HTQYQ-CPQ99-66QFC" &:: Pro Education N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows 10 [TH]
|
|
||||||
:58e97c99-f377-4ef1-81d5-4ad5522b5fd8
|
|
||||||
set "key=TX9XD-98N7V-6WMQ6-BX7FG-H8Q99" &:: Home
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:7b9e1751-a8da-4f75-9560-5fadfe3d8e38
|
|
||||||
set "key=3KHY7-WNT83-DGQKR-F7HPR-844BM" &:: Home N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:cd918a57-a41b-4c82-8dce-1a538e221a83
|
|
||||||
set "key=7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH" &:: Home Single Language
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:a9107544-f4a0-4053-a96a-1479abdef912
|
|
||||||
set "key=PVMJN-6DFY6-9CCP6-7BKTT-D3WVR" &:: Home China
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:2de67392-b7a7-462a-b1ca-108dd189f588
|
|
||||||
set "key=W269N-WFGWX-YVC9B-4J6C9-T83GX" &:: Pro
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:a80b5abf-76ad-428b-b05d-a47d2dffeebf
|
|
||||||
set "key=MH37W-N47XK-V7XM9-C7227-GCQG9" &:: Pro N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:e0c42288-980c-4788-a014-c080d2e1926e
|
|
||||||
set "key=NW6C2-QMPVW-D7KKK-3GKT6-VCFB2" &:: Education
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:3c102355-d027-42c6-ad23-2e7ef8a02585
|
|
||||||
set "key=2WH4N-8QGBV-H22JP-CT43Q-MDWWJ" &:: Education N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:73111121-5638-40f6-bc11-f1d7b0d64300
|
|
||||||
set "key=NPPR9-FWDCX-D2C8J-H872K-2YT43" &:: Enterprise
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:e272e3e2-732f-4c65-a8f0-484747d0d947
|
|
||||||
set "key=DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4" &:: Enterprise N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:7b51a46c-0c04-4e8f-9af4-8496cca90d5e
|
|
||||||
set "key=WNMTR-4C88C-JK8YV-HQ7T2-76DF9" &:: Enterprise 2015 LTSB
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:87b838b7-41b6-4590-8318-5797951d8529
|
|
||||||
set "key=2F77B-TNFGY-69QQF-B8YKP-D69TJ" &:: Enterprise 2015 LTSB N
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows Server 2019 [RS5]
|
|
||||||
:de32eafd-aaee-4662-9444-c1befb41bde2
|
|
||||||
set "key=N69G4-B89J2-4G8F4-WWYCC-J464C" &:: Standard
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:34e1ae55-27f8-4950-8877-7a03be5fb181
|
|
||||||
set "key=WMDGN-G9PQG-XVVXX-R3X43-63DFG" &:: Datacenter
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:034d3cbb-5d4b-4245-b3f8-f84571314078
|
|
||||||
set "key=WVDHN-86M7X-466P6-VHXV7-YY726" &:: Essentials
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:a99cc1f0-7719-4306-9645-294102fbff95
|
|
||||||
set "key=FDNH6-VW9RW-BXPJ7-4XTYG-239TB" &:: Azure Core
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:73e3957c-fc0c-400d-9184-5f7b6f2eb409
|
|
||||||
set "key=N2KJX-J94YW-TQVFB-DG9YT-724CC" &:: Standard ACor
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:90c362e5-0da1-4bfd-b53b-b87d309ade43
|
|
||||||
set "key=6NMRW-2C8FM-D24W7-TQWMY-CWH2D" &:: Datacenter ACor
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:8de8eb62-bbe0-40ac-ac17-f75595071ea3
|
|
||||||
set "key=GRFBW-QNDC4-6QBHG-CCK3B-2PR88" &:: ServerARM64
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows Server 2016 [RS4]
|
|
||||||
:43d9af6e-5e86-4be8-a797-d072a046896c
|
|
||||||
set "key=K9FYF-G6NCK-73M32-XMVPY-F9DRR" &:: ServerARM64
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows Server 2016 [RS3]
|
|
||||||
:61c5ef22-f14f-4553-a824-c4b31e84b100
|
|
||||||
set "key=PTXN8-JFHJM-4WC78-MPCBR-9W4KR" &:: Standard ACor
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:e49c08e7-da82-42f8-bde2-b570fbcae76c
|
|
||||||
set "key=2HXDN-KRXHB-GPYC7-YCKFJ-7FVDG" &:: Datacenter ACor
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:: Windows Server 2016 [RS1]
|
|
||||||
:8c1c5410-9f39-4805-8c9d-63a07706358f
|
|
||||||
set "key=WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY" &:: Standard
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:21c56779-b449-4d20-adfc-eece0e1ad74b
|
|
||||||
set "key=CB7KF-BWN84-R7R2Y-793K2-8XDDG" &:: Datacenter
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:2b5a1b0f-a5ab-4c54-ac2f-a6d94824a283
|
|
||||||
set "key=JCKRF-N37P4-C2D82-9YXRT-4M63B" &:: Essentials
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:7b4433f4-b1e7-4788-895a-c45378d38253
|
|
||||||
set "key=QN4C6-GBJD2-FB422-GHWJK-GJG2R" &:: Cloud Storage
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:3dbf341b-5f6c-4fa7-b936-699dce9e263f
|
|
||||||
set "key=VP34G-4NPPG-79JTQ-864T4-R3MQX" &:: Azure Core
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,345 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
[HWID] Digital License Activation:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- This activation is supported for Windows 10 ONLY.
|
|
||||||
- This activation does not store any files in your system.
|
|
||||||
- This activation is a permanent activation for your system Hardware.
|
|
||||||
|
|
||||||
- On a system, this activation can be created for all the supported editions, and all can be
|
|
||||||
linked to Microsoft account without any issues.
|
|
||||||
|
|
||||||
- Once a system is activated, this activation cannot be removed. (Because the license is stored in
|
|
||||||
the Microsoft servers and not in the user's system.)
|
|
||||||
|
|
||||||
- Any significant changes in the Hardware (such as a motherboard) may deactivate the system.
|
|
||||||
It is possible to reactivate a system that was deactivated because of significant hardware
|
|
||||||
changes, IF your activation, was linked to an online Microsoft account.
|
|
||||||
|
|
||||||
- For activation to succeed, the Windows Update Service and internet connectivity must be enabled.
|
|
||||||
If you are trying to activate without these conditions being met, then the system will auto-
|
|
||||||
activate later when the conditions are met.
|
|
||||||
|
|
||||||
- Auto activation scenario after the Windows reinstall:
|
|
||||||
- The Internet is required. (Only at the time of activation)
|
|
||||||
- The system will auto-activate if Retail (Consumer) media was used for the installation.
|
|
||||||
- The system will NOT auto-activate if VL (Business) media was used for the installation.
|
|
||||||
In this case, the user will have to insert that windows edition Retail/OEM key (find keys below
|
|
||||||
in this page) to activate, if the user doesn't wish to activate again using this script.
|
|
||||||
|
|
||||||
- Possible reasons for activation failure:
|
|
||||||
- The Internet is not connected.
|
|
||||||
- Windows update service is disabled.
|
|
||||||
- Use of a VPN, and/or a privacy-based hosts file, firewall rules.
|
|
||||||
- Corrupt system files.
|
|
||||||
- Microsoft servers block the activation request from some countries such as Iran.
|
|
||||||
- Rarely, Microsoft's activation servers are the problem.
|
|
||||||
- Some machines are not able to generate GenuineTicket.xml file using gatherosstate.exe
|
|
||||||
The reason is unknown (to me). Please contact me if it happens to you.
|
|
||||||
|
|
||||||
* Troubleshoot guide is listed below.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
Documentation by @mspaintmsi
|
|
||||||
|
|
||||||
Included topics-
|
|
||||||
|
|
||||||
How does it work?
|
|
||||||
Is it possible that Microsoft can block these Digital Licenses (HWID)?
|
|
||||||
|
|
||||||
https://pastebin.com/raw/7Xyaf15Z
|
|
||||||
Mirror Link-
|
|
||||||
https://textuploader.com/1dg8d/raw
|
|
||||||
|
|
||||||
And
|
|
||||||
|
|
||||||
https://github.com/massgravel/MASSGRAVE
|
|
||||||
https://gitlab.com/massgrave/massgrave
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Supported Products:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
Windows 10 Versions that can be activated:
|
|
||||||
|
|
||||||
Core
|
|
||||||
CoreCountrySpecific
|
|
||||||
CoreN
|
|
||||||
CoreSingleLanguage
|
|
||||||
Education
|
|
||||||
EducationN
|
|
||||||
Enterprise
|
|
||||||
EnterpriseN
|
|
||||||
EnterpriseS [LTSB 2015 & 2016]
|
|
||||||
EnterpriseSN [LTSB 2015 & 2016]
|
|
||||||
Professional
|
|
||||||
ProfessionalEducation
|
|
||||||
ProfessionalEducationN
|
|
||||||
ProfessionalN
|
|
||||||
ProfessionalWorkstation
|
|
||||||
ProfessionalWorkstationN
|
|
||||||
ServerRdsh
|
|
||||||
IoTEnterprise
|
|
||||||
|
|
||||||
|
|
||||||
Note - X86-X64 and ARM64 architecture systems are supported.
|
|
||||||
- Any Evaluation version of Windows (i.e. 'EVAL' LTSB/C) cannot be activated.
|
|
||||||
- LTSC 2019 is not supported.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Switches for the Script:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- To run the script in unattended mode, use /u parameter.
|
|
||||||
"HWID_Activation.cmd" /u
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
File Details:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
fabb5a0fc1e6a372219711152291339af36ed0b5 *gatherosstate.exe Virus Total = 0/71
|
|
||||||
ca3a51fdfc8749b8be85f7904b1c238a6dfba135 *slc.dll Virus Total = 0/68
|
|
||||||
578364cb2319da7999acd8c015b4ce8da8f1b282 *ARM64_gatherosstate.exe Virus Total = 0/69
|
|
||||||
5dbea3a580cf60391453a04a5c910a3ceca2b810 *ARM64_slc.dll Virus Total = 0/67
|
|
||||||
48d928b1bec25a56fe896c430c2c034b7866aa7a *ClipUp.exe Virus Total = 0/68
|
|
||||||
|
|
||||||
Virus Total Report Date: 2020-01-21
|
|
||||||
|
|
||||||
- File Sources:
|
|
||||||
|
|
||||||
- ClipUp.exe (Original):
|
|
||||||
From Windows server 2016 x64 ISO
|
|
||||||
|
|
||||||
- gatherosstate.exe (Original):
|
|
||||||
From Windows 10 x86 14393 ADK
|
|
||||||
|
|
||||||
- ARM64_gatherosstate.exe (Original):
|
|
||||||
From Windows 10 ARM64 18362 ISO
|
|
||||||
|
|
||||||
- ARM64_slc.dll and slc.dll:
|
|
||||||
|
|
||||||
Original slshim
|
|
||||||
https://github.com/vyvojar/slshim
|
|
||||||
|
|
||||||
Improved by @mspaintmsi
|
|
||||||
https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
https://github.com/massgravel/MASSGRAVE
|
|
||||||
https://gitlab.com/massgrave/massgrave
|
|
||||||
|
|
||||||
Source code is included.
|
|
||||||
slc.dll is based on Integrated_Patcher_2 method.
|
|
||||||
It is currently in use in HWID/KMS38 Activation script.
|
|
||||||
|
|
||||||
____________________________________________________________________________________________________
|
|
||||||
|
|
||||||
You can safely delete the following files if it's not required for you.
|
|
||||||
|
|
||||||
ClipUp.exe - Required to KMS38 activate Server Cor and Acor editions.
|
|
||||||
ARM64_gatherosstate.exe and ARM64_slc.dll - Required to activate ARM64 Arch Windows 10.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Manual Activation Process:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- Prerequisite:
|
|
||||||
|
|
||||||
For Windows 10 x86-x64 system, you need following files,
|
|
||||||
fabb5a0fc1e6a372219711152291339af36ed0b5 *gatherosstate.exe
|
|
||||||
ca3a51fdfc8749b8be85f7904b1c238a6dfba135 *slc.dll
|
|
||||||
|
|
||||||
For Windows 10 ARM64 system, you need following files,
|
|
||||||
578364cb2319da7999acd8c015b4ce8da8f1b282 *ARM64_gatherosstate.exe
|
|
||||||
5dbea3a580cf60391453a04a5c910a3ceca2b810 *ARM64_slc.dll
|
|
||||||
* Rename the ARM64 files to gatherosstate.exe and slc.dll respectively.
|
|
||||||
|
|
||||||
|
|
||||||
Make a folder named 'Files' in C drive, [C:\Files] and copy the required files in that folder.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Retail/OEM Keys Windows 10 Editions
|
|
||||||
|
|
||||||
YTMG3-N6DKC-DKB77-7M9GH-8HVX7 Core
|
|
||||||
4CPRK-NM3K3-X6XXQ-RXX86-WXCHW CoreN
|
|
||||||
N2434-X9D7W-8PF6X-8DV9T-8TYMD CoreCountrySpecific
|
|
||||||
BT79Q-G7N6G-PGBYW-4YWX6-6F4BT CoreSingleLanguage
|
|
||||||
YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY Education
|
|
||||||
84NGF-MHBT6-FXBX8-QWJK7-DRR8H EducationN
|
|
||||||
XGVPP-NMH47-7TTHJ-W3FW7-8HV2C Enterprise
|
|
||||||
3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT EnterpriseN
|
|
||||||
FWN7H-PF93Q-4GGP8-M8RF3-MDWWW EnterpriseS [LTSB 2015]
|
|
||||||
8V8WN-3GXBH-2TCMG-XHRX3-9766K EnterpriseSN [LTSB 2015]
|
|
||||||
NK96Y-D9CD8-W44CQ-R8YTK-DYJWX EnterpriseS [LTSB 2016]
|
|
||||||
2DBW3-N2PJG-MVHW3-G7TDK-9HKR4 EnterpriseSN [LTSB 2016]
|
|
||||||
VK7JG-NPHTM-C97JM-9MPGT-3V66T Professional
|
|
||||||
2B87N-8KFHP-DKV6R-Y2C8J-PKCKT ProfessionalN
|
|
||||||
8PTT6-RNW4C-6V7J2-C2D3X-MHBPB ProfessionalEducation
|
|
||||||
GJTYN-HDMQY-FRR76-HVGC7-QPF8P ProfessionalEducationN
|
|
||||||
DXG7C-N36C4-C4HTG-X4T3X-2YV77 ProfessionalWorkstation
|
|
||||||
WYPNQ-8C467-V2W6J-TX4WX-WT2RQ ProfessionalWorkstationN
|
|
||||||
NJCF7-PW8QT-3324D-688JX-2YV66 ServerRdsh
|
|
||||||
XQQYW-NFFMW-XJPBH-K8732-CKFFD IoTEnterprise
|
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- Make sure the Windows Update Service and internet are both enabled.
|
|
||||||
- Open a command prompt (run cmd.exe) as administrator, and enter following listed commands in the
|
|
||||||
the sequence in which they are given.
|
|
||||||
- Enter Retail/OEM Key, (Replace '%key%' with the key from the above list) with the following command:
|
|
||||||
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs /ipk %key%
|
|
||||||
|
|
||||||
- Make sure slc.dll and gatherosstate.exe files are located in the folder, "C:\Files" and enter
|
|
||||||
the following commands to generate GenuineTicket.xml file.
|
|
||||||
|
|
||||||
For x86-x64 systems,
|
|
||||||
|
|
||||||
pushd "C:\Files"
|
|
||||||
rundll32 "C:\Files\slc.dll",PatchGatherosstate
|
|
||||||
call "C:\Files\gatherosstatemodified.exe"
|
|
||||||
|
|
||||||
For ARM64 systems,
|
|
||||||
|
|
||||||
call "C:\Files\gatherosstate.exe"
|
|
||||||
|
|
||||||
- Now a GenuineTicket.xml file should be created in the folder "C:\Files\", copy and paste this file in the
|
|
||||||
folder named, "C:\ProgramData\Microsoft\Windows\ClipSVC\GenuineTicket\"
|
|
||||||
|
|
||||||
- Now apply this ticket using the following commands in this sequence:
|
|
||||||
|
|
||||||
net stop ClipSVC
|
|
||||||
net start ClipSVC
|
|
||||||
|
|
||||||
- Activate Windows with the following command:
|
|
||||||
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs /ato
|
|
||||||
|
|
||||||
- Check Activation Status with the following command:
|
|
||||||
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs /xpr
|
|
||||||
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
* Note - [clipup -v -o -altto <ticket_path>] method to apply the ticket was not suggested because
|
|
||||||
of the issues in case the username have spaces or non English characters.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Troubleshoot activation issues:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- Make sure the internet is connected.
|
|
||||||
|
|
||||||
- Open CMD and type services.msc and hit Enter, When Services opens up, look for 'Windows Update'
|
|
||||||
and Make sure its startup type is set to Automatic. Some update blocking tools and scripts
|
|
||||||
usually permanently block the update service, you need to make sure it's not the case.
|
|
||||||
|
|
||||||
- VPN, privacy-based hosts and/or firewall rules may cause problems with the activation. Disable
|
|
||||||
them if you are facing problems in activation.
|
|
||||||
|
|
||||||
- Reboot the system.
|
|
||||||
|
|
||||||
- Now run the script to activate Windows 10, and if unsuccessful,
|
|
||||||
Try the troubleshoot button in the settings activation page.
|
|
||||||
If still unsuccessful then read additional troubleshoot options listed below.
|
|
||||||
|
|
||||||
--------------------------------------------
|
|
||||||
|
|
||||||
- Open CMD as administrator, and enter the following command:
|
|
||||||
|
|
||||||
Dism /online /Cleanup-Image /RestoreHealth
|
|
||||||
|
|
||||||
- After it's done, reboot the system and open CMD as administrator again, and enter the
|
|
||||||
following command:
|
|
||||||
|
|
||||||
sfc.exe /scannow
|
|
||||||
|
|
||||||
- After it's done, reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
open CMD as administrator again, and enter the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /rearm
|
|
||||||
|
|
||||||
- Reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
You may try to rebuild licensing Tokens.dat as suggested in https://support.microsoft.com/en-us/help/2736303
|
|
||||||
(this will require to repair Office afterwards.)
|
|
||||||
|
|
||||||
- Reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
try cleaning the clipup using the following commands, it will reset all the HWID/KMS38 installed
|
|
||||||
licences in the current system installation. open CMD as administrator again, and enter the
|
|
||||||
following commands one by one:
|
|
||||||
|
|
||||||
net stop ClipSVC
|
|
||||||
rundll32 clipc.dll,ClipCleanUpState
|
|
||||||
|
|
||||||
- Reboot the system (important) and run the activation script, and if unsuccessful,
|
|
||||||
Make sure hardware component proper drivers are installed, check manufacturer site/Windows-
|
|
||||||
update for drivers.
|
|
||||||
|
|
||||||
- After it's done, reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
it may be time to start over from the very beginning and do a clean install of windows :D
|
|
||||||
|
|
||||||
-------------------------------------------
|
|
||||||
Activation is blocked in some countries -
|
|
||||||
-------------------------------------------
|
|
||||||
|
|
||||||
- Microsoft servers block the activation request from some countries such as Iran,
|
|
||||||
To activate the system in those countries, follow the below steps,
|
|
||||||
- In the settings app, Change Region and Timezone to the USA location and use a VPN, choose the
|
|
||||||
the location of the USA. Now run the script, it should activate now.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- Some machines are not able to generate GenuineTicket.xml file using gatherosstate.exe
|
|
||||||
The reason is unknown (to me). Please contact me if it happens to you.
|
|
||||||
|
|
||||||
=========================================================================================================
|
|
||||||
Credits:
|
|
||||||
=========================================================================================================
|
|
||||||
|
|
||||||
@mspaintmsi Original co-authors of HWID/KMS38 Activation without KMS or predecessor install/upgrade.
|
|
||||||
and Created various methods for HWID/KMS38 Activation
|
|
||||||
*Anonymous https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
https://github.com/massgravel/MASSGRAVE
|
|
||||||
https://gitlab.com/massgrave/massgrave
|
|
||||||
|
|
||||||
@vyvojar Original slshim (slc.dll)
|
|
||||||
https://github.com/vyvojar/slshim/releases
|
|
||||||
|
|
||||||
---------------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
HWID/KMS38 methods Suggestions and improvements:-
|
|
||||||
|
|
||||||
@sponpa New ideas for the HWID/KM38 Generation
|
|
||||||
https://www.nsaneforums.com/topic/316668--/page/21/?tab=comments#comment-1431257
|
|
||||||
|
|
||||||
@leitek8 Improvements for the slc.dll
|
|
||||||
https://www.nsaneforums.com/topic/316668--/page/22/?tab=comments#comment-1438005
|
|
||||||
|
|
||||||
---------------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Kind Help:-
|
|
||||||
|
|
||||||
Thanks for having my back and answering all of my queries. (In no particular order)
|
|
||||||
|
|
||||||
@AveYo aka @BAU, @sponpa, @mspaintmsi @RPO, @leitek8, @mxman2k, @Yen, @abbodi1406
|
|
||||||
|
|
||||||
@BorrowedWifi for providing support in fixing English grammar errors in the Read Me.
|
|
||||||
@Chibi ANUBIS and @smashed for testing scripts for ARM64 system.
|
|
||||||
|
|
||||||
Special thanks to @abbodi1406 for providing the great help.
|
|
||||||
|
|
||||||
---------------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
|
|
||||||
Homepages-
|
|
||||||
NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
||||||
GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
|
|
||||||
Maintained by @WindowsAddict
|
|
||||||
|
|
||||||
P.S. I (@WindowsAddict) did not help in the development of HWID/KMS38 Activation in any way, I only
|
|
||||||
manage batch script tool which is based on the above mentioned original co-authors activation methods.
|
|
||||||
|
|
||||||
=========================================================================================================
|
|
@ -1,358 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
KMS38 Activation:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- This activation method activates Windows 10 and Windows Server (14393 and later builds),
|
|
||||||
until the year 2038.
|
|
||||||
- This activation method does not store any files on the system.
|
|
||||||
|
|
||||||
- Make sure the following things have been accounted for, before applying KMS38 Activation:
|
|
||||||
- Before the activation, if any KMS activator is installed, then make sure to uninstall it
|
|
||||||
completely.
|
|
||||||
- After KMS38 activation for the Windows Operating System has been achieved, if you want to
|
|
||||||
additionally, use the 180 Days KMS Activator for MS Office, then you must make sure that
|
|
||||||
it (the 180 Days KMS Activator for MS Office) is compatible with Windows KMS38 activation.
|
|
||||||
FYI, the following activators are compatible and can activate Office
|
|
||||||
without disrupting the Windows KMS38 activation.
|
|
||||||
|
|
||||||
KMS_VL_ALL by @abbodi1406 https://forums.mydigitallife.net/posts/838808
|
|
||||||
Online KMS Activation Script https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
|
|
||||||
- Any KMS Activator which is not compatible with KMS38, may overwrite the KMS38 activation for
|
|
||||||
Windows with its own 180 days activation, thereby destroying the KMS38 activation for Windows.
|
|
||||||
To prevent this accidental overwriting, you can apply KMS38 protection for Windows, check
|
|
||||||
the Extras folder for more details.
|
|
||||||
|
|
||||||
- Why is the script setting the specific KMS host to 127.0.0.2 (localhost)?
|
|
||||||
- By doing this, global KMS IP can not replace KMS38 activation but can be used with Office and
|
|
||||||
other Windows Editions.
|
|
||||||
- In case you don't like it, you can remove it with following codes, open CMD as admin and enter,
|
|
||||||
|
|
||||||
set "SPPk=SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform"
|
|
||||||
reg delete "HKLM\%SPPk%\55c92734-d682-4d71-983e-d6ec3f16059f" /f
|
|
||||||
reg delete "HKU\S-1-5-20\%SPPk%\55c92734-d682-4d71-983e-d6ec3f16059f" /f
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
Documentation by @mspaintmsi
|
|
||||||
|
|
||||||
Included topics-
|
|
||||||
|
|
||||||
How does it work?
|
|
||||||
|
|
||||||
https://pastebin.com/raw/7Xyaf15Z
|
|
||||||
Mirror Link-
|
|
||||||
https://textuploader.com/1dg8d/raw
|
|
||||||
|
|
||||||
And
|
|
||||||
|
|
||||||
https://github.com/massgravel/MASSGRAVE
|
|
||||||
https://gitlab.com/massgrave/massgrave
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Supported Products:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
Windows 10:
|
|
||||||
|
|
||||||
Core
|
|
||||||
CoreCountrySpecific
|
|
||||||
CoreN
|
|
||||||
CoreSingleLanguage
|
|
||||||
Education
|
|
||||||
EducationN
|
|
||||||
Enterprise
|
|
||||||
EnterpriseG
|
|
||||||
EnterpriseGN
|
|
||||||
EnterpriseN
|
|
||||||
EnterpriseS [LTSB 2016 & LTSC 2019]
|
|
||||||
EnterpriseSN [LTSB 2016 & LTSC 2019]
|
|
||||||
Professional
|
|
||||||
ProfessionalEducation
|
|
||||||
ProfessionalEducationN
|
|
||||||
ProfessionalN
|
|
||||||
ProfessionalWorkstation
|
|
||||||
ProfessionalWorkstationN
|
|
||||||
ServerRdsh
|
|
||||||
|
|
||||||
------------------------
|
|
||||||
|
|
||||||
Windows Server:
|
|
||||||
|
|
||||||
ServerCloudStorage [Server 2016]
|
|
||||||
ServerDatacenter [Server 2016 & 2019]
|
|
||||||
ServerDatacenterCor [Server 2016 & 2019]
|
|
||||||
ServerSolution [Server 2016 & 2019]
|
|
||||||
ServerSolutionCor [Server 2016 & 2019]
|
|
||||||
ServerStandard [Server 2016 & 2019]
|
|
||||||
ServerStandardCor [Server 2016 & 2019]
|
|
||||||
ServerAzureCor [Server 2016 & 2019]
|
|
||||||
ServerDatacenterACor [All versions]
|
|
||||||
ServerStandardACor [All versions]
|
|
||||||
|
|
||||||
|
|
||||||
Note - X86-X64 and ARM64 architecture systems are supported.
|
|
||||||
- Any Evaluation version of Windows and Server (i.e. 'EVAL' LTSB/C) cannot be activated.
|
|
||||||
- KMS38 only supports Windows/server version 14393 (1607) and newer versions.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Switches in the Script:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- For unattended mode, run the script with /u parameter.
|
|
||||||
|
|
||||||
"KMS38_Activation.cmd" /u
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
File Details:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
fabb5a0fc1e6a372219711152291339af36ed0b5 *gatherosstate.exe Virus Total = 0/71
|
|
||||||
ca3a51fdfc8749b8be85f7904b1c238a6dfba135 *slc.dll Virus Total = 0/68
|
|
||||||
578364cb2319da7999acd8c015b4ce8da8f1b282 *ARM64_gatherosstate.exe Virus Total = 0/69
|
|
||||||
5dbea3a580cf60391453a04a5c910a3ceca2b810 *ARM64_slc.dll Virus Total = 0/67
|
|
||||||
48d928b1bec25a56fe896c430c2c034b7866aa7a *ClipUp.exe Virus Total = 0/68
|
|
||||||
|
|
||||||
Virus Total Report Date: 2020-01-21
|
|
||||||
|
|
||||||
- File Sources:
|
|
||||||
|
|
||||||
- ClipUp.exe (Original):
|
|
||||||
From Windows server 2016 x64 ISO
|
|
||||||
|
|
||||||
- gatherosstate.exe (Original):
|
|
||||||
From Windows 10 x86 14393 ADK
|
|
||||||
|
|
||||||
- ARM64_gatherosstate.exe (Original):
|
|
||||||
From Windows 10 ARM64 18362 ISO
|
|
||||||
|
|
||||||
- ARM64_slc.dll and slc.dll:
|
|
||||||
|
|
||||||
Original slshim
|
|
||||||
https://github.com/vyvojar/slshim
|
|
||||||
|
|
||||||
Improved by @mspaintmsi
|
|
||||||
https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
https://github.com/massgravel/MASSGRAVE
|
|
||||||
https://gitlab.com/massgrave/massgrave
|
|
||||||
|
|
||||||
Source code is included.
|
|
||||||
slc.dll is based on Integrated_Patcher_2 method.
|
|
||||||
It is currently in use in HWID/KMS38 Activation script.
|
|
||||||
|
|
||||||
____________________________________________________________________________________________________
|
|
||||||
|
|
||||||
You can safely delete the following files if it's not required for you.
|
|
||||||
|
|
||||||
ClipUp.exe - Required to KMS38 activate Server Cor and Acor editions.
|
|
||||||
ARM64_gatherosstate.exe and ARM64_slc.dll - Required to activate ARM64 Arch Windows 10.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Manual Activation Process:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- Prerequisite:
|
|
||||||
|
|
||||||
For Windows 10 / Server x86-x64 system, you need following files,
|
|
||||||
48d928b1bec25a56fe896c430c2c034b7866aa7a *ClipUp.exe
|
|
||||||
fabb5a0fc1e6a372219711152291339af36ed0b5 *gatherosstate.exe
|
|
||||||
ca3a51fdfc8749b8be85f7904b1c238a6dfba135 *slc.dll
|
|
||||||
* ClipUp.exe is only required to activate Server Cor and Acor editions.
|
|
||||||
|
|
||||||
For Windows 10 ARM64 system, you need following files,
|
|
||||||
578364cb2319da7999acd8c015b4ce8da8f1b282 *ARM64_gatherosstate.exe
|
|
||||||
5dbea3a580cf60391453a04a5c910a3ceca2b810 *ARM64_slc.dll
|
|
||||||
* Rename the ARM64 files to gatherosstate.exe and slc.dll respectively.
|
|
||||||
|
|
||||||
Make a folder named 'Files' in C drive, [C:\Files] and copy the required files in that folder.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
GVLK Windows 10 Editions
|
|
||||||
|
|
||||||
TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 Core
|
|
||||||
PVMJN-6DFY6-9CCP6-7BKTT-D3WVR CoreCountrySpecific
|
|
||||||
3KHY7-WNT83-DGQKR-F7HPR-844BM CoreN
|
|
||||||
7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH CoreSingleLanguage
|
|
||||||
NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 Education
|
|
||||||
2WH4N-8QGBV-H22JP-CT43Q-MDWWJ EducationN
|
|
||||||
NPPR9-FWDCX-D2C8J-H872K-2YT43 Enterprise
|
|
||||||
YYVX9-NTFWV-6MDM3-9PT4T-4M68B EnterpriseG
|
|
||||||
44RPN-FTY23-9VTTB-MP9BX-T84FV EnterpriseGN
|
|
||||||
DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 EnterpriseN
|
|
||||||
DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ EnterpriseS [LTSB 2016]
|
|
||||||
M7XTQ-FN8P6-TTKYV-9D4CC-J462D EnterpriseS [LTSC 2019]
|
|
||||||
QFFDN-GRT3P-VKWWX-X7T3R-8B639 EnterpriseSN [LTSB 2016]
|
|
||||||
92NFX-8DJQP-P6BBQ-THF9C-7CG2H EnterpriseSN [LTSC 2019]
|
|
||||||
W269N-WFGWX-YVC9B-4J6C9-T83GX Professional
|
|
||||||
6TP4R-GNPTD-KYYHQ-7B7DP-J447Y ProfessionalEducation
|
|
||||||
YVWGF-BXNMC-HTQYQ-CPQ99-66QFC ProfessionalEducationN
|
|
||||||
MH37W-N47XK-V7XM9-C7227-GCQG9 ProfessionalN
|
|
||||||
NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J ProfessionalWorkstation
|
|
||||||
9FNHH-K3HBT-3W4TD-6383H-6XYWF ProfessionalWorkstationN
|
|
||||||
7NBT4-WGBQX-MP4H7-QXFF8-YP3KX ServerRdsh [Less than 1809]
|
|
||||||
CPWHC-NT2C7-VYW78-DHDB2-PG3GK ServerRdsh [Greater or Equal 1809]
|
|
||||||
|
|
||||||
GVLK Windows Server Editions
|
|
||||||
|
|
||||||
QN4C6-GBJD2-FB422-GHWJK-GJG2R ServerCloudStorage [Server 2016]
|
|
||||||
CB7KF-BWN84-R7R2Y-793K2-8XDDG ServerDatacenter, ServerDatacenterCor [Server 2016]
|
|
||||||
WMDGN-G9PQG-XVVXX-R3X43-63DFG ServerDatacenter, ServerDatacenterCor [Server 2019]
|
|
||||||
JCKRF-N37P4-C2D82-9YXRT-4M63B ServerSolution, ServerSolutionCor [Server 2016]
|
|
||||||
WVDHN-86M7X-466P6-VHXV7-YY726 ServerSolution, ServerSolutionCor [Server 2019]
|
|
||||||
WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY ServerStandard, ServerStandardCor [Server 2016]
|
|
||||||
N69G4-B89J2-4G8F4-WWYCC-J464C ServerStandard, ServerStandardCor [Server 2019]
|
|
||||||
VP34G-4NPPG-79JTQ-864T4-R3MQX ServerAzureCor [Server 2016]
|
|
||||||
FDNH6-VW9RW-BXPJ7-4XTYG-239TB ServerAzureCor [Server 2019]
|
|
||||||
6Y6KB-N82V8-D8CQV-23MJW-BWTG6 ServerDatacenterACor [Server 1709 and later]
|
|
||||||
DPCNP-XQFKJ-BJF7R-FRC8D-GF6G4 ServerStandardACor [Server 1709 and later]
|
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- Make sure to properly and completely remove any previously-installed KMS activator if one already exists.
|
|
||||||
- Open CMD as Admin, and enter the following listed commands in the sequence in which they are given.
|
|
||||||
- Enter Generic Volume License Key (GVLK) (Replace '%key%' with the key from the above list)
|
|
||||||
with the following command:
|
|
||||||
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs /ipk %key%
|
|
||||||
|
|
||||||
- Set specific KMS host to 127.0.0.2 [Localhost] with the following command: (Run one by one)
|
|
||||||
- By doing this, the global KMS IP can not replace the KMS38 activation, and can then safely be used with MS Office
|
|
||||||
and other Windows Editions.
|
|
||||||
- It's optional.
|
|
||||||
|
|
||||||
set spp=SoftwareLicensingProduct
|
|
||||||
for /f "tokens=2 delims==" %G in ('"wmic path %spp% where (Description like '%%KMSCLIENT%%' and Name like 'Windows%%' and PartialProductKey is not NULL) get ID /VALUE"') do (set app=%G)
|
|
||||||
wmic path %spp% where ID='%app%' call ClearKeyManagementServiceMachine
|
|
||||||
wmic path %spp% where ID='%app%' call ClearKeyManagementServicePort
|
|
||||||
wmic path %spp% where ID='%app%' call SetKeyManagementServiceMachine MachineName="127.0.0.2"
|
|
||||||
wmic path %spp% where ID='%app%' call SetKeyManagementServicePort 1688
|
|
||||||
|
|
||||||
- Make sure slc.dll and gatherosstate.exe files are located in the folder, "C:\Files" and enter
|
|
||||||
following command to generate GenuineTicket.xml file.
|
|
||||||
|
|
||||||
call "C:\Files\gatherosstate.exe"
|
|
||||||
|
|
||||||
- Now a GenuineTicket.xml file should be created in the folder "C:\Files\", copy and paste this file in the
|
|
||||||
folder named, "C:\ProgramData\Microsoft\Windows\ClipSVC\GenuineTicket\"
|
|
||||||
|
|
||||||
- Now apply this ticket using the following commands in this sequence:
|
|
||||||
(In case of server cor and acor editions, copy the clipup.exe file to the folder "C:\Windows\System32\")
|
|
||||||
|
|
||||||
net stop ClipSVC
|
|
||||||
net start ClipSVC
|
|
||||||
|
|
||||||
- Check the expiry date of the activation with the following command:
|
|
||||||
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs /xpr
|
|
||||||
|
|
||||||
- If the expiry date is not in the year 2038, then enter the following command:
|
|
||||||
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs /rearm-app 55c92734-d682-4d71-983e-d6ec3f16059f
|
|
||||||
set spp=SoftwareLicensingProduct
|
|
||||||
for /f "tokens=2 delims==" %G in ('"wmic path %spp% where (Description like '%%KMSCLIENT%%' and Name like 'Windows%%' and PartialProductKey is not NULL) get ID /VALUE"') do (set app=%G)
|
|
||||||
cscript /nologo %windir%\system32\slmgr.vbs /rearm-sku %app%
|
|
||||||
|
|
||||||
- check expiry date again, now it should show activation until the year 2038.
|
|
||||||
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Troubleshoot activation issues:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- Make sure to completely remove any previously-installed KMS activators if any exist, before
|
|
||||||
installing KMS38 activation.
|
|
||||||
|
|
||||||
- Reboot the system.
|
|
||||||
|
|
||||||
- Now run the script to activate Windows 10, and if unsuccessful,
|
|
||||||
Try the troubleshoot button in settings activation page.
|
|
||||||
If still unsuccessful then read additional troubleshoot options listed below.
|
|
||||||
|
|
||||||
--------------------------------------------
|
|
||||||
|
|
||||||
- Open CMD as Admin, and enter the following command:
|
|
||||||
|
|
||||||
Dism /online /Cleanup-Image /RestoreHealth
|
|
||||||
|
|
||||||
- After its done, reboot the system and Open CMD as Admin, and enter the following command:
|
|
||||||
|
|
||||||
sfc.exe /scannow
|
|
||||||
|
|
||||||
- After it's done, reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
open CMD as administrator again, and enter the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /rearm
|
|
||||||
|
|
||||||
- Reboot the system (important) and run the activation script, and if unsuccessful,
|
|
||||||
You may try to rebuild licensing Tokens.dat as suggested in https://support.microsoft.com/en-us/help/2736303
|
|
||||||
(this will require to repair Office afterwards.)
|
|
||||||
|
|
||||||
- Reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
try cleaning the clipup using the following commands, it will reset all the HWID/KMS38 installed
|
|
||||||
licences in the current system installation. open CMD as administrator again, and enter the
|
|
||||||
following commands one by one:
|
|
||||||
|
|
||||||
net stop ClipSVC
|
|
||||||
rundll32 clipc.dll,ClipCleanUpState
|
|
||||||
|
|
||||||
- Reboot the system (important) and run the activation script, and if unsuccessful, it may be
|
|
||||||
time to start over from the very beginning and do a clean install of windows :D
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- Some machines are not able to generate GenuineTicket.xml file using gatherosstate.exe
|
|
||||||
The reason is unknown (to me). Please contact me if it happens to you.
|
|
||||||
|
|
||||||
=========================================================================================================
|
|
||||||
Credits:
|
|
||||||
=========================================================================================================
|
|
||||||
|
|
||||||
@mspaintmsi Original co-authors of HWID/KMS38 Activation without KMS or predecessor install/upgrade.
|
|
||||||
and Created various methods for HWID/KMS38 Activation
|
|
||||||
*Anonymous https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
https://github.com/massgravel/MASSGRAVE
|
|
||||||
https://gitlab.com/massgrave/massgrave
|
|
||||||
|
|
||||||
@vyvojar Original slshim (slc.dll)
|
|
||||||
https://github.com/vyvojar/slshim/releases
|
|
||||||
|
|
||||||
---------------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
HWID/KMS38 methods Suggestions and improvements:-
|
|
||||||
|
|
||||||
@sponpa New ideas for the HWID/KM38 Generation
|
|
||||||
https://www.nsaneforums.com/topic/316668--/page/21/?tab=comments#comment-1431257
|
|
||||||
|
|
||||||
@leitek8 Improvements for the slc.dll
|
|
||||||
https://www.nsaneforums.com/topic/316668--/page/22/?tab=comments#comment-1438005
|
|
||||||
|
|
||||||
---------------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Kind Help:-
|
|
||||||
|
|
||||||
Thanks for having my back and answering all of my queries. (In no particular order)
|
|
||||||
|
|
||||||
@AveYo aka @BAU, @sponpa, @mspaintmsi @RPO, @leitek8, @mxman2k, @Yen, @abbodi1406
|
|
||||||
|
|
||||||
@BorrowedWifi for providing support in fixing English grammar errors in the Read Me.
|
|
||||||
@Chibi ANUBIS and @smashed for testing scripts for ARM64 system.
|
|
||||||
|
|
||||||
Special thanks to @abbodi1406 for providing the great help.
|
|
||||||
|
|
||||||
---------------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
|
|
||||||
Homepages-
|
|
||||||
NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
||||||
GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
|
|
||||||
Maintained by @WindowsAddict
|
|
||||||
|
|
||||||
P.S. I (@WindowsAddict) did not help in the development of HWID/KMS38 Activation in any way, I only
|
|
||||||
manage batch script tool which is based on the above mentioned original co-authors activation methods.
|
|
||||||
|
|
||||||
=========================================================================================================
|
|
File diff suppressed because it is too large
Load Diff
@ -1,16 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
File Details:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
d30a0e4e5911d3ca705617d17225372731c770e2 *cleanosppx64.exe Virus Total = 0/66
|
|
||||||
39ed8659e7ca16aaccb86def94ce6cec4c847dd6 *cleanosppx86.exe Virus Total = 1/66
|
|
||||||
|
|
||||||
Virus Total Report Date: 12-11-2019
|
|
||||||
|
|
||||||
These files are official Microsoft files and in this script, these are used in
|
|
||||||
cleaning office license in C2R Retail office to VL conversion process.
|
|
||||||
|
|
||||||
The source of these files is the 'old' version of Microsoft Tool O15CTRRemove.diagcab
|
|
||||||
You can get the original file here https://s.put.re/WFuXpyWA.zip
|
|
||||||
|
|
||||||
====================================================================================================
|
|
Binary file not shown.
Binary file not shown.
@ -1,657 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
:: =======================================================================================================
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: =======================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
set Unattended=
|
|
||||||
set _args=
|
|
||||||
set _elev=
|
|
||||||
set RenTask=
|
|
||||||
set RenActTask=
|
|
||||||
set DeskMenu=
|
|
||||||
set _SkipWinAct=
|
|
||||||
set _end=
|
|
||||||
set "_arg1=%~1"
|
|
||||||
if not defined _arg1 goto :NoProgArgs
|
|
||||||
set "_args=%~1"
|
|
||||||
set "_arg2=%~2"
|
|
||||||
set "_arg3=%~3"
|
|
||||||
if defined _arg2 set "_args=%~1 %~2"
|
|
||||||
if defined _arg3 set "_args=%~1 %~2 %~3"
|
|
||||||
for %%A in (%_args%) do (
|
|
||||||
if /i "%%A"=="-el" set _elev=1
|
|
||||||
if /i "%%A"=="/swa" set _SkipWinAct=1
|
|
||||||
if /i "%%A"=="/rt" set RenTask=1&set Unattended=1
|
|
||||||
if /i "%%A"=="/rat" set RenActTask=1&set Unattended=1
|
|
||||||
if /i "%%A"=="/dcm" set DeskMenu=1&set Unattended=1)
|
|
||||||
:NoProgArgs
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "EchoRed=%_psc% write-host -back Black -fore Red"
|
|
||||||
set "EchoGreen=%_psc% write-host -back Black -fore Green"
|
|
||||||
set "EchoYellow=%_psc% write-host -back Black -fore DarkYellow"
|
|
||||||
set "ELine=echo: & %EchoRed% ==== ERROR ==== &echo:"
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
for %%i in (powershell.exe) do if "%%~$path:i"=="" (
|
|
||||||
echo: &echo ==== ERROR ==== &echo:
|
|
||||||
echo Powershell is not installed in the system.
|
|
||||||
echo Aborting...
|
|
||||||
set _end=1
|
|
||||||
goto Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 7600 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo Project is supported only for Windows 7/8/8.1/10 and their Server equivalent.
|
|
||||||
set _end=1
|
|
||||||
goto Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Elevate script as admin and pass arguments and preventing loop
|
|
||||||
:: Thanks to @hearywarlot [ https://forums.mydigitallife.net/threads/.74332/ ] for the VBS method.
|
|
||||||
:: Thanks to @abbodi1406 for the powershell method and solving special characters issue in file path name.
|
|
||||||
|
|
||||||
%nul% reg query HKU\S-1-5-19 && (
|
|
||||||
goto :Passed
|
|
||||||
) || (
|
|
||||||
if defined _elev goto :E_Admin
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_vbsf=%temp%\admin.vbs"
|
|
||||||
set _PSarg="""%~f0""" -el
|
|
||||||
if defined _args set _PSarg="""%~f0""" -el """%_args%"""
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
(
|
|
||||||
echo Set strArg=WScript.Arguments.Named
|
|
||||||
echo Set strRdlproc = CreateObject^("WScript.Shell"^).Exec^("rundll32 kernel32,Sleep"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& strRdlproc.ProcessId ^& "'"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& .ParentProcessId ^& "'"^)
|
|
||||||
echo If InStr ^(.CommandLine, WScript.ScriptName^) ^<^> 0 Then
|
|
||||||
echo strLine = Mid^(.CommandLine, InStr^(.CommandLine , "/File:"^) + Len^(strArg^("File"^)^) + 8^)
|
|
||||||
echo End If
|
|
||||||
echo End With
|
|
||||||
echo .Terminate
|
|
||||||
echo End With
|
|
||||||
echo CreateObject^("Shell.Application"^).ShellExecute "cmd.exe", "/c " ^& chr^(34^) ^& chr^(34^) ^& strArg^("File"^) ^& chr^(34^) ^& strLine ^& chr^(34^), "", "runas", 1
|
|
||||||
)>"!_vbsf!"
|
|
||||||
|
|
||||||
(%nul% cscript //NoLogo "!_vbsf!" /File:"!_batf!" -el "!_args!") && (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
%nul% %_psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && (
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
goto :E_Admin
|
|
||||||
)
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:E_Admin
|
|
||||||
%ELine%
|
|
||||||
echo This script require administrator privileges.
|
|
||||||
echo To do so, right click on this script and select 'Run as administrator'.
|
|
||||||
set _end=1
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:Passed
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Fix for the special characters limitation in path name
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
set "_work=%~dp0"
|
|
||||||
if "%_work:~-1%"=="\" set "_work=%_work:~0,-1%"
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_batp=%_batf:'=''%"
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if not exist "!_work!\Activate.cmd" (
|
|
||||||
%ELine%
|
|
||||||
echo File [Activate.cmd] does not exist in current folder..
|
|
||||||
echo It's required for the Task Creation.
|
|
||||||
set _end=1
|
|
||||||
goto Done
|
|
||||||
)
|
|
||||||
|
|
||||||
call :check cleanosppx64.exe cleanosppx86.exe
|
|
||||||
if defined _miss set _end=1&goto Done
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
set "_dest=%ProgramData%\Online_KMS_Activation"
|
|
||||||
set "key=HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\taskcache\tasks"
|
|
||||||
|
|
||||||
:ActivationRenewal
|
|
||||||
|
|
||||||
cls
|
|
||||||
title Online KMS Activation Renewal
|
|
||||||
mode con cols=98 lines=30
|
|
||||||
set ActTask=
|
|
||||||
set error_=
|
|
||||||
set DelDeskCont=
|
|
||||||
set error_1=
|
|
||||||
|
|
||||||
if defined RenTask goto:Task
|
|
||||||
if defined RenActTask set ActTask=1&goto:Task
|
|
||||||
if defined DeskMenu goto:ContextMenu
|
|
||||||
echo:
|
|
||||||
echo:
|
|
||||||
echo:
|
|
||||||
echo You can apply the option [either 1 or 2] and [3].
|
|
||||||
echo ______________________________________________________
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| Auto Renewal via Task Scheduler ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [1] Create Renewal Task ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [2] Create Renewal and Activation Task ^|
|
|
||||||
echo ^|______________________________________________________^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| Manual Renewal via Desktop Context Menu ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [3] Add Desktop Context Menu ^|
|
|
||||||
echo ^|______________________________________________________^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [4] Exit ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^|______________________________________________________^|
|
|
||||||
echo:
|
|
||||||
choice /C:1234 /N /M ". Enter Your Choice [1,2,3,4] : "
|
|
||||||
|
|
||||||
if errorlevel 4 exit /b
|
|
||||||
if errorlevel 3 goto:ContextMenu
|
|
||||||
if errorlevel 2 set ActTask=1&goto:Task
|
|
||||||
if errorlevel 1 goto:Task
|
|
||||||
|
|
||||||
:======================================================================================================================================================
|
|
||||||
|
|
||||||
:Task
|
|
||||||
|
|
||||||
cls
|
|
||||||
if defined ActTask (
|
|
||||||
title Create Renewal And Activation Tasks
|
|
||||||
) else (
|
|
||||||
title Create Renewal Task
|
|
||||||
)
|
|
||||||
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Renewal" >nul && (
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Renewal /f %nul%
|
|
||||||
)
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Run_Once" >nul && (
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Run_Once /f %nul%
|
|
||||||
)
|
|
||||||
If exist "%_dest%\" (
|
|
||||||
@RD /s /q "%_dest%\" %nul%
|
|
||||||
)
|
|
||||||
If exist "%windir%\Online_KMS_Activation_Script\" (
|
|
||||||
@RD /s /q "%windir%\Online_KMS_Activation_Script\" %nul%
|
|
||||||
)
|
|
||||||
If exist "%ProgramData%\Online_KMS_Activation.cmd" (
|
|
||||||
Reg delete "HKCR\DesktopBackground\shell\Activate Windows - Office" /f %nul%
|
|
||||||
del /f /q "%ProgramData%\Online_KMS_Activation.cmd" %nul%
|
|
||||||
set DelDeskCont=1
|
|
||||||
)
|
|
||||||
|
|
||||||
md "%_dest%\BIN\" %nul%
|
|
||||||
|
|
||||||
set "_temp=%SystemRoot%\Temp\_KMS_Task_Work"
|
|
||||||
if exist "%_temp%\" @RD /S /Q "%_temp%\" %nul%
|
|
||||||
md "%_temp%\" %nul%
|
|
||||||
|
|
||||||
call :Export renewal "%_temp%\Renewal.xml" Unicode
|
|
||||||
if defined ActTask (call :Export run_once "%_temp%\Run_Once.xml" Unicode)
|
|
||||||
|
|
||||||
call :Export info "%_dest%\Info.txt" ASCII
|
|
||||||
|
|
||||||
copy /y /b "!_work!\BIN\cleanosppx64.exe" "%_dest%\BIN\cleanosppx64.exe" %nul%
|
|
||||||
copy /y /b "!_work!\BIN\cleanosppx86.exe" "%_dest%\BIN\cleanosppx86.exe" %nul%
|
|
||||||
|
|
||||||
cd /d "!_work!"
|
|
||||||
|
|
||||||
if defined _SkipWinAct (
|
|
||||||
%nul% %_psc% "(gc Activate.cmd) -replace 'set ActWindows=1', 'set ActWindows=0' | Out-File -encoding ASCII "%_dest%\Activate.cmd"" || (set error_=1)
|
|
||||||
) else (
|
|
||||||
copy /y /b "!_work!\Activate.cmd" "%_dest%\Activate.cmd" %nul%
|
|
||||||
)
|
|
||||||
schtasks /create /tn "Online_KMS_Activation_Script-Renewal" /ru "SYSTEM" /xml "%_temp%\Renewal.xml" %nul%
|
|
||||||
if defined ActTask (schtasks /create /tn "Online_KMS_Activation_Script-Run_Once" /ru "SYSTEM" /xml "%_temp%\Run_Once.xml" %nul%)
|
|
||||||
|
|
||||||
if exist "%_temp%\" @RD /S /Q "%_temp%\" %nul%
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Renewal" >nul || (set error_=1)
|
|
||||||
if defined ActTask reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Run_Once" >nul || (set error_=1)
|
|
||||||
|
|
||||||
If not exist "%_dest%\Activate.cmd" (set error_=1)
|
|
||||||
If not exist "%_dest%\Info.txt" (set error_=1)
|
|
||||||
If not exist "%_dest%\BIN\cleanosppx64.exe" (set error_=1)
|
|
||||||
If not exist "%_dest%\BIN\cleanosppx86.exe" (set error_=1)
|
|
||||||
|
|
||||||
if defined error_ (
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Renewal" >nul && (
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Renewal /f %nul%
|
|
||||||
)
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Run_Once" >nul && (
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Run_Once /f %nul%
|
|
||||||
)
|
|
||||||
reg delete "HKCR\DesktopBackground\shell\Activate Windows - Office" /f %nul%
|
|
||||||
If exist "%_dest%\" (
|
|
||||||
@RD /s /q "%_dest%\" %nul%
|
|
||||||
)
|
|
||||||
echo _________________________________________________________________
|
|
||||||
echo:
|
|
||||||
%ELine%
|
|
||||||
echo Run the Online KMS Complete Uninstall script and then try again.
|
|
||||||
echo _________________________________________________________________
|
|
||||||
) else (
|
|
||||||
echo:
|
|
||||||
echo __________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
if defined DelDeskCont (
|
|
||||||
%EchoYellow% Previous desktop context menu entry for Online KMS Activation is deleted.
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
if defined _SkipWinAct (
|
|
||||||
%EchoYellow% %_dest%\Activate.cmd is set to skip Windows Activation.
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
|
|
||||||
echo Files created:
|
|
||||||
echo %_dest%\BIN\cleanosppx64.exe
|
|
||||||
echo %_dest%\BIN\cleanosppx86.exe
|
|
||||||
echo %_dest%\Activate.cmd
|
|
||||||
echo %_dest%\Info.txt
|
|
||||||
echo:
|
|
||||||
echo Scheduled Tasks created:
|
|
||||||
echo \Online_KMS_Activation_Script-Renewal
|
|
||||||
if defined ActTask (echo \Online_KMS_Activation_Script-Run_Once)
|
|
||||||
echo:
|
|
||||||
echo It's recommended to set exclusion for the following file in your Antivirus Program.
|
|
||||||
echo:
|
|
||||||
echo %_dest%\Activate.cmd
|
|
||||||
echo __________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
if defined ActTask (
|
|
||||||
%EchoGreen% Online KMS Activation - Renewal and Activation Tasks are successfully created.
|
|
||||||
) else (
|
|
||||||
%EchoGreen% Online KMS Activation - Renewal Task is successfully created.
|
|
||||||
)
|
|
||||||
echo __________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:ContextMenu
|
|
||||||
|
|
||||||
cls
|
|
||||||
title Add Desktop Context Menu
|
|
||||||
|
|
||||||
If exist "%ProgramData%\Online_KMS_Activation.cmd" (
|
|
||||||
del /f /q "%ProgramData%\Online_KMS_Activation.cmd" %nul%
|
|
||||||
set DelDeskCont=1
|
|
||||||
)
|
|
||||||
|
|
||||||
reg delete "HKCR\DesktopBackground\shell\Activate Windows - Office" /f %nul%
|
|
||||||
|
|
||||||
if exist "%_dest%\BIN\" (
|
|
||||||
@RD /s /q "%_dest%\BIN\" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
md "%_dest%\BIN\" %nul%
|
|
||||||
copy /y /b "!_work!\BIN\cleanosppx64.exe" "%_dest%\BIN\cleanosppx64.exe" %nul%
|
|
||||||
copy /y /b "!_work!\BIN\cleanosppx86.exe" "%_dest%\BIN\cleanosppx86.exe" %nul%
|
|
||||||
|
|
||||||
if exist "%_dest%\Activate.cmd" (
|
|
||||||
del /f /q "%_dest%\Activate.cmd" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
cd /d "!_work!"
|
|
||||||
|
|
||||||
if defined _SkipWinAct (
|
|
||||||
%nul% %_psc% "(gc Activate.cmd) -replace 'set ActWindows=1', 'set ActWindows=0' | Out-File -encoding ASCII "%_dest%\Activate.cmd"" || (set error_=1)
|
|
||||||
) else (
|
|
||||||
copy /y /b "!_work!\Activate.cmd" "%_dest%\Activate.cmd" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
if exist "%_dest%\Info.txt" (
|
|
||||||
del /f /q "%_dest%\Info.txt" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
call :Export info "%_dest%\Info.txt" ASCII
|
|
||||||
|
|
||||||
reg add "HKCR\DesktopBackground\shell\Activate Windows - Office" /v "Icon" /t REG_SZ /d "%SystemRoot%%\System32\shell32.dll,71" /f >nul 2>&1 || (set error_1=1)
|
|
||||||
reg add "HKCR\DesktopBackground\shell\Activate Windows - Office\command" /ve /d "%_dest%\Activate.cmd" /f %nul% || (set error_1=1)
|
|
||||||
|
|
||||||
If not exist "%_dest%\Activate.cmd" (set error_=1)
|
|
||||||
If not exist "%_dest%\Info.txt" (set error_=1)
|
|
||||||
If not exist "%_dest%\BIN\cleanosppx64.exe" (set error_=1)
|
|
||||||
If not exist "%_dest%\BIN\cleanosppx86.exe" (set error_=1)
|
|
||||||
|
|
||||||
reg query "HKCR\DesktopBackground\shell\Activate Windows - Office" %nul% || (set error_1=1)
|
|
||||||
|
|
||||||
if defined error_1 (
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Renewal" >nul && (
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Renewal /f %nul%
|
|
||||||
)
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Run_Once" >nul && (
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Run_Once /f %nul%
|
|
||||||
)
|
|
||||||
reg delete "HKCR\DesktopBackground\shell\Activate Windows - Office" /f %nul%
|
|
||||||
If exist "%_dest%\" (
|
|
||||||
@RD /s /q "%_dest%\" %nul%
|
|
||||||
)
|
|
||||||
echo _________________________________________________________________
|
|
||||||
echo:
|
|
||||||
%ELine%
|
|
||||||
echo Run the Online KMS Complete Uninstall script and then try again.
|
|
||||||
echo _________________________________________________________________
|
|
||||||
) else (
|
|
||||||
echo:
|
|
||||||
echo __________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
if defined DelDeskCont (
|
|
||||||
%EchoYellow% Previous desktop context menu entry for Online KMS Activation is deleted.
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
if defined _SkipWinAct (
|
|
||||||
%EchoYellow% %_dest%\Activate.cmd is set to skip Windows Activation.
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
|
|
||||||
echo Files created:
|
|
||||||
echo %_dest%\BIN\cleanosppx64.exe
|
|
||||||
echo %_dest%\BIN\cleanosppx86.exe
|
|
||||||
echo %_dest%\Activate.cmd
|
|
||||||
echo %_dest%\Info.txt
|
|
||||||
echo:
|
|
||||||
echo Registry entry added:
|
|
||||||
echo HKCR\DesktopBackground\shell\Activate Windows - Office
|
|
||||||
echo HKCR\DesktopBackground\shell\Activate Windows - Office\command
|
|
||||||
echo __________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
%EchoGreen% Desktop context menu entry for Online KMS Activation is successfully created.
|
|
||||||
echo __________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:Done
|
|
||||||
echo:
|
|
||||||
if defined Unattended (
|
|
||||||
echo Exiting in 3 seconds...
|
|
||||||
if %winbuild% LSS 7600 (ping -n 3 127.0.0.1 > nul) else (timeout /t 3)
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
if defined _end (
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
) else (
|
|
||||||
echo Press any key to go back...
|
|
||||||
pause >nul
|
|
||||||
goto ActivationRenewal
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:info:
|
|
||||||
====================================================================================================
|
|
||||||
Online KMS Activation:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
The use of this script is to activate / renew your Windows /Server /Office license
|
|
||||||
using online KMS.
|
|
||||||
|
|
||||||
- Scheduled task name (If Renewal Task is created) (Weekly).
|
|
||||||
\Online_KMS_Activation_Script-Renewal
|
|
||||||
|
|
||||||
- Scheduled task name (If Activation Task is created).
|
|
||||||
\Online_KMS_Activation_Script-Run_Once
|
|
||||||
|
|
||||||
The scheduled task runs only if the system is connected to the Internet.
|
|
||||||
Activation Task will run on the system login and after successful activation, this task will
|
|
||||||
delete itself.
|
|
||||||
|
|
||||||
- If system preactivation is done via HWID + Online KMS, and HWID was applied but was not
|
|
||||||
successful due to lack of internet at the time of installation of Windows, in that case,
|
|
||||||
Online KMS script will be set to skip Windows activation.
|
|
||||||
|
|
||||||
- Registry entry name and location (If desktop context menu is created).
|
|
||||||
HKCR\DesktopBackground\shell\Activate Windows - Office
|
|
||||||
|
|
||||||
For complete script and more info, browse the script homepage.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
File Details:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
d30a0e4e5911d3ca705617d17225372731c770e2 *cleanosppx64.exe Virus Total = 0/66
|
|
||||||
39ed8659e7ca16aaccb86def94ce6cec4c847dd6 *cleanosppx86.exe Virus Total = 1/66
|
|
||||||
|
|
||||||
Virus Total Report Date: 12-11-2019
|
|
||||||
|
|
||||||
These files are official Microsoft files and in this script, these are used in
|
|
||||||
cleaning office license in C2R Retail office to VL conversion process.
|
|
||||||
|
|
||||||
The source of these files is the 'old' version of Microsoft Tool O15CTRRemove.diagcab
|
|
||||||
You can get the original file here https://s.put.re/WFuXpyWA.zip
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
Online KMS Activation script is just a fork of @abbodi1406's KMS_VL_ALL Project.
|
|
||||||
KMS_VL_ALL homepage: https://forums.mydigitallife.net/posts/838808
|
|
||||||
|
|
||||||
This fork was made to avoid having any KMS binary files and system can be activated using
|
|
||||||
some manual commands or transparent batch script files.
|
|
||||||
|
|
||||||
Online KMS Activation script is a part of 'Microsoft Activation Scripts'
|
|
||||||
Maintained by @WindowsAddict
|
|
||||||
|
|
||||||
Homepages-
|
|
||||||
NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
||||||
GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
:info:
|
|
||||||
|
|
||||||
:renewal:
|
|
||||||
<?xml version="1.0" encoding="UTF-16"?>
|
|
||||||
<Task version="1.3" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
|
|
||||||
<RegistrationInfo>
|
|
||||||
<Source>Microsoft Corporation</Source>
|
|
||||||
<Date>1999-01-01T12:00:00.34375</Date>
|
|
||||||
<Author>RPO/WindowsAddict</Author>
|
|
||||||
<Version>1.0</Version>
|
|
||||||
<Description>Online_KMS_Activation_Script-Renewal - Weekly Activation Renewal Task</Description>
|
|
||||||
<URI>\Online_KMS_Activation_Script-Renewal</URI>
|
|
||||||
<SecurityDescriptor>D:P(A;;FA;;;SY)(A;;FA;;;BA)(A;;FRFX;;;LS)(A;;FRFW;;;S-1-5-80-123231216-2592883651-3715271367-3753151631-4175906628)(A;;FR;;;S-1-5-4)</SecurityDescriptor>
|
|
||||||
</RegistrationInfo>
|
|
||||||
<Triggers>
|
|
||||||
<CalendarTrigger>
|
|
||||||
<StartBoundary>1999-01-01T12:00:00</StartBoundary>
|
|
||||||
<Enabled>true</Enabled>
|
|
||||||
<ScheduleByWeek>
|
|
||||||
<DaysOfWeek>
|
|
||||||
<Sunday />
|
|
||||||
</DaysOfWeek>
|
|
||||||
<WeeksInterval>1</WeeksInterval>
|
|
||||||
</ScheduleByWeek>
|
|
||||||
</CalendarTrigger>
|
|
||||||
</Triggers>
|
|
||||||
<Principals>
|
|
||||||
<Principal id="LocalSystem">
|
|
||||||
<UserId>S-1-5-18</UserId>
|
|
||||||
<RunLevel>HighestAvailable</RunLevel>
|
|
||||||
</Principal>
|
|
||||||
</Principals>
|
|
||||||
<Settings>
|
|
||||||
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
|
|
||||||
<DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
|
|
||||||
<StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
|
|
||||||
<AllowHardTerminate>true</AllowHardTerminate>
|
|
||||||
<StartWhenAvailable>true</StartWhenAvailable>
|
|
||||||
<RunOnlyIfNetworkAvailable>true</RunOnlyIfNetworkAvailable>
|
|
||||||
<IdleSettings>
|
|
||||||
<StopOnIdleEnd>false</StopOnIdleEnd>
|
|
||||||
<RestartOnIdle>false</RestartOnIdle>
|
|
||||||
</IdleSettings>
|
|
||||||
<AllowStartOnDemand>true</AllowStartOnDemand>
|
|
||||||
<Enabled>true</Enabled>
|
|
||||||
<Hidden>true</Hidden>
|
|
||||||
<RunOnlyIfIdle>false</RunOnlyIfIdle>
|
|
||||||
<DisallowStartOnRemoteAppSession>false</DisallowStartOnRemoteAppSession>
|
|
||||||
<UseUnifiedSchedulingEngine>true</UseUnifiedSchedulingEngine>
|
|
||||||
<WakeToRun>false</WakeToRun>
|
|
||||||
<ExecutionTimeLimit>PT10M</ExecutionTimeLimit>
|
|
||||||
<Priority>7</Priority>
|
|
||||||
<RestartOnFailure>
|
|
||||||
<Interval>PT2M</Interval>
|
|
||||||
<Count>3</Count>
|
|
||||||
</RestartOnFailure>
|
|
||||||
</Settings>
|
|
||||||
<Actions Context="LocalSystem">
|
|
||||||
<Exec>
|
|
||||||
<Command>%ProgramData%\Online_KMS_Activation\Activate.cmd</Command>
|
|
||||||
<Arguments>Task</Arguments>
|
|
||||||
</Exec>
|
|
||||||
</Actions>
|
|
||||||
</Task>
|
|
||||||
:renewal:
|
|
||||||
|
|
||||||
:run_once:
|
|
||||||
<?xml version="1.0" encoding="UTF-16"?>
|
|
||||||
<Task version="1.3" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
|
|
||||||
<RegistrationInfo>
|
|
||||||
<Source>Microsoft Corporation</Source>
|
|
||||||
<Date>1999-01-01T12:00:00.34375</Date>
|
|
||||||
<Author>RPO/WindowsAddict</Author>
|
|
||||||
<Version>1.0</Version>
|
|
||||||
<Description>Online_KMS_Activation_Script-Run_Once - Run and Delete itself on first Internet Contact</Description>
|
|
||||||
<URI>\Online_KMS_Activation_Script-Run_Once</URI>
|
|
||||||
<SecurityDescriptor>D:P(A;;FA;;;SY)(A;;FA;;;BA)(A;;FRFX;;;LS)(A;;FRFW;;;S-1-5-80-123231216-2592883651-3715271367-3753151631-4175906628)(A;;FR;;;S-1-5-4)</SecurityDescriptor>
|
|
||||||
</RegistrationInfo>
|
|
||||||
<Triggers>
|
|
||||||
<LogonTrigger>
|
|
||||||
<Enabled>true</Enabled>
|
|
||||||
</LogonTrigger>
|
|
||||||
</Triggers>
|
|
||||||
<Principals>
|
|
||||||
<Principal id="LocalSystem">
|
|
||||||
<UserId>S-1-5-18</UserId>
|
|
||||||
<RunLevel>HighestAvailable</RunLevel>
|
|
||||||
</Principal>
|
|
||||||
</Principals>
|
|
||||||
<Settings>
|
|
||||||
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
|
|
||||||
<DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
|
|
||||||
<StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
|
|
||||||
<AllowHardTerminate>true</AllowHardTerminate>
|
|
||||||
<StartWhenAvailable>true</StartWhenAvailable>
|
|
||||||
<RunOnlyIfNetworkAvailable>true</RunOnlyIfNetworkAvailable>
|
|
||||||
<IdleSettings>
|
|
||||||
<StopOnIdleEnd>false</StopOnIdleEnd>
|
|
||||||
<RestartOnIdle>false</RestartOnIdle>
|
|
||||||
</IdleSettings>
|
|
||||||
<AllowStartOnDemand>true</AllowStartOnDemand>
|
|
||||||
<Enabled>true</Enabled>
|
|
||||||
<Hidden>true</Hidden>
|
|
||||||
<RunOnlyIfIdle>false</RunOnlyIfIdle>
|
|
||||||
<DisallowStartOnRemoteAppSession>false</DisallowStartOnRemoteAppSession>
|
|
||||||
<UseUnifiedSchedulingEngine>true</UseUnifiedSchedulingEngine>
|
|
||||||
<WakeToRun>false</WakeToRun>
|
|
||||||
<ExecutionTimeLimit>PT10M</ExecutionTimeLimit>
|
|
||||||
<Priority>7</Priority>
|
|
||||||
<RestartOnFailure>
|
|
||||||
<Interval>PT2M</Interval>
|
|
||||||
<Count>3</Count>
|
|
||||||
</RestartOnFailure>
|
|
||||||
</Settings>
|
|
||||||
<Actions Context="LocalSystem">
|
|
||||||
<Exec>
|
|
||||||
<Command>%ProgramData%\Online_KMS_Activation\Activate.cmd</Command>
|
|
||||||
<Arguments>Task</Arguments>
|
|
||||||
</Exec>
|
|
||||||
</Actions>
|
|
||||||
</Task>
|
|
||||||
:run_once:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Echo all the missing files.
|
|
||||||
:: Written by @abbodi1406 (MDL)
|
|
||||||
|
|
||||||
:check
|
|
||||||
|
|
||||||
for %%# in (%1 %2) do (if not exist "!_work!\BIN\%%#" (if defined _miss (set "_miss=!_miss! %%#") else (set "_miss=%%#")))
|
|
||||||
if defined _miss (
|
|
||||||
%ELine%
|
|
||||||
echo Following required file^(s^) is missing in 'BIN' folder. Aborting...
|
|
||||||
echo:
|
|
||||||
echo !_miss!
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Extract the text from batch script without character and file encoding issue
|
|
||||||
:: Thanks to @abbodi1406
|
|
||||||
|
|
||||||
:Export
|
|
||||||
%nul% %_psc% "$f=[io.file]::ReadAllText('!_batp!') -split \":%~1\:.*`r`n\"; [io.file]::WriteAllText('%~2',$f[1].Trim(),[System.Text.Encoding]::%~3);" &exit/b
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,264 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
:: For unattended mode, run the script with /u parameter.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
:: =======================================================================================================
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: =======================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
title Online KMS Complete Uninstall
|
|
||||||
set Unattended=
|
|
||||||
set _args=
|
|
||||||
set _elev=
|
|
||||||
set "_arg1=%~1"
|
|
||||||
if not defined _arg1 goto :NoProgArgs
|
|
||||||
set "_args=%~1"
|
|
||||||
set "_arg2=%~2"
|
|
||||||
if defined _arg2 set "_args=%~1 %~2"
|
|
||||||
for %%A in (%_args%) do (
|
|
||||||
if /i "%%A"=="-el" set _elev=1
|
|
||||||
if /i "%%A"=="/u" set Unattended=1)
|
|
||||||
:NoProgArgs
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "EchoRed=%_psc% write-host -back Black -fore Red"
|
|
||||||
set "EchoGreen=%_psc% write-host -back Black -fore Green"
|
|
||||||
set "ELine=echo: & %EchoRed% ==== ERROR ==== &echo:"
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
for %%i in (powershell.exe) do if "%%~$path:i"=="" (
|
|
||||||
echo: &echo ==== ERROR ==== &echo:
|
|
||||||
echo Powershell is not installed in the system.
|
|
||||||
echo Aborting...
|
|
||||||
goto UN_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 7600 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo Project is supported only for Windows 7/8/8.1/10 and their Server equivalent.
|
|
||||||
goto UN_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Elevate script as admin and pass arguments and preventing loop
|
|
||||||
:: Thanks to @hearywarlot [ https://forums.mydigitallife.net/threads/.74332/ ] for the VBS method.
|
|
||||||
:: Thanks to @abbodi1406 for the powershell method and solving special characters issue in file path name.
|
|
||||||
|
|
||||||
%nul% reg query HKU\S-1-5-19 && (
|
|
||||||
goto :Passed
|
|
||||||
) || (
|
|
||||||
if defined _elev goto :E_Admin
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_vbsf=%temp%\admin.vbs"
|
|
||||||
set _PSarg="""%~f0""" -el
|
|
||||||
if defined _args set _PSarg="""%~f0""" -el """%_args%"""
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
(
|
|
||||||
echo Set strArg=WScript.Arguments.Named
|
|
||||||
echo Set strRdlproc = CreateObject^("WScript.Shell"^).Exec^("rundll32 kernel32,Sleep"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& strRdlproc.ProcessId ^& "'"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& .ParentProcessId ^& "'"^)
|
|
||||||
echo If InStr ^(.CommandLine, WScript.ScriptName^) ^<^> 0 Then
|
|
||||||
echo strLine = Mid^(.CommandLine, InStr^(.CommandLine , "/File:"^) + Len^(strArg^("File"^)^) + 8^)
|
|
||||||
echo End If
|
|
||||||
echo End With
|
|
||||||
echo .Terminate
|
|
||||||
echo End With
|
|
||||||
echo CreateObject^("Shell.Application"^).ShellExecute "cmd.exe", "/c " ^& chr^(34^) ^& chr^(34^) ^& strArg^("File"^) ^& chr^(34^) ^& strLine ^& chr^(34^), "", "runas", 1
|
|
||||||
)>"!_vbsf!"
|
|
||||||
|
|
||||||
(%nul% cscript //NoLogo "!_vbsf!" /File:"!_batf!" -el "!_args!") && (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
%nul% %_psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && (
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
goto :E_Admin
|
|
||||||
)
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:E_Admin
|
|
||||||
%ELine%
|
|
||||||
echo This script require administrator privileges.
|
|
||||||
echo To do so, right click on this script and select 'Run as administrator'.
|
|
||||||
goto UN_Done
|
|
||||||
|
|
||||||
:Passed
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
mode con: cols=98 lines=30
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
set "key=HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\taskcache\tasks"
|
|
||||||
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Renewal" >nul && (
|
|
||||||
echo Deleting [Task] Online_KMS_Activation_Script-Renewal
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Renewal /f %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Run_Once" >nul && (
|
|
||||||
echo Deleting [Task] Online_KMS_Activation_Script-Run_Once
|
|
||||||
schtasks /delete /tn Online_KMS_Activation_Script-Run_Once /f %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
If exist "%windir%\Online_KMS_Activation_Script\" (
|
|
||||||
echo Deleting [Folder] %windir%\Online_KMS_Activation_Script\
|
|
||||||
@RD /s /q "%windir%\Online_KMS_Activation_Script\" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
If exist "%ProgramData%\Online_KMS_Activation\" (
|
|
||||||
echo Deleting [Folder] %ProgramData%\Online_KMS_Activation\
|
|
||||||
@RD /s /q "%ProgramData%\Online_KMS_Activation\" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
if exist "%ProgramData%\Online_KMS_Activation.cmd" (
|
|
||||||
echo Deleting [File] %ProgramData%\Online_KMS_Activation.cmd
|
|
||||||
del /f /q "%ProgramData%\Online_KMS_Activation.cmd" %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
reg query "HKCR\DesktopBackground\shell\Activate Windows - Office" %nul% && (
|
|
||||||
echo Deleting [Context Menu Registry] HKCR\DesktopBackground\shell\Activate Windows - Office
|
|
||||||
Reg delete "HKCR\DesktopBackground\shell\Activate Windows - Office" /f %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
echo:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Clear-KMS-Cache.cmd
|
|
||||||
:: https://forums.mydigitallife.net/posts/1511883
|
|
||||||
:: Written by @abbodi1406 (MDL)
|
|
||||||
|
|
||||||
set "SysPath=%Windir%\System32"
|
|
||||||
if exist "%Windir%\Sysnative\reg.exe" (set "SysPath=%Windir%\Sysnative")
|
|
||||||
set "Path=%SysPath%;%Windir%;%SysPath%\Wbem;%SysPath%\WindowsPowerShell\v1.0\"
|
|
||||||
set "OSPP=SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform"
|
|
||||||
set "SPPk=SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform"
|
|
||||||
wmic path SoftwareLicensingProduct where (Description like '%%KMSCLIENT%%') get Name 2>nul | findstr /i Windows 1>nul && (set SppHook=1) || (set SppHook=0)
|
|
||||||
wmic path SoftwareLicensingProduct where (Description like '%%KMSCLIENT%%') get Name 2>nul | findstr /i Office 1>nul && (set SppHook=1)
|
|
||||||
wmic path OfficeSoftwareProtectionService get Version >nul 2>&1 && (set OsppHook=1) || (set OsppHook=0)
|
|
||||||
if %SppHook% NEQ 0 call :UN_cKMS SoftwareLicensingProduct SoftwareLicensingService SPP
|
|
||||||
if %OsppHook% NEQ 0 call :UN_cKMS OfficeSoftwareProtectionProduct OfficeSoftwareProtectionService OSPP
|
|
||||||
call :UN_cREG >nul 2>&1
|
|
||||||
echo:
|
|
||||||
goto UN_Verify
|
|
||||||
|
|
||||||
:UN_cKMS
|
|
||||||
echo Clearing %3 KMS Cache...
|
|
||||||
set spp=%1
|
|
||||||
set sps=%2
|
|
||||||
for /f "tokens=2 delims==" %%G in ('"wmic path %spp% where (Description like '%%KMSCLIENT%%') get ID /VALUE" 2^>nul') do (set app=%%G&call :UN_cAPP)
|
|
||||||
for /f "tokens=2 delims==" %%A in ('"wmic path %sps% get Version /VALUE"') do set ver=%%A
|
|
||||||
wmic path %sps% where version='%ver%' call ClearKeyManagementServiceMachine >nul 2>&1
|
|
||||||
wmic path %sps% where version='%ver%' call ClearKeyManagementServicePort >nul 2>&1
|
|
||||||
wmic path %sps% where version='%ver%' call DisableKeyManagementServiceDnsPublishing 1 >nul 2>&1
|
|
||||||
wmic path %sps% where version='%ver%' call DisableKeyManagementServiceHostCaching 1 >nul 2>&1
|
|
||||||
goto :eof
|
|
||||||
|
|
||||||
:UN_cAPP
|
|
||||||
wmic path %spp% where ID='%app%' call ClearKeyManagementServiceMachine >nul 2>&1
|
|
||||||
wmic path %spp% where ID='%app%' call ClearKeyManagementServicePort >nul 2>&1
|
|
||||||
goto :eof
|
|
||||||
|
|
||||||
:UN_cREG
|
|
||||||
reg delete "HKLM\%SPPk%\55c92734-d682-4d71-983e-d6ec3f16059f" /f
|
|
||||||
reg delete "HKLM\%SPPk%\0ff1ce15-a989-479d-af46-f275c6370663" /f
|
|
||||||
reg delete "HKLM\%SPPk%" /f /v KeyManagementServiceName
|
|
||||||
reg delete "HKLM\%SPPk%" /f /v KeyManagementServicePort
|
|
||||||
reg delete "HKU\S-1-5-20\%SPPk%\55c92734-d682-4d71-983e-d6ec3f16059f" /f
|
|
||||||
reg delete "HKU\S-1-5-20\%SPPk%\0ff1ce15-a989-479d-af46-f275c6370663" /f
|
|
||||||
reg delete "HKLM\%OSPP%\59a52881-a989-479d-af46-f275c6370663" /f
|
|
||||||
reg delete "HKLM\%OSPP%\0ff1ce15-a989-479d-af46-f275c6370663" /f
|
|
||||||
reg delete "HKLM\%OSPP%" /f /v KeyManagementServiceName
|
|
||||||
reg delete "HKLM\%OSPP%" /f /v KeyManagementServicePort
|
|
||||||
if %OsppHook% NEQ 1 (
|
|
||||||
reg delete "HKLM\%OSPP%" /f
|
|
||||||
reg delete "HKU\S-1-5-20\%OSPP%" /f
|
|
||||||
)
|
|
||||||
goto :eof
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:UN_Verify
|
|
||||||
|
|
||||||
set error_=
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Renewal" >nul && (set error_=1)
|
|
||||||
reg query "%key%" /f Path /s | find /i "\Online_KMS_Activation_Script-Run_Once" >nul && (set error_=1)
|
|
||||||
If exist "%windir%\Online_KMS_Activation_Script\" (set error_=1)
|
|
||||||
if exist "%ProgramData%\Online_KMS_Activation\" (set error_=1)
|
|
||||||
|
|
||||||
reg query "HKCR\DesktopBackground\shell\Activate Windows - Office" >nul 2>&1 && (set error_=1)
|
|
||||||
if exist "%ProgramData%\Online_KMS_Activation.cmd" (set error_=1)
|
|
||||||
|
|
||||||
if defined error_ (
|
|
||||||
echo ______________________________________
|
|
||||||
%ELine%
|
|
||||||
echo Try Again.
|
|
||||||
echo ______________________________________
|
|
||||||
) else (
|
|
||||||
echo _________________________________________________________________
|
|
||||||
echo:
|
|
||||||
%EchoGreen% Online KMS Complete Uninstall is done successfully.
|
|
||||||
echo _________________________________________________________________
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:UN_Done
|
|
||||||
|
|
||||||
echo:
|
|
||||||
if defined Unattended (
|
|
||||||
echo Exiting in 3 seconds...
|
|
||||||
if %winbuild% LSS 7600 (ping -n 3 127.0.0.1 > nul) else (timeout /t 3)
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,657 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
|
|
||||||
Online KMS Activation script is just a fork of @abbodi1406's KMS_VL_ALL Project.
|
|
||||||
KMS_VL_ALL homepage: https://forums.mydigitallife.net/posts/838808
|
|
||||||
|
|
||||||
This fork was made to avoid having any KMS binary files and system can be activated using
|
|
||||||
some manual commands or transparent batch script files.
|
|
||||||
|
|
||||||
This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
|
|
||||||
Homepages-
|
|
||||||
NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
||||||
GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
|
|
||||||
Maintained by @WindowsAddict
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Online KMS Activation:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- This KMS script skips the activation of any permanently / KMS38-activated product.
|
|
||||||
- This KMS script can activate both Retail and VL Windows / Server installation.
|
|
||||||
- This KMS script can activate C2R Retail and VL Office, but not 2010/2013 MSI Retail Office.
|
|
||||||
|
|
||||||
----------------------
|
|
||||||
- Activation Renewal
|
|
||||||
----------------------
|
|
||||||
|
|
||||||
- KMS activates Windows / Server / Office for 180 Days. (For Core/ProWMC edition it is 30/45 Days)
|
|
||||||
|
|
||||||
- By design, using the KMS 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
|
|
||||||
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.
|
|
||||||
|
|
||||||
- The KMS servers I've added have been working steadily for two to three years, but there can be
|
|
||||||
no guarantee that they will remain online indefinitely. If a registered server goes
|
|
||||||
down, you will need to create a renewal task, or do a manual renewal, for the lifetime of the
|
|
||||||
activation.
|
|
||||||
|
|
||||||
There are 3 ways you can renew the KMS server and as a result, renew the activation.
|
|
||||||
|
|
||||||
1- Activate.cmd
|
|
||||||
|
|
||||||
Run this file whenever the system needs activation. Depending upon the particular (never fully-knowable)
|
|
||||||
circumstances, a successful activation may last for a period of a MINIMUM of 180 days,
|
|
||||||
or a maximum of the full life of the machine it's running on, and you may never need to run it again.
|
|
||||||
|
|
||||||
2- Manual Renewal via Desktop Context Menu
|
|
||||||
|
|
||||||
This method is exactly same as above but here we put the following files in,
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx64.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx86.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Activate.cmd
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Info.txt
|
|
||||||
|
|
||||||
and create registry entries in,
|
|
||||||
HKCR\DesktopBackground\shell\Activate Windows - Office
|
|
||||||
HKCR\DesktopBackground\shell\Activate Windows - Office\command
|
|
||||||
|
|
||||||
It creates an easy to reach Desktop context menu for the manual activation renewal.
|
|
||||||
|
|
||||||
3- Automatic Renewal via Task Scheduler
|
|
||||||
|
|
||||||
This method put the following files in,
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx64.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx86.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Activate.cmd
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Info.txt
|
|
||||||
|
|
||||||
And creates a scheduled task to run the script every 7 days.
|
|
||||||
|
|
||||||
The scheduled task runs only if the system is connected to the Internet.
|
|
||||||
With this method, the Activation task can also be created which will run on the system login
|
|
||||||
and after successful activation, this task will delete itself.
|
|
||||||
|
|
||||||
IMPORTANT NOTE - Some sensitive AV's may flag the Automatic Renewal via the Task, and not
|
|
||||||
because of KMS, because for them it's suspicious to run long scripts in the background as Tasks.
|
|
||||||
|
|
||||||
It's recommended to set exclusions in Antivirus for
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Activate.cmd
|
|
||||||
or
|
|
||||||
use the 1st or 2nd option for activation renewal.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
----------------------
|
|
||||||
- Remarks
|
|
||||||
----------------------
|
|
||||||
|
|
||||||
- This Online KMS Activation provides immediate global activation for Windows 8.1 and Windows 10, which
|
|
||||||
means that in the following three scenarios, the system will self-activate when connected to the
|
|
||||||
internet, and also means that users will not need to manually run the activation script again.
|
|
||||||
|
|
||||||
Scenario 1: Subsequent installation or alteration of any 2013, 2016, or 2019 Volume License
|
|
||||||
(VL) Office product.
|
|
||||||
Scenario 2: Windows edition change (with GVLK).
|
|
||||||
Scenario 3: Date change, system hardware change, etc.
|
|
||||||
|
|
||||||
- What is left in the system in the activation process?
|
|
||||||
- Activate.cmd
|
|
||||||
After activation, it leaves only the KMS Server name in the registry, which helps you to get the
|
|
||||||
above-mentioned global activation feature whereby the system auto-renews the activations,
|
|
||||||
so it's a good thing if you leave the server name in the registry.
|
|
||||||
However, you can clear this registered KMS Server name upon activation, and do that, open
|
|
||||||
the script with notepad and set Clear-KMS-Cache to 1 from 0.
|
|
||||||
What is left in the system when Renewal methods are installed, has been mentioned.
|
|
||||||
|
|
||||||
- This script includes the most-stable KMS servers (6+) list. The server selection process is
|
|
||||||
fully automatic. You don't need to worry about the server's availability.
|
|
||||||
|
|
||||||
- If your system date is incorrect (beyond 180 days) and you are offline, the system will be
|
|
||||||
deactivated, but will automatically reactivate when you correct the system date.
|
|
||||||
|
|
||||||
- Why should you choose the Online KMS activation method over offline KMS?
|
|
||||||
The main benefit of Online KMS activation is that it doesn't need any KMS binary file and system
|
|
||||||
can be activated using some manual commands or transparent batch script files.
|
|
||||||
So this is for those who don't like/have difficulties/trust issue in offline KMS because of its
|
|
||||||
binary files and antivirus detections.
|
|
||||||
|
|
||||||
If you prefer offline KMS then checkout an open-source activator,
|
|
||||||
@abbodi1406's KMS_VL_ALL https://forums.mydigitallife.net/posts/838808
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
--------------------------------------
|
|
||||||
- Office C2R Retail to VL conversion
|
|
||||||
--------------------------------------
|
|
||||||
|
|
||||||
This activation script will convert Office C2R Retail to Volume without needing separate tools.
|
|
||||||
|
|
||||||
- Supports: Office 365, Office 2019, Office 2016, Office 2013
|
|
||||||
- Activated Retail products will be skipped from conversion
|
|
||||||
this includes valid Office 365 subscriptions, or perpetual Office (MAK, OEM, MSDN, Retail..)
|
|
||||||
- Current Office licenses will be cleaned up (unless retail-activated Office detected)
|
|
||||||
then, proper Volume licenses will be installed based on the detected Product IDs
|
|
||||||
- Office Mondo suite cover all products, if detected, only its licenses will be installed
|
|
||||||
- Office 365 products will be converted with Mondo licenses by default
|
|
||||||
also, corresponding Office 365 Retail Grace Key will be installed
|
|
||||||
- Office 2016 products will be converted with corresponding Office 2019 licenses
|
|
||||||
- Office Professional suite will be converted with Office 2019 ProPlus licenses
|
|
||||||
- Office HomeBusiness/HomeStudent suites will be converted with Office 2019 Standard licenses
|
|
||||||
- If Office 2019 RTM licenses are not detected, Office 2016 licenses will be used instead
|
|
||||||
- Office 2013 products follow the same logic but handled separately
|
|
||||||
- If main products SKUs are detected, single apps licenses will not be installed to avoid duplication
|
|
||||||
|
|
||||||
- SKUs:
|
|
||||||
O365ProPlus, O365Business, O365SmallBusPrem, O365HomePrem, O365EduCloud
|
|
||||||
ProPlus, Professional, Standard, HomeBusiness, HomeStudent, Visio, Project
|
|
||||||
|
|
||||||
* Apps:
|
|
||||||
Access, Excel, InfoPath, Onenote, Outlook, PowerPoint, Publisher, SkypeForBusiness, Word,
|
|
||||||
Groove (OneDrive for Business)
|
|
||||||
|
|
||||||
- O365ProPlus, O365Business, O365SmallBusPrem, ProPlus cover all apps
|
|
||||||
Professional cover all apps except SkypeForBusiness
|
|
||||||
Standard cover all apps except Access, SkypeForBusiness
|
|
||||||
|
|
||||||
## Notice
|
|
||||||
|
|
||||||
- On Windows 7, Office 2016/2019 licensing service require Universal C Runtime to work correctly
|
|
||||||
- UCRT is available in the latest Monthly Rollup, or the separate update KB3118401
|
|
||||||
- Additionally, Office programs themselves require recent Windows 7 updates to start properly
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
File Details:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
d30a0e4e5911d3ca705617d17225372731c770e2 *cleanosppx64.exe Virus Total = 0/66
|
|
||||||
39ed8659e7ca16aaccb86def94ce6cec4c847dd6 *cleanosppx86.exe Virus Total = 1/66
|
|
||||||
|
|
||||||
Virus Total Report Date: 12-11-2019
|
|
||||||
|
|
||||||
These files are official Microsoft files and in this script, these are used in
|
|
||||||
cleaning office license in C2R Retail office to VL conversion process.
|
|
||||||
|
|
||||||
The source of these files is the 'old' version of Microsoft Tool O15CTRRemove.diagcab
|
|
||||||
You can get the original file here https://s.put.re/WFuXpyWA.zip
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
How does it work?
|
|
||||||
Is it safe?
|
|
||||||
|
|
||||||
https://pastebin.com/raw/7Xyaf15Z
|
|
||||||
Mirror:
|
|
||||||
https://textuploader.com/1dg8d/raw
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Products Compatibility:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
Supported Products: [Only Volume-capable]
|
|
||||||
|
|
||||||
Windows 8 / 8.1 / 10 (all official editions, except Windows 10 S)
|
|
||||||
Windows 7 (Enterprise /N/E, Professional /N/E, Embedded Standard/POSReady/ThinPC)
|
|
||||||
Windows Server 2008 R2 / 2012 / 2012 R2 / 2016 / 2019
|
|
||||||
Office Volume 2010 / 2013 / 2016 / 2019
|
|
||||||
|
|
||||||
[Activation script will convert Office C2R Retail O365/2013/2016/2019 to Volume]
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Unsupported Products:
|
|
||||||
|
|
||||||
Office Retail [Office MSI Retail 2010/2013]
|
|
||||||
Windows Editions which do not support KMS activation by design:
|
|
||||||
Windows Evaluation Editions
|
|
||||||
Windows 7 (Starter, HomeBasic, HomePremium, Ultimate)
|
|
||||||
Windows 10 (Cloud "S", IoTEnterprise, IoTEnterpriseS, ProfessionalSingleLanguage... etc)
|
|
||||||
Windows Server (Server Foundation, Storage Server, Home Server 2011... etc)
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
These editions are only KMS-activatable for 45 days at max:
|
|
||||||
Windows 10 Home edition variants
|
|
||||||
Windows 8.1 Core edition variants, Pro with Media Center, Pro Student
|
|
||||||
|
|
||||||
These editions are only KMS-activatable for 30 days at max:
|
|
||||||
Windows 8 Core edition variants, Pro with Media Center
|
|
||||||
|
|
||||||
Notes:
|
|
||||||
Supported Windows products do need volume conversion, only the GVLK (KMS key) is needed, which
|
|
||||||
the script will install accordingly.
|
|
||||||
KMS Activation works in all (MBR, GPT, UEFI, BIOS) systems.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Switches in the Script:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
* Applies to MAS Separate Files version
|
|
||||||
|
|
||||||
- For unattended mode, run the scripts with /u parameter.
|
|
||||||
|
|
||||||
Activate.cmd /u
|
|
||||||
Uninstall.cmd /u
|
|
||||||
|
|
||||||
To create Renewal Task in unattended mode,
|
|
||||||
Renewal_Setup.cmd /rt
|
|
||||||
|
|
||||||
To create Renewal and Activation Task in unattended mode,
|
|
||||||
Renewal_Setup.cmd /rat
|
|
||||||
|
|
||||||
To create desktop context menu in unattended mode,
|
|
||||||
Renewal_Setup.cmd /dcm
|
|
||||||
|
|
||||||
To skip Windows activation in renewal script,
|
|
||||||
Renewal_Setup.cmd /rat /swa
|
|
||||||
or
|
|
||||||
Renewal_Setup.cmd /dcm /swa
|
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
|
||||||
|
|
||||||
- Activate.cmd
|
|
||||||
|
|
||||||
- To run the script in Debug mode to find out the cause of errors in activation or just details,
|
|
||||||
search "set _Debug=" and change the value from 0 to 1.
|
|
||||||
|
|
||||||
- To replace KMS38 activation with KMS activation, search "set SkipKMS38=" and change the value
|
|
||||||
from 1 to 0.
|
|
||||||
|
|
||||||
- To skip Windows activation, search "set ActWindows=" and change the value from 1 to 0.
|
|
||||||
- To skip Office activation, search "set ActOffice=" and change the value from 1 to 0.
|
|
||||||
- This is not effective if Windows and/or Office installation is already Volume (GVLK installed)
|
|
||||||
- In [Online KMS + HWID] $OEM$ preactivation, Windows KMS activation is turned off
|
|
||||||
by default.
|
|
||||||
|
|
||||||
- To turn OFF auto conversion for Office C2R Retail to Volume, search "set AutoR2V=" and
|
|
||||||
change the value from 1 to 0.
|
|
||||||
|
|
||||||
- To set the script to use only one specific KMS server address, search "set KMS_Server="
|
|
||||||
paste the server address after the = sign.
|
|
||||||
|
|
||||||
- To clear the KMS cache, search "set Clear-KMS-Cache=" and change the value from 0 to 1.
|
|
||||||
- Registered KMS server address (cache) enables the system to automatically renew the license
|
|
||||||
(for next 180 days) every 7 days, as long as the server is online.
|
|
||||||
- This process is the same as how the legal KMS works, so no security program will flag
|
|
||||||
this behavior.
|
|
||||||
- Changing this option here won't have any effect if manual (Desktop Context menu) and/or auto,
|
|
||||||
renewal activation script is installed. [default (0)].
|
|
||||||
- I recommend leaving this option as default (0).
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Manual Activation Process:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- Prerequisite:
|
|
||||||
|
|
||||||
online Public KMS Server List:
|
|
||||||
|
|
||||||
kms.srv.crsoo.com
|
|
||||||
kms.loli.beer
|
|
||||||
kms8.MSGuides.com
|
|
||||||
|
|
||||||
kms9.MSGuides.com
|
|
||||||
kms.zhuxiaole.org
|
|
||||||
kms.lolico.moe
|
|
||||||
kms.moeclub.org
|
|
||||||
|
|
||||||
Generic Volume License Key (GVLK):
|
|
||||||
Thanks to @abbodi1406 for the Key collection.
|
|
||||||
|
|
||||||
GVLK Edition
|
|
||||||
|
|
||||||
Windows 10
|
|
||||||
|
|
||||||
TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 Home
|
|
||||||
3KHY7-WNT83-DGQKR-F7HPR-844BM Home N
|
|
||||||
7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH Home Single Language
|
|
||||||
PVMJN-6DFY6-9CCP6-7BKTT-D3WVR Home China
|
|
||||||
W269N-WFGWX-YVC9B-4J6C9-T83GX Pro
|
|
||||||
MH37W-N47XK-V7XM9-C7227-GCQG9 Pro N
|
|
||||||
6TP4R-GNPTD-KYYHQ-7B7DP-J447Y Pro Education
|
|
||||||
YVWGF-BXNMC-HTQYQ-CPQ99-66QFC Pro Education N
|
|
||||||
NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J Pro Workstation
|
|
||||||
9FNHH-K3HBT-3W4TD-6383H-6XYWF Pro Workstation N
|
|
||||||
NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 Education
|
|
||||||
2WH4N-8QGBV-H22JP-CT43Q-MDWWJ Education N
|
|
||||||
NPPR9-FWDCX-D2C8J-H872K-2YT43 Enterprise
|
|
||||||
DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 Enterprise N
|
|
||||||
YYVX9-NTFWV-6MDM3-9PT4T-4M68B Enterprise G
|
|
||||||
44RPN-FTY23-9VTTB-MP9BX-T84FV Enterprise G N
|
|
||||||
WNMTR-4C88C-JK8YV-HQ7T2-76DF9 Enterprise 2015 LTSB
|
|
||||||
2F77B-TNFGY-69QQF-B8YKP-D69TJ Enterprise 2015 LTSB N
|
|
||||||
DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ Enterprise 2016 LTSB
|
|
||||||
QFFDN-GRT3P-VKWWX-X7T3R-8B639 Enterprise 2016 LTSB N
|
|
||||||
M7XTQ-FN8P6-TTKYV-9D4CC-J462D Enterprise LTSC 2019
|
|
||||||
92NFX-8DJQP-P6BBQ-THF9C-7CG2H Enterprise LTSC 2019 N
|
|
||||||
CPWHC-NT2C7-VYW78-DHDB2-PG3GK Enterprise for Virtual Desktops
|
|
||||||
7NBT4-WGBQX-MP4H7-QXFF8-YP3KX Remote Server
|
|
||||||
NBTWJ-3DR69-3C4V8-C26MC-GQ9M6 Lean
|
|
||||||
|
|
||||||
Windows 8.1
|
|
||||||
|
|
||||||
M9Q9P-WNJJT-6PXPY-DWX8H-6XWKK Core
|
|
||||||
7B9N3-D94CG-YTVHR-QBPX3-RJP64 Core N
|
|
||||||
BB6NG-PQ82V-VRDPW-8XVD2-V8P66 Core Single Language
|
|
||||||
NCTT7-2RGK8-WMHRF-RY7YQ-JTXG3 Core China
|
|
||||||
XYTND-K6QKT-K2MRH-66RTM-43JKP Core ARM
|
|
||||||
GCRJD-8NW9H-F2CDX-CCM8D-9D6T9 Pro
|
|
||||||
HMCNV-VVBFX-7HMBH-CTY9B-B4FXY Pro N
|
|
||||||
789NJ-TQK6T-6XTH8-J39CJ-J8D3P Pro with Media Center
|
|
||||||
MHF9N-XY6XB-WVXMC-BTDCT-MKKG7 Enterprise
|
|
||||||
TT4HM-HN7YT-62K67-RGRQJ-JFFXW Enterprise N
|
|
||||||
NMMPB-38DD4-R2823-62W8D-VXKJB Embedded Industry Pro
|
|
||||||
FNFKF-PWTVT-9RC8H-32HB2-JB34X Embedded Industry Enterprise
|
|
||||||
VHXM3-NR6FT-RY6RT-CK882-KW2CJ Embedded Industry Automotive
|
|
||||||
3PY8R-QHNP9-W7XQD-G6DPH-3J2C9 with Bing
|
|
||||||
Q6HTR-N24GM-PMJFP-69CD8-2GXKR with Bing N
|
|
||||||
KF37N-VDV38-GRRTV-XH8X6-6F3BB with Bing Single Language
|
|
||||||
R962J-37N87-9VVK2-WJ74P-XTMHR with Bing China
|
|
||||||
MX3RK-9HNGX-K3QKC-6PJ3F-W8D7B Pro for Students
|
|
||||||
TNFGH-2R6PB-8XM3K-QYHX2-J4296 Pro for Students N
|
|
||||||
|
|
||||||
Windows 8
|
|
||||||
|
|
||||||
BN3D2-R7TKB-3YPBD-8DRP2-27GG4 Core
|
|
||||||
8N2M2-HWPGY-7PGT9-HGDD8-GVGGY Core N
|
|
||||||
2WN2H-YGCQR-KFX6K-CD6TF-84YXQ Core Single Language
|
|
||||||
4K36P-JN4VD-GDC6V-KDT89-DYFKP Core China
|
|
||||||
DXHJF-N9KQX-MFPVR-GHGQK-Y7RKV Core ARM
|
|
||||||
NG4HW-VH26C-733KW-K6F98-J8CK4 Pro
|
|
||||||
XCVCF-2NXM9-723PB-MHCB7-2RYQQ Pro N
|
|
||||||
GNBB8-YVD74-QJHX6-27H4K-8QHDG Pro with Media Center
|
|
||||||
32JNW-9KQ84-P47T8-D8GGY-CWCK7 Enterprise
|
|
||||||
JMNMF-RHW7P-DMY6X-RF3DR-X2BQT Enterprise N
|
|
||||||
RYXVT-BNQG7-VD29F-DBMRY-HT73M Embedded Industry Pro
|
|
||||||
NKB3R-R2F8T-3XCDP-7Q2KW-XWYQ2 Embedded Industry Enterprise
|
|
||||||
|
|
||||||
Windows 7
|
|
||||||
|
|
||||||
FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4 Professional
|
|
||||||
MRPKT-YTG23-K7D7T-X2JMM-QY7MG Professional N
|
|
||||||
W82YF-2Q76Y-63HXB-FGJG9-GF7QX Professional E
|
|
||||||
33PXH-7Y6KF-2VJC9-XBBR8-HVTHH Enterprise
|
|
||||||
YDRBP-3D83W-TY26F-D46B2-XCKRJ Enterprise N
|
|
||||||
C29WB-22CC8-VJ326-GHFJW-H9DH4 Enterprise E
|
|
||||||
YBYF6-BHCR3-JPKRB-CDW7B-F9BK4 Embedded POSReady 7
|
|
||||||
XGY72-BRBBT-FF8MH-2GG8H-W7KCW Embedded Standard
|
|
||||||
73KQT-CD9G6-K7TQG-66MRP-CQ22C Embedded ThinPC
|
|
||||||
|
|
||||||
Windows Server 2019
|
|
||||||
|
|
||||||
N69G4-B89J2-4G8F4-WWYCC-J464C Standard
|
|
||||||
WMDGN-G9PQG-XVVXX-R3X43-63DFG Datacenter
|
|
||||||
WVDHN-86M7X-466P6-VHXV7-YY726 Essentials
|
|
||||||
FDNH6-VW9RW-BXPJ7-4XTYG-239TB Azure Core
|
|
||||||
N2KJX-J94YW-TQVFB-DG9YT-724CC Standard ACor
|
|
||||||
6NMRW-2C8FM-D24W7-TQWMY-CWH2D Datacenter ACor
|
|
||||||
GRFBW-QNDC4-6QBHG-CCK3B-2PR88 ServerARM64
|
|
||||||
|
|
||||||
Windows Server 2016
|
|
||||||
|
|
||||||
WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY Standard
|
|
||||||
CB7KF-BWN84-R7R2Y-793K2-8XDDG Datacenter
|
|
||||||
JCKRF-N37P4-C2D82-9YXRT-4M63B Essentials
|
|
||||||
QN4C6-GBJD2-FB422-GHWJK-GJG2R Cloud Storage
|
|
||||||
VP34G-4NPPG-79JTQ-864T4-R3MQX Azure Core
|
|
||||||
PTXN8-JFHJM-4WC78-MPCBR-9W4KR Standard ACor
|
|
||||||
2HXDN-KRXHB-GPYC7-YCKFJ-7FVDG Datacenter ACor
|
|
||||||
K9FYF-G6NCK-73M32-XMVPY-F9DRR ServerARM64
|
|
||||||
|
|
||||||
Windows Server 2012 R2
|
|
||||||
|
|
||||||
D2N9P-3P6X9-2R39C-7RTCD-MDVJX Standard
|
|
||||||
W3GGN-FT8W3-Y4M27-J84CP-Q3VJ9 Datacenter
|
|
||||||
KNC87-3J2TX-XB4WP-VCPJV-M4FWM Essentials
|
|
||||||
3NPTF-33KPT-GGBPR-YX76B-39KDD Cloud Storage
|
|
||||||
|
|
||||||
Windows Server 2012
|
|
||||||
|
|
||||||
XC9B7-NBPP2-83J2H-RHMBY-92BT4 Standard
|
|
||||||
48HP8-DN98B-MYWDG-T2DCC-8W83P Datacenter
|
|
||||||
HM7DN-YVMH3-46JC3-XYTG7-CYQJJ MultiPoint Standard
|
|
||||||
XNH6W-2V9GX-RGJ4K-Y8X6F-QGJ2G MultiPoint Premium
|
|
||||||
|
|
||||||
Windows Server 2008 R2
|
|
||||||
|
|
||||||
6TPJF-RBVHG-WBW2R-86QPH-6RTM4 Web
|
|
||||||
TT8MH-CG224-D3D7Q-498W2-9QCTX HPC
|
|
||||||
YC6KT-GKW9T-YTKYR-T4X34-R7VHC Standard
|
|
||||||
74YFP-3QFB3-KQT8W-PMXWJ-7M648 Datacenter
|
|
||||||
489J6-VHDMP-X63PK-3K798-CPX3Y Enterprise
|
|
||||||
GT63C-RJFQ3-4GMB6-BRFB9-CB83V Itanium
|
|
||||||
736RG-XDKJK-V34PF-BHK87-J6X3K MultiPoint Server
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
----------------------------------------------
|
|
||||||
Windows /Server (All VL Supported Versions)
|
|
||||||
----------------------------------------------
|
|
||||||
|
|
||||||
- Connect to the internet.
|
|
||||||
- Open CMD as Admin, and enter the following listed commands in the sequence in which they are given.
|
|
||||||
- Enter Generic Volume License Key (GVLK) (Replace %key% with the key from above list) with
|
|
||||||
the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /ipk %key%
|
|
||||||
|
|
||||||
- Register the KMS Server, (Replace %server% with one of the above-listed servers)
|
|
||||||
(If activation is unsuccessful then try a different server) with the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /skms %server%
|
|
||||||
|
|
||||||
- Activate Windows with the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /ato
|
|
||||||
|
|
||||||
- Check Activation Status with the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /dli
|
|
||||||
|
|
||||||
- Check Activation Expiry Date with the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /xpr
|
|
||||||
|
|
||||||
- Clear the name of the KMS server (Optional) (It'll prevent activation auto-renewal) with the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /ckms
|
|
||||||
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------
|
|
||||||
Office VL Activation (Office 2010, 2013, 2016, 2019) -
|
|
||||||
----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- Connect to the internet.
|
|
||||||
- Open CMD as Admin, and enter the following listed commands in the sequence in which they are given.
|
|
||||||
- If Office is installed as VL (Volume License) then there is no need to enter its key.
|
|
||||||
- If Office is installed as Retail, then you need to convert it to VL, by using C2R-R2V by @abbodi1406
|
|
||||||
https://forums.mydigitallife.net/posts/1150042
|
|
||||||
|
|
||||||
- Change to the directory where Office is installed.
|
|
||||||
If your system is 32-bit Office on 32-bit Windows or 64-bit Office on 64-bit Windows use the following:
|
|
||||||
|
|
||||||
For Office 2016 or 2019 enter the command:
|
|
||||||
|
|
||||||
cd "C:\Program Files\Microsoft Office\Office16"
|
|
||||||
|
|
||||||
For Office 2013 enter the command:
|
|
||||||
|
|
||||||
cd "C:\Program Files\Microsoft Office\Office15"
|
|
||||||
|
|
||||||
For Office 2010 enter the command:
|
|
||||||
|
|
||||||
cd "C:\Program Files\Microsoft Office\Office14"
|
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
If your system is 32-bit Office on 64-bit Windows, use the following:
|
|
||||||
|
|
||||||
For Office 2016 or 2019 enter the command:
|
|
||||||
|
|
||||||
cd "C:\Program Files (x86)\Microsoft Office\Office16"
|
|
||||||
|
|
||||||
For Office 2013 enter the command:
|
|
||||||
|
|
||||||
cd "C:\Program Files (x86)\Microsoft Office\Office15"
|
|
||||||
|
|
||||||
For Office 2010 enter the command:
|
|
||||||
|
|
||||||
cd "C:\Program Files (x86)\Microsoft Office\Office14"
|
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- Once all of that is done correctly, you must register the KMS Server, (In the following,
|
|
||||||
replace %server% with one of the above-listed servers.) (If activation is unsuccessful
|
|
||||||
then try a different server.) with the following command:
|
|
||||||
|
|
||||||
cscript ospp.vbs /sethst:%server%
|
|
||||||
|
|
||||||
- Activate Office with the following command:
|
|
||||||
|
|
||||||
cscript ospp.vbs /act
|
|
||||||
|
|
||||||
- Check Activation Status with the following command:
|
|
||||||
|
|
||||||
cscript ospp.vbs /dstatus
|
|
||||||
|
|
||||||
- Clear the name of the KMS server, (Optional) (It'll prevent activation auto-renewal)
|
|
||||||
with the appropriate following commands:
|
|
||||||
|
|
||||||
To clear the KMS Server name for Office in Win 7, or Office 2010 on Win 8 or Win 10,
|
|
||||||
enter each of the following commands in the sequence which is given:
|
|
||||||
|
|
||||||
set "OSPP=HKLM\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform"
|
|
||||||
reg delete "%OSPP%" /f /v KeyManagementServiceName 2>nul
|
|
||||||
reg delete "%OSPP%" /f /v KeyManagementServicePort 2>nul
|
|
||||||
reg delete "%OSPP%\59a52881-a989-479d-af46-f275c6370663" /f 2>nul
|
|
||||||
reg delete "%OSPP%\0ff1ce15-a989-479d-af46-f275c6370663" /f 2>nul
|
|
||||||
|
|
||||||
To clear the KMS server name for Office (except Office 2010) on Win 8 or Win 10, run the following command:
|
|
||||||
|
|
||||||
set "SPPk=SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform"
|
|
||||||
reg delete "HKLM\%SPPk%" /f /v KeyManagementServiceName 2>nul
|
|
||||||
reg delete "HKLM\%SPPk%" /f /v KeyManagementServicePort 2>nul
|
|
||||||
reg delete "HKLM\%SPPk%\0ff1ce15-a989-479d-af46-f275c6370663" /f 2>nul
|
|
||||||
reg delete "HKEY_USERS\S-1-5-20\%SPPk%\0ff1ce15-a989-479d-af46-f275c6370663" /f 2>nul
|
|
||||||
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Troubleshoot activation issues:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- Make sure the Internet is connected.
|
|
||||||
|
|
||||||
- Reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
Open CMD as Admin, and enter the following command: (For Windows 10\8\8.1)
|
|
||||||
|
|
||||||
Dism /online /Cleanup-Image /RestoreHealth
|
|
||||||
|
|
||||||
- After its done, reboot the system and open CMD as Admin and enter the following command:
|
|
||||||
|
|
||||||
sfc.exe /scannow
|
|
||||||
|
|
||||||
- After it's done, reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
open CMD as administrator again, and enter the following command:
|
|
||||||
|
|
||||||
slmgr.vbs /rearm
|
|
||||||
|
|
||||||
- Reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
You may try to rebuild licensing Tokens.dat as suggested in https://support.microsoft.com/en-us/help/2736303
|
|
||||||
(this will require to repair Office afterwards.)
|
|
||||||
|
|
||||||
- Reboot the system and run the activation script, and if unsuccessful,
|
|
||||||
Try KMS_VL_ALL by @abbodi1406 https://forums.mydigitallife.net/posts/838808/
|
|
||||||
If still unsuccessful, it may be time to start over from the very beginning
|
|
||||||
and do a clean install of windows :D
|
|
||||||
|
|
||||||
-------------------------------
|
|
||||||
|
|
||||||
- If you have issues with Office activation, or got undesired or duplicate licenses (e.g. Office 2016 and 2019):
|
|
||||||
Download Office Scrubber pack from https://forums.mydigitallife.net/posts/1466365/
|
|
||||||
To get rid of any conflicted licenses, run Uninstall_Licenses.cmd, then you must start any
|
|
||||||
Office program to repair the licensing. You may also try Uninstall_Keys.cmd for similar manner.
|
|
||||||
|
|
||||||
If you wish to remove Office and leftovers completely and start clean:
|
|
||||||
Uninstall Office normally from Control Panel / Programs and Feature then run Full_Scrub.cmd
|
|
||||||
afterwards, install new Office.
|
|
||||||
|
|
||||||
- Can't activate Windows 7 with KMS: [Error 0xC004F035]
|
|
||||||
Some OEM licensed computers cannot be activated with KMS on WINDOWS 7.
|
|
||||||
Quote from the MS page https://tinyurl.com/yy8wfu5m
|
|
||||||
'Computers obtained through OEM channels that have an ACPI_SLIC table in the (BIOS) are
|
|
||||||
required to have a valid Windows marker in the same ACPI_SLIC table.
|
|
||||||
---Computers that have an ACPI_SLIC table without a valid Windows marker generate an error
|
|
||||||
when a volume edition of Windows 7 is installed.'
|
|
||||||
|
|
||||||
====================================================================================================
|
|
||||||
Credits:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
@abbodi1406 Activate.cmd (KMS_VL_ALL)
|
|
||||||
https://forums.mydigitallife.net/posts/838808
|
|
||||||
(* With the great help from @RPO, Forked it to work with Multi KMS Servers,
|
|
||||||
Renewal task, Desktop context menu, $OEM$, etc for Online KMS)
|
|
||||||
|
|
||||||
Clear-KMS-Cache.cmd
|
|
||||||
https://forums.mydigitallife.net/posts/1511883
|
|
||||||
(*Applied it as it is)
|
|
||||||
|
|
||||||
Check-Activation-Status-wmic.cmd
|
|
||||||
https://forums.mydigitallife.net/posts/838808
|
|
||||||
(*Applied it as it is)
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Online Public KMS Servers:
|
|
||||||
|
|
||||||
kms.srv.crsoo.com
|
|
||||||
kms.loli.beer
|
|
||||||
kms8.MSGuides.com
|
|
||||||
|
|
||||||
kms9.MSGuides.com
|
|
||||||
kms.zhuxiaole.org
|
|
||||||
kms.lolico.moe
|
|
||||||
kms.moeclub.org
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Special Thanks to @RPO
|
|
||||||
|
|
||||||
For providing great support in making and improvements of this script,
|
|
||||||
To name a few,
|
|
||||||
|
|
||||||
Internet test with Powershell (No ping)
|
|
||||||
KMS server 1688 port test with Powershell
|
|
||||||
Multi KMS server integration
|
|
||||||
Scheduled task to renew the activation
|
|
||||||
|
|
||||||
And for solving countless problems in this batch script.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Kind Help:-
|
|
||||||
|
|
||||||
Thanks for having my back and answering all of my queries. (In no particular order)
|
|
||||||
|
|
||||||
@AveYo aka @BAU, @RPO, @leitek8, @mxman2k, @Yen, @abbodi1406
|
|
||||||
|
|
||||||
@BorrowedWifi For providing support in fixing English grammar errors in the Read Me.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
|
|
||||||
Homepages-
|
|
||||||
NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
||||||
GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
|
|
||||||
Maintained by @WindowsAddict
|
|
||||||
|
|
||||||
====================================================================================================
|
|
@ -1,12 +0,0 @@
|
|||||||
----------------------------------------------------------------------------------------------
|
|
||||||
Activation Type Supported Product Activation Period
|
|
||||||
----------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Digital License - Windows 10 - Permanent
|
|
||||||
KMS38 - Windows 10 / Server - Until the year 2038
|
|
||||||
Online KMS - Windows / Server / Office - For 180 Days, renewal task needs to be
|
|
||||||
created for lifetime auto activation.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
* For more details, use the ReadMe.txt included in the respective activation folders.
|
|
@ -1,120 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
Credits:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
Microsoft Activation Scripts (MAS):
|
|
||||||
|
|
||||||
A collection of scripts for activating Microsoft products using HWID / KMS38 / Online KMS
|
|
||||||
activation methods with a focus on open-source code, less antivirus detection and user-friendliness.
|
|
||||||
|
|
||||||
These scripts are mostly a fork of other honourable developer's tools and scripts.
|
|
||||||
|
|
||||||
Homepages-
|
|
||||||
NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
||||||
GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
|
|
||||||
Maintained by @WindowsAddict
|
|
||||||
|
|
||||||
To achieve this I have used the following projects as the base of this activator.
|
|
||||||
I would like to say thanks to the following authors for making such awesome projects.
|
|
||||||
|
|
||||||
====================================
|
|
||||||
HWID and KMS38 Activation:
|
|
||||||
====================================
|
|
||||||
|
|
||||||
@mspaintmsi Original co-authors of HWID/KMS38 Activation without KMS or predecessor install/upgrade.
|
|
||||||
and Created various methods for HWID/KMS38 Activation
|
|
||||||
*Anonymous https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887
|
|
||||||
https://github.com/massgravel/MASSGRAVE
|
|
||||||
https://gitlab.com/massgrave/massgrave
|
|
||||||
|
|
||||||
@vyvojar Original slshim (slc.dll)
|
|
||||||
https://github.com/vyvojar/slshim/releases
|
|
||||||
|
|
||||||
====================================
|
|
||||||
|
|
||||||
HWID/KMS38 methods Suggestions and improvements:-
|
|
||||||
|
|
||||||
@sponpa New ideas for the HWID/KM38 Generation
|
|
||||||
https://www.nsaneforums.com/topic/316668--/page/21/?tab=comments#comment-1431257
|
|
||||||
|
|
||||||
@leitek8 Improvements for the slc.dll
|
|
||||||
https://www.nsaneforums.com/topic/316668--/page/22/?tab=comments#comment-1438005
|
|
||||||
|
|
||||||
====================================
|
|
||||||
Online KMS Activation:
|
|
||||||
====================================
|
|
||||||
|
|
||||||
@abbodi1406 Activate.cmd (KMS_VL_ALL)
|
|
||||||
https://forums.mydigitallife.net/posts/838808
|
|
||||||
(* With the great help from @RPO, Forked it to work with Multi KMS Servers,
|
|
||||||
Renewal task, Desktop context menu, $OEM$, etc for Online KMS)
|
|
||||||
|
|
||||||
Clear-KMS-Cache.cmd
|
|
||||||
https://forums.mydigitallife.net/posts/1511883
|
|
||||||
(*Applied it as it is)
|
|
||||||
|
|
||||||
Check-Activation-Status-wmic.cmd
|
|
||||||
https://forums.mydigitallife.net/posts/838808
|
|
||||||
(*Applied it as it is)
|
|
||||||
|
|
||||||
====================================
|
|
||||||
|
|
||||||
Online Public KMS Servers:
|
|
||||||
|
|
||||||
kms.srv.crsoo.com
|
|
||||||
kms.loli.beer
|
|
||||||
kms8.MSGuides.com
|
|
||||||
|
|
||||||
kms9.MSGuides.com
|
|
||||||
kms.zhuxiaole.org
|
|
||||||
kms.lolico.moe
|
|
||||||
kms.moeclub.org
|
|
||||||
|
|
||||||
====================================
|
|
||||||
Useful scripts and ideas I used :
|
|
||||||
====================================
|
|
||||||
|
|
||||||
@AveYo (@BAU) Compressed2TXT
|
|
||||||
https://github.com/AveYo/Compressed2TXT
|
|
||||||
(For storing the files in text format)
|
|
||||||
|
|
||||||
Reg_takeownership snippet
|
|
||||||
pastebin.com/XTPt0JSC
|
|
||||||
(*Applied in KMS38 Protection)
|
|
||||||
|
|
||||||
@hearywarlot Elevate program as admin with vbs method
|
|
||||||
https://forums.mydigitallife.net/threads/.74332/
|
|
||||||
|
|
||||||
@dbenham Set buffer height independently of window height
|
|
||||||
https://stackoverflow.com/a/13351373
|
|
||||||
|
|
||||||
@Ratiborus Ratiborus Tools
|
|
||||||
http://forum.ru-board.com/topic.cgi?forum=2&topic=5734#1
|
|
||||||
|
|
||||||
@abbodi1406 Continuously providing best solutions for tons of issues.
|
|
||||||
|
|
||||||
abbodi1406's Batch Scripts Repo
|
|
||||||
https://forums.mydigitallife.net/threads/74197/
|
|
||||||
|
|
||||||
@s1ave77 slave77s S-M-R-T JATDevice MkIII
|
|
||||||
https://forums.mydigitallife.net/threads/44717/
|
|
||||||
|
|
||||||
====================================
|
|
||||||
Kind Help:
|
|
||||||
====================================
|
|
||||||
|
|
||||||
Thanks to the following people for answering all of my queries. (In no particular order)
|
|
||||||
|
|
||||||
@AveYo aka @BAU, @sponpa, @mspaintmsi @RPO, @leitek8, @mxman2k, @Yen, @abbodi1406
|
|
||||||
|
|
||||||
@BorrowedWifi for providing support in fixing English grammar errors in the Read Me.
|
|
||||||
@Chibi ANUBIS for testing scripts for ARM64 system.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Special thanks to @RPO and @abbodi1406,
|
|
||||||
For providing great support and solving countless issues in this tool.
|
|
||||||
|
|
||||||
====================================================================================================
|
|
@ -1,6 +0,0 @@
|
|||||||
[{000214A0-0000-0000-C000-000000000046}]
|
|
||||||
Prop3=19,11
|
|
||||||
[InternetShortcut]
|
|
||||||
IDList=
|
|
||||||
URL=https://pastebin.com/raw/jduBSazJ
|
|
||||||
HotKey=0
|
|
@ -1,621 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
:: =======================================================================================================
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: =======================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
title Extract $OEM$ Folder
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "EchoRed=%_psc% write-host -back Black -fore Red"
|
|
||||||
set "EchoGreen=%_psc% write-host -back Black -fore Green"
|
|
||||||
set "ELine=echo: & %EchoRed% ==== ERROR ==== &echo:"
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
for %%i in (powershell.exe) do if "%%~$path:i"=="" (
|
|
||||||
echo: &echo ==== ERROR ==== &echo:
|
|
||||||
echo Powershell is not installed in the system.
|
|
||||||
echo Aborting...
|
|
||||||
goto Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 7600 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo Project is supported only for Windows 7/8/8.1/10 and their Server equivalent.
|
|
||||||
goto Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Fix for the special characters limitation in path name
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
set "_work=%~dp0"
|
|
||||||
if "%_work:~-1%"=="\" set "_work=%_work:~0,-1%"
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_batp=%_batf:'=''%"
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
mode con cols=98 lines=30
|
|
||||||
|
|
||||||
:: Get correct Desktop Location with powershell
|
|
||||||
:: Written by @dcshoecomp (superuser.com)
|
|
||||||
:: https://superuser.com/a/1413170
|
|
||||||
|
|
||||||
for /f "delims=" %%a in ('%_psc% "& {write-host $([Environment]::GetFolderPath('Desktop'))}"') do Set "desktop=%%a"
|
|
||||||
|
|
||||||
if exist "%desktop%\$OEM$\" (
|
|
||||||
echo _____________________________________________________
|
|
||||||
%ELine%
|
|
||||||
echo $OEM$ folder already exists on the Desktop.
|
|
||||||
echo _____________________________________________________
|
|
||||||
goto Done2
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_dir=%desktop%\$OEM$\$$\Setup\Scripts"
|
|
||||||
set _nofile=
|
|
||||||
|
|
||||||
set "_fdir1=Activators\HWID-KMS38_Activation"
|
|
||||||
set "HWID_Activation.cmd=%_fdir1%\HWID_Activation.cmd"
|
|
||||||
set "KMS38_Activation.cmd=%_fdir1%\KMS38_Activation.cmd"
|
|
||||||
set "ClipUp.exe=%_fdir1%\BIN\ClipUp.exe"
|
|
||||||
set "gatherosstate.exe=%_fdir1%\BIN\gatherosstate.exe"
|
|
||||||
set "slc.dll=%_fdir1%\BIN\slc.dll"
|
|
||||||
set "ARM64_gatherosstate.exe=%_fdir1%\BIN\ARM64_gatherosstate.exe"
|
|
||||||
set "ARM64_slc.dll=%_fdir1%\BIN\ARM64_slc.dll"
|
|
||||||
|
|
||||||
set "_fdir2=Activators\Online_KMS_Activation"
|
|
||||||
set "Activate.cmd=%_fdir2%\Activate.cmd"
|
|
||||||
set "Renewal_Setup.cmd=%_fdir2%\Renewal_Setup.cmd"
|
|
||||||
set "cleanosppx64.exe=%_fdir2%\BIN\cleanosppx64.exe"
|
|
||||||
set "cleanosppx86.exe=%_fdir2%\BIN\cleanosppx86.exe"
|
|
||||||
|
|
||||||
cd /d "!_work!"
|
|
||||||
pushd "!_work!"
|
|
||||||
cd ..
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
if not exist "%HWID_Activation.cmd%" set _nofile=1
|
|
||||||
if not exist "%KMS38_Activation.cmd%" set _nofile=1
|
|
||||||
if not exist "%ClipUp.exe%" set _nofile=1
|
|
||||||
if not exist "%gatherosstate.exe%" set _nofile=1
|
|
||||||
if not exist "%slc.dll%" set _nofile=1
|
|
||||||
if not exist "%ARM64_gatherosstate.exe%" set _nofile=1
|
|
||||||
if not exist "%ARM64_slc.dll%" set _nofile=1
|
|
||||||
|
|
||||||
if not exist "%Activate.cmd%" set _nofile=1
|
|
||||||
if not exist "%Renewal_Setup.cmd%" set _nofile=1
|
|
||||||
if not exist "%cleanosppx64.exe%" set _nofile=1
|
|
||||||
if not exist "%cleanosppx86.exe%" set _nofile=1
|
|
||||||
|
|
||||||
if defined _nofile (
|
|
||||||
echo _____________________________________________________
|
|
||||||
%ELine%
|
|
||||||
echo Some files are missing in the 'Activators' folder.
|
|
||||||
echo _____________________________________________________
|
|
||||||
goto Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:Menu
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo:
|
|
||||||
echo:
|
|
||||||
echo Extract the $OEM$ Folder on your desktop.
|
|
||||||
echo For more details use Read me.
|
|
||||||
echo _______________________________________________________
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [1] HWID ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [2] KMS38 ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [3] HWID, Fallback to KMS38 ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [4] Online KMS ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [5] HWID ^+ Online KMS ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [6] KMS38 ^+ Online KMS ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [7] HWID, Fallback to KMS38 ^+ Online KMS ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^| [8] Exit ^|
|
|
||||||
echo ^| ^|
|
|
||||||
echo ^|_______________________________________________________^|
|
|
||||||
echo:
|
|
||||||
choice /C:12345678 /N /M "> Enter Your Choice [1,2,3,4,5,6,7,8] : "
|
|
||||||
|
|
||||||
if errorlevel 8 exit /b
|
|
||||||
if errorlevel 7 goto:$OEM$HWID_FB_KMS38-KMS
|
|
||||||
if errorlevel 6 goto:$OEM$KMS38KMS
|
|
||||||
if errorlevel 5 goto:$OEM$HWIDKMS
|
|
||||||
if errorlevel 4 goto:$OEM$KMS
|
|
||||||
if errorlevel 3 goto:$OEM$HWID_FB_KMS38
|
|
||||||
if errorlevel 2 goto:$OEM$KMS38
|
|
||||||
if errorlevel 1 goto:$OEM$HWID
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:$OEM$HWID
|
|
||||||
|
|
||||||
cls
|
|
||||||
call :Prep
|
|
||||||
call :HWIDPrep
|
|
||||||
call :export HWIDSetup "%_dir%\SetupComplete.cmd"
|
|
||||||
set error_=
|
|
||||||
call :HWIDPrep2
|
|
||||||
|
|
||||||
if defined error_ goto ErrorFound
|
|
||||||
set "_oem=HWID"
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:HWIDSetup:
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
reg query HKU\S-1-5-19 1>nul 2>nul || (
|
|
||||||
echo ==== Error ====
|
|
||||||
echo Right click on this file and select 'Run as administrator'
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
call "%~dp0HWID_Activation.cmd" /u
|
|
||||||
|
|
||||||
cd /d "%SystemRoot%\Setup\"
|
|
||||||
if exist "%SystemRoot%\Setup\Scripts\" @RD /S /Q "%SystemRoot%\Setup\Scripts\"
|
|
||||||
exit /b
|
|
||||||
:HWIDSetup:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:$OEM$KMS38
|
|
||||||
|
|
||||||
cls
|
|
||||||
call :Prep
|
|
||||||
call :KMS38Prep
|
|
||||||
call :export KMS38Setup "%_dir%\SetupComplete.cmd"
|
|
||||||
set error_=
|
|
||||||
call :KMS38Prep2
|
|
||||||
|
|
||||||
if defined error_ goto ErrorFound
|
|
||||||
set "_oem=KMS38"
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:KMS38Setup:
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
reg query HKU\S-1-5-19 1>nul 2>nul || (
|
|
||||||
echo ==== Error ====
|
|
||||||
echo Right click on this file and select 'Run as administrator'
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
call "%~dp0KMS38_Activation.cmd" /u
|
|
||||||
|
|
||||||
cd /d "%SystemRoot%\Setup\"
|
|
||||||
if exist "%SystemRoot%\Setup\Scripts\" @RD /S /Q "%SystemRoot%\Setup\Scripts\"
|
|
||||||
exit /b
|
|
||||||
:KMS38Setup:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:$OEM$HWID_FB_KMS38
|
|
||||||
|
|
||||||
cls
|
|
||||||
call :Prep
|
|
||||||
|
|
||||||
copy /y /b "%HWID_Activation.cmd%" "%_dir%\HWID_Activation.cmd" %nul%
|
|
||||||
call :KMS38Prep
|
|
||||||
call :export HWID_FB_KMS38 "%_dir%\SetupComplete.cmd"
|
|
||||||
|
|
||||||
set error_=
|
|
||||||
If not exist "%_dir%\HWID_Activation.cmd" (set error_=1)
|
|
||||||
call :KMS38Prep2
|
|
||||||
|
|
||||||
if defined error_ goto ErrorFound
|
|
||||||
set "_oem=HWID`, Fallback to KMS38"
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:HWID_FB_KMS38:
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
reg query HKU\S-1-5-19 1>nul 2>nul || (
|
|
||||||
echo ==== Error ====
|
|
||||||
echo Right click on this file and select 'Run as administrator'
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
|
|
||||||
:: Check Windows Edition
|
|
||||||
set osedition=
|
|
||||||
for /f "tokens=2 delims==" %%a in ('"wmic path SoftwareLicensingProduct where (ApplicationID='55c92734-d682-4d71-983e-d6ec3f16059f' and PartialProductKey is not NULL) get LicenseFamily /VALUE" 2^>nul') do if not errorlevel 1 set "osedition=%%a"
|
|
||||||
if not defined osedition for /f "tokens=3 delims=: " %%a in ('DISM /English /Online /Get-CurrentEdition 2^>nul ^| find /i "Current Edition :"') do set "osedition=%%a"
|
|
||||||
|
|
||||||
:: Check Installation type
|
|
||||||
set instype=
|
|
||||||
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v InstallationType 2^>nul') do if not errorlevel 1 set "instype=%%b"
|
|
||||||
|
|
||||||
set KMS38=
|
|
||||||
if "%winbuild%" GEQ "17763" if "%osedition%"=="EnterpriseS" set KMS38=1
|
|
||||||
if "%winbuild%" GEQ "17763" if "%osedition%"=="EnterpriseSN" set KMS38=1
|
|
||||||
if "%osedition%"=="EnterpriseG" set KMS38=1
|
|
||||||
if "%osedition%"=="EnterpriseGN" set KMS38=1
|
|
||||||
if not "%instype%"=="Client" echo %osedition%| findstr /I /B Server 1>nul && set KMS38=1
|
|
||||||
|
|
||||||
if defined KMS38 (
|
|
||||||
call "%~dp0KMS38_Activation.cmd" /u
|
|
||||||
) else (
|
|
||||||
call "%~dp0HWID_Activation.cmd" /u
|
|
||||||
)
|
|
||||||
|
|
||||||
cd /d "%SystemRoot%\Setup\"
|
|
||||||
if exist "%SystemRoot%\Setup\Scripts\" @RD /S /Q "%SystemRoot%\Setup\Scripts\"
|
|
||||||
exit /b
|
|
||||||
:HWID_FB_KMS38:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:$OEM$KMS
|
|
||||||
|
|
||||||
cls
|
|
||||||
call :Prep
|
|
||||||
call :KMSPrep
|
|
||||||
call :export KMSSetup "%_dir%\SetupComplete.cmd"
|
|
||||||
set error_=
|
|
||||||
call :KMSPrep2
|
|
||||||
|
|
||||||
if defined error_ goto ErrorFound
|
|
||||||
set "_oem=Online KMS"
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:KMSSetup:
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS Renewal And Activation Task
|
|
||||||
set Renewal_And_Activation_Task=1
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS activation desktop context menu
|
|
||||||
set Desktop_context_menu=1
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
reg query HKU\S-1-5-19 1>nul 2>nul || (
|
|
||||||
echo ==== Error ====
|
|
||||||
echo Right click on this file and select 'Run as administrator'
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
if %Renewal_And_Activation_Task% EQU 1 call "%~dp0Renewal_Setup.cmd" /rat
|
|
||||||
if %Desktop_context_menu% EQU 1 call "%~dp0Renewal_Setup.cmd" /dcm
|
|
||||||
|
|
||||||
cd /d "%SystemRoot%\Setup\"
|
|
||||||
if exist "%SystemRoot%\Setup\Scripts\" @RD /S /Q "%SystemRoot%\Setup\Scripts\"
|
|
||||||
exit /b
|
|
||||||
:KMSSetup:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:$OEM$HWIDKMS
|
|
||||||
|
|
||||||
cls
|
|
||||||
call :Prep
|
|
||||||
call :HWIDPrep
|
|
||||||
call :KMSPrep
|
|
||||||
|
|
||||||
call :export HWIDKMSSetup "%_dir%\SetupComplete.cmd"
|
|
||||||
|
|
||||||
set error_=
|
|
||||||
call :HWIDPrep2
|
|
||||||
call :KMSPrep2
|
|
||||||
|
|
||||||
if defined error_ goto ErrorFound
|
|
||||||
set "_oem=HWID `+ Online KMS"
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:HWIDKMSSetup:
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS Renewal And Activation Task
|
|
||||||
set Renewal_And_Activation_Task=1
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS activation desktop context menu
|
|
||||||
set Desktop_context_menu=1
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
reg query HKU\S-1-5-19 1>nul 2>nul || (
|
|
||||||
echo ==== Error ====
|
|
||||||
echo Right click on this file and select 'Run as administrator'
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
call "%~dp0HWID_Activation.cmd" /u
|
|
||||||
if defined HWIDAct set SkipWinAct=/swa
|
|
||||||
|
|
||||||
if %Renewal_And_Activation_Task% EQU 1 call "%~dp0Renewal_Setup.cmd" /rat %SkipWinAct%
|
|
||||||
if %Desktop_context_menu% EQU 1 call "%~dp0Renewal_Setup.cmd" /dcm %SkipWinAct%
|
|
||||||
|
|
||||||
cd /d "%SystemRoot%\Setup\"
|
|
||||||
if exist "%SystemRoot%\Setup\Scripts\" @RD /S /Q "%SystemRoot%\Setup\Scripts\"
|
|
||||||
exit /b
|
|
||||||
:HWIDKMSSetup:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:$OEM$KMS38KMS
|
|
||||||
|
|
||||||
cls
|
|
||||||
call :Prep
|
|
||||||
call :KMS38Prep
|
|
||||||
call :KMSPrep
|
|
||||||
call :export KMS38KMSSetup "%_dir%\SetupComplete.cmd"
|
|
||||||
set error_=
|
|
||||||
call :KMS38Prep2
|
|
||||||
call :KMSPrep2
|
|
||||||
|
|
||||||
if defined error_ goto ErrorFound
|
|
||||||
set "_oem=KMS38 `+ Online KMS"
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:KMS38KMSSetup:
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS Renewal And Activation Task
|
|
||||||
set Renewal_And_Activation_Task=1
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS activation desktop context menu
|
|
||||||
set Desktop_context_menu=1
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
reg query HKU\S-1-5-19 1>nul 2>nul || (
|
|
||||||
echo ==== Error ====
|
|
||||||
echo Right click on this file and select 'Run as administrator'
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
call "%~dp0KMS38_Activation.cmd" /u
|
|
||||||
|
|
||||||
if %Renewal_And_Activation_Task% EQU 1 call "%~dp0Renewal_Setup.cmd" /rat
|
|
||||||
if %Desktop_context_menu% EQU 1 call "%~dp0Renewal_Setup.cmd" /dcm
|
|
||||||
|
|
||||||
cd /d "%SystemRoot%\Setup\"
|
|
||||||
if exist "%SystemRoot%\Setup\Scripts\" @RD /S /Q "%SystemRoot%\Setup\Scripts\"
|
|
||||||
exit /b
|
|
||||||
:KMS38KMSSetup:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:$OEM$HWID_FB_KMS38-KMS
|
|
||||||
|
|
||||||
cls
|
|
||||||
call :Prep
|
|
||||||
|
|
||||||
copy /y /b "%HWID_Activation.cmd%" "%_dir%\HWID_Activation.cmd" %nul%
|
|
||||||
call :KMS38Prep
|
|
||||||
call :KMSPrep
|
|
||||||
call :export HWID_FB_KMS38-KMSSetup "%_dir%\SetupComplete.cmd"
|
|
||||||
|
|
||||||
set error_=
|
|
||||||
If not exist "%_dir%\HWID_Activation.cmd" (set error_=1)
|
|
||||||
call :KMS38Prep2
|
|
||||||
call :KMSPrep2
|
|
||||||
|
|
||||||
if defined error_ goto ErrorFound
|
|
||||||
set "_oem=HWID`, Fallback to KMS38 `+ Online KMS"
|
|
||||||
goto Done
|
|
||||||
|
|
||||||
:HWID_FB_KMS38-KMSSetup:
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS Renewal And Activation Task
|
|
||||||
set Renewal_And_Activation_Task=1
|
|
||||||
|
|
||||||
:: Change value from 1 to 0 to disable KMS activation desktop context menu
|
|
||||||
set Desktop_context_menu=1
|
|
||||||
|
|
||||||
============================================================================
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
reg query HKU\S-1-5-19 1>nul 2>nul || (
|
|
||||||
echo ==== Error ====
|
|
||||||
echo Right click on this file and select 'Run as administrator'
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
|
|
||||||
:: Check Windows Edition
|
|
||||||
set osedition=
|
|
||||||
for /f "tokens=2 delims==" %%a in ('"wmic path SoftwareLicensingProduct where (ApplicationID='55c92734-d682-4d71-983e-d6ec3f16059f' and PartialProductKey is not NULL) get LicenseFamily /VALUE" 2^>nul') do if not errorlevel 1 set "osedition=%%a"
|
|
||||||
if not defined osedition for /f "tokens=3 delims=: " %%a in ('DISM /English /Online /Get-CurrentEdition 2^>nul ^| find /i "Current Edition :"') do set "osedition=%%a"
|
|
||||||
|
|
||||||
:: Check Installation type
|
|
||||||
set instype=
|
|
||||||
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v InstallationType 2^>nul') do if not errorlevel 1 set "instype=%%b"
|
|
||||||
|
|
||||||
set KMS38=
|
|
||||||
if "%winbuild%" GEQ "17763" if "%osedition%"=="EnterpriseS" set KMS38=1
|
|
||||||
if "%winbuild%" GEQ "17763" if "%osedition%"=="EnterpriseSN" set KMS38=1
|
|
||||||
if "%osedition%"=="EnterpriseG" set KMS38=1
|
|
||||||
if "%osedition%"=="EnterpriseGN" set KMS38=1
|
|
||||||
if not "%instype%"=="Client" echo %osedition%| findstr /I /B Server 1>nul && set KMS38=1
|
|
||||||
|
|
||||||
if defined KMS38 (
|
|
||||||
call "%~dp0KMS38_Activation.cmd" /u
|
|
||||||
) else (
|
|
||||||
call "%~dp0HWID_Activation.cmd" /u
|
|
||||||
if defined HWIDAct set SkipWinAct=/swa
|
|
||||||
)
|
|
||||||
|
|
||||||
if %Renewal_And_Activation_Task% EQU 1 call "%~dp0Renewal_Setup.cmd" /rat %SkipWinAct%
|
|
||||||
if %Desktop_context_menu% EQU 1 call "%~dp0Renewal_Setup.cmd" /dcm %SkipWinAct%
|
|
||||||
|
|
||||||
cd /d "%SystemRoot%\Setup\"
|
|
||||||
if exist "%SystemRoot%\Setup\Scripts\" @RD /S /Q "%SystemRoot%\Setup\Scripts\"
|
|
||||||
exit /b
|
|
||||||
:HWID_FB_KMS38-KMSSetup:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:ErrorFound
|
|
||||||
|
|
||||||
%ELine%
|
|
||||||
echo $OEM$ Folder was not created successfully...
|
|
||||||
goto :Done2
|
|
||||||
:Done
|
|
||||||
echo ________________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
%EchoGreen% %_oem% `$OEM`$ folder is successfully created on the Desktop.
|
|
||||||
echo ________________________________________________________________________________________________
|
|
||||||
:Done2
|
|
||||||
echo:
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:Prep
|
|
||||||
|
|
||||||
cd /d "%desktop%"
|
|
||||||
md "%desktop%\$OEM$\$$\Setup\Scripts\"
|
|
||||||
md "%desktop%\$OEM$\$$\Setup\Scripts\BIN"
|
|
||||||
|
|
||||||
cd /d "!_work!"
|
|
||||||
pushd "!_work!"
|
|
||||||
cd ..
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:HWIDPrep
|
|
||||||
|
|
||||||
copy /y /b "%HWID_Activation.cmd%" "%_dir%\HWID_Activation.cmd" %nul%
|
|
||||||
copy /y /b "%gatherosstate.exe%" "%_dir%\BIN\gatherosstate.exe" %nul%
|
|
||||||
copy /y /b "%slc.dll%" "%_dir%\BIN\slc.dll" %nul%
|
|
||||||
copy /y /b "%ARM64_gatherosstate.exe%" "%_dir%\BIN\ARM64_gatherosstate.exe" %nul%
|
|
||||||
copy /y /b "%ARM64_slc.dll%" "%_dir%\BIN\ARM64_slc.dll" %nul%
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:KMS38Prep
|
|
||||||
|
|
||||||
copy /y /b "%KMS38_Activation.cmd%" "%_dir%\KMS38_Activation.cmd" %nul%
|
|
||||||
copy /y /b "%ClipUp.exe%" "%_dir%\BIN\ClipUp.exe" %nul%
|
|
||||||
copy /y /b "%gatherosstate.exe%" "%_dir%\BIN\gatherosstate.exe" %nul%
|
|
||||||
copy /y /b "%slc.dll%" "%_dir%\BIN\slc.dll" %nul%
|
|
||||||
copy /y /b "%ARM64_gatherosstate.exe%" "%_dir%\BIN\ARM64_gatherosstate.exe" %nul%
|
|
||||||
copy /y /b "%ARM64_slc.dll%" "%_dir%\BIN\ARM64_slc.dll" %nul%
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:KMSPrep
|
|
||||||
|
|
||||||
copy /y /b "%Activate.cmd%" "%_dir%\Activate.cmd" %nul%
|
|
||||||
copy /y /b "%Renewal_Setup.cmd%" "%_dir%\Renewal_Setup.cmd" %nul%
|
|
||||||
copy /y /b "%cleanosppx64.exe%" "%_dir%\BIN\cleanosppx64.exe" %nul%
|
|
||||||
copy /y /b "%cleanosppx86.exe%" "%_dir%\BIN\cleanosppx86.exe" %nul%
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:HWIDPrep2
|
|
||||||
|
|
||||||
If not exist "%_dir%\HWID_Activation.cmd" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\gatherosstate.exe" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\slc.dll" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\ARM64_gatherosstate.exe" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\ARM64_slc.dll" (set error_=1)
|
|
||||||
If not exist "%_dir%\SetupComplete.cmd" (set error_=1)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:KMS38Prep2
|
|
||||||
|
|
||||||
If not exist "%_dir%\KMS38_Activation.cmd" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\ClipUp.exe" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\gatherosstate.exe" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\slc.dll" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\ARM64_gatherosstate.exe" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\ARM64_slc.dll" (set error_=1)
|
|
||||||
If not exist "%_dir%\SetupComplete.cmd" (set error_=1)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:KMSPrep2
|
|
||||||
|
|
||||||
If not exist "%_dir%\Activate.cmd" (set error_=1)
|
|
||||||
If not exist "%_dir%\Renewal_Setup.cmd" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\cleanosppx64.exe" (set error_=1)
|
|
||||||
If not exist "%_dir%\BIN\cleanosppx86.exe" (set error_=1)
|
|
||||||
If not exist "%_dir%\SetupComplete.cmd" (set error_=1)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Extract the text from batch script without character and file encoding issue
|
|
||||||
:: Thanks to @abbodi1406
|
|
||||||
|
|
||||||
:export
|
|
||||||
%nul% %_psc% "$f=[io.file]::ReadAllText('!_batp!') -split \":%~1\:.*`r`n\"; [io.file]::WriteAllText('%~2',$f[1].Trim(),[System.Text.Encoding]::ASCII);" &exit/b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,123 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
$OEM$ Folders [Windows Pre-Activation]:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- To create a Preactivated Windows installation .iso, do the following things:
|
|
||||||
Copy the "$OEM$" folder to the "sources" folder in the Windows installation media (.iso or USB).
|
|
||||||
The directory will appear like this: \sources\$OEM$ in your altered .iso or on your bootable
|
|
||||||
USB drive.
|
|
||||||
Now use this .iso or bootable USB drive to install Windows and it will either already be activated
|
|
||||||
(KMS38) as soon as it boots, or will self-activate at first internet contact.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
HWID:
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- When using Digital License (HWID), no files are stored on the system, and when connected to the
|
|
||||||
internet for the first time, the system will self-activate at that time.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
KMS38:
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- When using KMS38, no files are stored on the system, and Windows becomes activated immediately
|
|
||||||
without further actions or connectivity of any kind being required.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
Online KMS (separately, or in combination with HWID or KMS38):
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- It creates the following 2 Activation/Renewal Methods. You can turn off any of them in
|
|
||||||
setupcomplete.cmd file
|
|
||||||
|
|
||||||
----------------------------------------------------------
|
|
||||||
|
|
||||||
1- Automatic Renewal via Task Scheduler---
|
|
||||||
|
|
||||||
It creates following files and tasks,
|
|
||||||
|
|
||||||
Files:
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx64.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx86.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Activate.cmd
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Info.txt
|
|
||||||
|
|
||||||
Scheduled Tasks:
|
|
||||||
\Online_KMS_Activation_Script-Renewal (Weekly)
|
|
||||||
\Online_KMS_Activation_Script-Run_Once (Activation Task)
|
|
||||||
|
|
||||||
The scheduled task runs only if the system is connected to the Internet.
|
|
||||||
Activation Task will run on the system login and after successful activation and registering
|
|
||||||
online KMS server, this task will delete itself. leaving behind only one task to run weekly
|
|
||||||
for the lifetime of the system.
|
|
||||||
|
|
||||||
----------------------------------------------------------
|
|
||||||
|
|
||||||
2- Manual Renewal via Desktop Context Menu---
|
|
||||||
|
|
||||||
It creates Desktop context Menu for manual activation and renewal.
|
|
||||||
It creates the following files and registry entries.
|
|
||||||
|
|
||||||
Files:
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx64.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\BIN\cleanosppx86.exe
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Activate.cmd
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Info.txt
|
|
||||||
|
|
||||||
Registry entries:
|
|
||||||
HKCR\DesktopBackground\shell\Activate Windows - Office
|
|
||||||
HKCR\DesktopBackground\shell\Activate Windows - Office\command
|
|
||||||
|
|
||||||
It creates an easy to reach the Desktop context menu for the manual activation renewal.
|
|
||||||
|
|
||||||
----------------------------------------------------------
|
|
||||||
|
|
||||||
d30a0e4e5911d3ca705617d17225372731c770e2 *cleanosppx64.exe Virus Total = 0/66
|
|
||||||
39ed8659e7ca16aaccb86def94ce6cec4c847dd6 *cleanosppx86.exe Virus Total = 1/66
|
|
||||||
|
|
||||||
Virus Total Report Date: 12-11-2019
|
|
||||||
|
|
||||||
These files are official Microsoft files and in this script, these are used in
|
|
||||||
cleaning office license in C2R Retail office to VL conversion process.
|
|
||||||
|
|
||||||
The source of these files is the 'old' version of Microsoft Tool O15CTRRemove.diagcab
|
|
||||||
You can get the original file here https://s.put.re/WFuXpyWA.zip
|
|
||||||
|
|
||||||
----------------------------------------------------------
|
|
||||||
|
|
||||||
IMPORTANT NOTE - Some sensitive AV's may flag the Automatic Renewal via the Task, and not
|
|
||||||
because of KMS, because for them it's suspicious to run long scripts in the background as Tasks.
|
|
||||||
|
|
||||||
It's recommended to set exclusions in Antivirus for
|
|
||||||
C:\ProgramData\Online_KMS_Activation\Activate.cmd
|
|
||||||
|
|
||||||
----------------------------------------------------------
|
|
||||||
|
|
||||||
- When using Online KMS plus HWID Digital License, Online KMS script will be set to skip Windows
|
|
||||||
activation (if the HWID activation was applied but was not successful due to lack of internet
|
|
||||||
at the time of installation of Windows) but will register the KMS for other products, and all
|
|
||||||
later installed Volume License (VL) products (MS Office) will self-activate when going online.
|
|
||||||
|
|
||||||
- When using Online KMS plus KMS38, Online KMS will not skip Windows activation but skip KMS38
|
|
||||||
activation and will register the KMS for other products, and all subsequently-installed Volume
|
|
||||||
License (VL) products (MS Office) will self-activate when going online.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
HWID (Fallback to KMS38):
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
- In this method, KMS38 will be used for the activation in case the Windows version is not
|
|
||||||
supported by HWID. For example, Windows 10 LTSC and Windows server.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
Activation Type Supported Product Activation Period
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Digital License - Windows 10 - Permanent
|
|
||||||
KMS38 - Windows 10 / Server - Until the year 2038
|
|
||||||
Online KMS - Windows / Server / Office - For 180 Days, renewal task needs to be
|
|
||||||
created for lifetime auto-activation.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
* For more details, use the ReadMe.txt included in the respective activation folders.
|
|
@ -1,412 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
:: =======================================================================================================
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: =======================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
title Protect / Unprotect KMS38 Activation
|
|
||||||
set _elev=
|
|
||||||
if /i "%~1"=="-el" set _elev=1
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "Red="white" "DarkRed""
|
|
||||||
set "Green="white" "DarkGreen""
|
|
||||||
set "Magenta="white" "darkmagenta""
|
|
||||||
set "Gray="white" "darkgray""
|
|
||||||
set "Black="white" "Black""
|
|
||||||
set "ELine=echo: &call :PU_color "==== ERROR ====" %Red% &echo:"
|
|
||||||
set line=__________________________________________________________________________________________________
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
for %%i in (powershell.exe) do if "%%~$path:i"=="" (
|
|
||||||
echo: &echo ==== ERROR ==== &echo:
|
|
||||||
echo Powershell is not installed in the system.
|
|
||||||
echo Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 14393 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo Project is supported only for Windows 10 / Server 1607 [14393] and later builds.
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Elevate script as admin and pass arguments and preventing loop
|
|
||||||
:: Thanks to @hearywarlot [ https://forums.mydigitallife.net/threads/.74332/ ] for the VBS method.
|
|
||||||
:: Thanks to @abbodi1406 for the powershell method and solving special characters issue in file path name.
|
|
||||||
|
|
||||||
%nul% reg query HKU\S-1-5-19 && (
|
|
||||||
goto :Passed
|
|
||||||
) || (
|
|
||||||
if defined _elev goto :E_Admin
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_vbsf=%temp%\admin.vbs"
|
|
||||||
set _PSarg="""%~f0""" -el
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
(
|
|
||||||
echo Set strArg=WScript.Arguments.Named
|
|
||||||
echo Set strRdlproc = CreateObject^("WScript.Shell"^).Exec^("rundll32 kernel32,Sleep"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& strRdlproc.ProcessId ^& "'"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& .ParentProcessId ^& "'"^)
|
|
||||||
echo If InStr ^(.CommandLine, WScript.ScriptName^) ^<^> 0 Then
|
|
||||||
echo strLine = Mid^(.CommandLine, InStr^(.CommandLine , "/File:"^) + Len^(strArg^("File"^)^) + 8^)
|
|
||||||
echo End If
|
|
||||||
echo End With
|
|
||||||
echo .Terminate
|
|
||||||
echo End With
|
|
||||||
echo CreateObject^("Shell.Application"^).ShellExecute "cmd.exe", "/c " ^& chr^(34^) ^& chr^(34^) ^& strArg^("File"^) ^& chr^(34^) ^& strLine ^& chr^(34^), "", "runas", 1
|
|
||||||
)>"!_vbsf!"
|
|
||||||
|
|
||||||
(%nul% cscript //NoLogo "!_vbsf!" /File:"!_batf!" -el) && (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
%nul% %_psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && (
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
goto :E_Admin
|
|
||||||
)
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:E_Admin
|
|
||||||
%ELine%
|
|
||||||
echo This script require administrator privileges.
|
|
||||||
echo To do so, right click on this script and select 'Run as administrator'.
|
|
||||||
goto PU_Done
|
|
||||||
|
|
||||||
:Passed
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
mode con: cols=98 lines=30
|
|
||||||
|
|
||||||
set slp=SoftwareLicensingProduct
|
|
||||||
set sls=SoftwareLicensingService
|
|
||||||
set wApp=55c92734-d682-4d71-983e-d6ec3f16059f
|
|
||||||
set "SPPk=SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform"
|
|
||||||
|
|
||||||
:: Fix for the special characters limitation in path name
|
|
||||||
:: Written by @abbodi1406
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_batp=%_batf:'=''%"
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
:: Check Windows OS name
|
|
||||||
|
|
||||||
set winos=
|
|
||||||
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
if not defined winos for /f "tokens=2* delims== " %%a in ('"wmic os get caption /value" 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo:
|
|
||||||
echo %line%
|
|
||||||
echo:
|
|
||||||
echo [1] Protect KMS38 Activation from being overwritten by 180 days KMS Activators
|
|
||||||
echo:
|
|
||||||
echo [2] Undo changes
|
|
||||||
echo:
|
|
||||||
echo [3] Exit
|
|
||||||
echo:
|
|
||||||
echo %line%
|
|
||||||
echo:
|
|
||||||
choice /C:123 /N /M "> Enter Your Choice [1,2,3] : "
|
|
||||||
|
|
||||||
if errorlevel 3 exit /b
|
|
||||||
if errorlevel 2 goto Undo
|
|
||||||
if errorlevel 1 goto Protect
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:Protect
|
|
||||||
|
|
||||||
cls
|
|
||||||
|
|
||||||
:: Check KMS client setup key
|
|
||||||
|
|
||||||
set _gvlk=
|
|
||||||
wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get ProductKeyChannel 2>nul | findstr /i GVLK 1>nul && (set _gvlk=1)
|
|
||||||
|
|
||||||
if not defined _gvlk (
|
|
||||||
%ELine%
|
|
||||||
echo System is not activated with KMS38. ^(KMS Key is not installed^) Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Activation Grace Period
|
|
||||||
|
|
||||||
set gpr=
|
|
||||||
for /f "tokens=2 delims==" %%# in ('"wmic path %slp% where (ApplicationID='%wApp%' and Description like '%%KMSCLIENT%%' and PartialProductKey is not NULL) get GracePeriodRemaining /VALUE" ') do set "gpr=%%#"
|
|
||||||
|
|
||||||
if "%gpr%" LEQ "259200" (
|
|
||||||
%ELine%
|
|
||||||
echo System is not activated with KMS38. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check SKU value
|
|
||||||
|
|
||||||
set SKU=
|
|
||||||
for /f "tokens=2 delims==" %%a IN ('"wmic Path Win32_OperatingSystem Get OperatingSystemSKU /format:LIST" 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
if not defined SKU for /f "tokens=3 delims=." %%a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions" /v OSProductPfn 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
|
|
||||||
if "%osSKU%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo SKU value was not detected properly. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
set osedition=
|
|
||||||
call :K38_CheckEdition %nul%
|
|
||||||
|
|
||||||
if "%osedition%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo OS Edition was not detected properly. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Activation ID
|
|
||||||
|
|
||||||
set app=
|
|
||||||
for /f "tokens=2 delims==" %%a in ('"wmic path %slp% where (ApplicationID='%wApp%' and LicenseFamily='%osedition%' and Description like '%%KMSCLIENT%%') get ID /VALUE" 2^>nul') do set "app=%%a"
|
|
||||||
|
|
||||||
if "%app%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo Activation ID was not detected properly. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call ClearKeyManagementServiceMachine %nul%
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call ClearKeyManagementServicePort %nul%
|
|
||||||
|
|
||||||
reg query "HKLM\%SPPk%\%wApp%" %nul% && (
|
|
||||||
%nul% call :reg_takeownership "HKLM\%SPPk%\%wApp%" FullControl Allow S-1-5-32-544
|
|
||||||
reg delete "HKLM\%SPPk%\%wApp%" /f %nul%
|
|
||||||
reg delete "HKU\S-1-5-20\%SPPk%\%wApp%" /f %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
reg query "HKLM\%SPPk%\%wApp%" %nul% && (
|
|
||||||
%ELine%
|
|
||||||
echo Registry Key was not cleared successfully. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Set specific KMS host to Local Host
|
|
||||||
:: Thanks to @abbodi1406
|
|
||||||
|
|
||||||
set setkms_error=
|
|
||||||
|
|
||||||
wmic path %slp% where ID='%app%' call ClearKeyManagementServiceMachine %nul% || (set setkms_error=1)
|
|
||||||
wmic path %slp% where ID='%app%' call ClearKeyManagementServicePort %nul% || (set setkms_error=1)
|
|
||||||
wmic path %slp% where ID='%app%' call SetKeyManagementServiceMachine MachineName="127.0.0.2" %nul% || (set setkms_error=1)
|
|
||||||
wmic path %slp% where ID='%app%' call SetKeyManagementServicePort 1688 %nul% || (set setkms_error=1)
|
|
||||||
|
|
||||||
if defined setkms_error (
|
|
||||||
reg delete "HKLM\%SPPk%\%wApp%" /f %nul%
|
|
||||||
reg delete "HKU\S-1-5-20\%SPPk%\%wApp%" /f %nul%
|
|
||||||
%ELine%
|
|
||||||
echo Specific KMS host to Local Host was not properly applied. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
%nul% call :reg_takeownership "HKLM\%SPPk%\%wApp%" "SetValue, Delete" Deny S-1-5-32-544
|
|
||||||
|
|
||||||
reg delete "HKLM\%SPPk%\%wApp%" /f %nul%
|
|
||||||
reg query "HKLM\%SPPk%\%wApp%" %nul% || (
|
|
||||||
%ELine%
|
|
||||||
echo Registry Key was not protected properly. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Activation Grace Period
|
|
||||||
|
|
||||||
set gpr=
|
|
||||||
for /f "tokens=2 delims==" %%# in ('"wmic path %slp% where (ApplicationID='%wApp%' and Description like '%%KMSCLIENT%%' and PartialProductKey is not NULL) get GracePeriodRemaining /VALUE" ') do set "gpr=%%#"
|
|
||||||
|
|
||||||
if "%gpr%" LEQ "259200" (
|
|
||||||
%ELine%
|
|
||||||
echo System is not activated with KMS38.
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo:
|
|
||||||
echo %line%
|
|
||||||
echo:
|
|
||||||
echo Specific KMS host set to 127.0.0.2 ^(Local Host^) successfully.
|
|
||||||
echo:
|
|
||||||
echo Registry item locked successfully.
|
|
||||||
echo HKLM\%SPPk%\%wApp%
|
|
||||||
echo:
|
|
||||||
call :PU_color "%winos% - KMS38 Activation is now protected." %Green%
|
|
||||||
echo:
|
|
||||||
echo Now you need to activate Office with KMS ^(If required^)
|
|
||||||
echo:
|
|
||||||
echo %line%
|
|
||||||
|
|
||||||
goto PU_Done
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:Undo
|
|
||||||
|
|
||||||
cls
|
|
||||||
set exist_=
|
|
||||||
reg query "HKLM\%SPPk%\%wApp%" %nul% && (set exist_=1)
|
|
||||||
|
|
||||||
if defined exist_ (
|
|
||||||
%nul% call :reg_takeownership "HKLM\%SPPk%\%wApp%" FullControl Allow S-1-5-32-544
|
|
||||||
reg delete "HKLM\%SPPk%\%wApp%" /f %nul%
|
|
||||||
reg delete "HKU\S-1-5-20\%SPPk%\%wApp%" /f %nul%
|
|
||||||
)
|
|
||||||
|
|
||||||
reg query "HKLM\%SPPk%\%wApp%" %nul% && (
|
|
||||||
%ELine%
|
|
||||||
echo Registry Key was not cleared successfully. Aborting...
|
|
||||||
goto PU_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
echo:
|
|
||||||
echo %line%
|
|
||||||
echo:
|
|
||||||
if defined exist_ (
|
|
||||||
echo Registry item deleted successfully.
|
|
||||||
echo HKLM\%SPPk%\%wApp%
|
|
||||||
echo:
|
|
||||||
call :PU_color "KMS38 Activation is now unprotected [set to default]" %Green%
|
|
||||||
) else (
|
|
||||||
call :PU_color "It is already unprotected [set to default]" %Green%
|
|
||||||
)
|
|
||||||
echo:
|
|
||||||
echo %line%
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:PU_Done
|
|
||||||
echo:
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:PU_color
|
|
||||||
|
|
||||||
%_psc% write-host '%1' -fore '%2' -back '%3'
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
:K38_CheckEdition
|
|
||||||
|
|
||||||
for %%# in (
|
|
||||||
4-Enterprise
|
|
||||||
7-ServerStandard
|
|
||||||
8-ServerDatacenter
|
|
||||||
27-EnterpriseN
|
|
||||||
48-Professional
|
|
||||||
49-ProfessionalN
|
|
||||||
50-ServerSolution
|
|
||||||
98-CoreN
|
|
||||||
99-CoreCountrySpecific
|
|
||||||
100-CoreSingleLanguage
|
|
||||||
101-Core
|
|
||||||
110-ServerCloudStorage
|
|
||||||
120-ServerARM64
|
|
||||||
121-Education
|
|
||||||
122-EducationN
|
|
||||||
125-EnterpriseS
|
|
||||||
126-EnterpriseSN
|
|
||||||
145-ServerDatacenterACor
|
|
||||||
146-ServerStandardACor
|
|
||||||
161-ProfessionalWorkstation
|
|
||||||
162-ProfessionalWorkstationN
|
|
||||||
164-ProfessionalEducation
|
|
||||||
165-ProfessionalEducationN
|
|
||||||
168-ServerAzureCor
|
|
||||||
171-EnterpriseG
|
|
||||||
172-EnterpriseGN
|
|
||||||
175-ServerRdsh
|
|
||||||
183-CloudE
|
|
||||||
) do for /f "tokens=1,2 delims=-" %%A in ("%%#") do (
|
|
||||||
if %osSKU%==%%A set "osedition=%%B"
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Reg_takeownership snippet
|
|
||||||
:: Written by @AveYo aka @BAU
|
|
||||||
:: pastebin.com/XTPt0JSC
|
|
||||||
|
|
||||||
:reg_takeownership
|
|
||||||
set "pargs=$regkey='%~1'; $p='%~2'; $a='%~3'; $u='%~4'; $o='%~5';"
|
|
||||||
%_psc% "%pargs%; $f=[io.file]::ReadAllText('!_batp!') -split ':ps_reg_own\:.*';iex ($f[1]);" & exit/b:ps_reg_own:
|
|
||||||
$dll0='[DllImport("ntdll.dll")]public static extern IntPtr RtlAdjustPrivilege(int a,bool b,bool c,ref bool d);';
|
|
||||||
$nt=Add-Type -Member $dll0 -Name Nt -PassThru; foreach($i in @(9,17,18)){$null=$nt::RtlAdjustPrivilege($i,1,0,[ref]0)}
|
|
||||||
$root=$true; if($o -eq ''){$o=$u}; $rk=$regkey -split '\\',2; $key=$rk[1];
|
|
||||||
switch -regex ($rk[0]){ '[mM]'{$HK='LocalMachine'};'[uU]'{$HK='CurrentUser'};default{$HK='ClassesRoot'}; }
|
|
||||||
$usr=0,0,0; $sec=0,0,0; $rule=0,0,0; $perm='FullControl',$p,$p; $access='Allow',$a,$a; $s=$o,$u,'S-1-5-32-544';
|
|
||||||
for($i=0;$i -le 2;$i++){ $usr[$i]=[System.Security.Principal.SecurityIdentifier]$s[$i];
|
|
||||||
$rule[$i]=[System.Security.AccessControl.RegistryAccessRule]::new($usr[$i], $perm[$i], 3, 0, $access[$i]);
|
|
||||||
$sec[$i]=[System.Security.AccessControl.RegistrySecurity]::new(); }
|
|
||||||
function Reg_TakeOwnership { param($hive, $key, $root=$false);
|
|
||||||
$reg=[Microsoft.Win32.Registry]::$hive.OpenSubKey($key,'ReadWriteSubTree','TakeOwnership'); $sec[2].SetOwner($usr[2]);
|
|
||||||
$reg.SetAccessControl($sec[2]); if($root){ $reg=$reg.OpenSubKey('','ReadWriteSubTree','ChangePermissions');
|
|
||||||
$acl=$reg.GetAccessControl(); $acl.SetAccessRuleProtection($false,$false); $acl.ResetAccessRule($rule[1]);
|
|
||||||
$reg.SetAccessControl($acl); } $sec[0].SetOwner($usr[0]); $reg.SetAccessControl($sec[0]); }
|
|
||||||
Reg_TakeOwnership $HK $key $true; if($root){ $r=[Microsoft.Win32.Registry]::$HK.OpenSubKey($key);
|
|
||||||
foreach($sk in $r.GetSubKeyNames()){try{ Reg_TakeOwnership $HK "$($key+'\\'+$sk)" $false}catch{} }}
|
|
||||||
Get-Acl "$($rk[0]+':\\'+$rk[1])" | fl:ps_reg_own:
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,48 +0,0 @@
|
|||||||
====================================================================================================
|
|
||||||
KMS38 Protection:
|
|
||||||
====================================================================================================
|
|
||||||
|
|
||||||
- If you don't know what KMS38 is, then first check it in the Read Me.
|
|
||||||
|
|
||||||
- By default, a KMS38 Activation is vulnerable to unintended overwriting/replacement and
|
|
||||||
neutralization by a 180-Day KMS Activator (non-KMS38 Activator).
|
|
||||||
However, with a few tricks you can ensure that no alternative KMS Activator can replace KMS38
|
|
||||||
Activation by accident or even on purpose. This script demonstrate how to do/undo that.
|
|
||||||
|
|
||||||
- Protect KMS38:
|
|
||||||
- How does KMS38 Protection work?
|
|
||||||
In the KMS activation method, the Windows Operating System first checks the KMS IP registered
|
|
||||||
as a specific KMS, and if that is not defined then it checks the Global KMS IP.
|
|
||||||
Another fact is that if LocalHost (127.0.0.2) is defined as KMS IP in the Windows 8.1 and 10 OS's
|
|
||||||
then Windows will not accept it as a valid KMS IP.
|
|
||||||
This script simply utilizes the above facts to protect the KMS38 activation from being
|
|
||||||
overwritten by any alternative 'normal' 180-Day KMS Activation.
|
|
||||||
|
|
||||||
Script steps-
|
|
||||||
- Check if Windows is activated with KMS38, if yes,
|
|
||||||
- Set that Windows edition specific KMS IP to LocalHost (127.0.0.2),
|
|
||||||
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform\55c92734-d682-4d71-983e-d6ec3f16059f\XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
|
||||||
where X is Windows edition Activation ID.
|
|
||||||
|
|
||||||
- Lock this Registry with Reg_takeownership snippet by @AveYo aka @BAU
|
|
||||||
pastebin.com/XTPt0JSC
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
- Unprotect KMS38:
|
|
||||||
- Just undo above steps,
|
|
||||||
- Give administrator full control of that mentioned registry key.
|
|
||||||
- Delete that registry key.
|
|
||||||
- Done.
|
|
||||||
|
|
||||||
=======================================================================================================
|
|
||||||
|
|
||||||
This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
|
|
||||||
Homepages-
|
|
||||||
NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
||||||
GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
|
|
||||||
Maintained by @WindowsAddict
|
|
||||||
|
|
||||||
=======================================================================================================
|
|
@ -1,291 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
:: =======================================================================================================
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: =======================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
title Change Windows 10 Edition with Retail/OEM Key
|
|
||||||
set _elev=
|
|
||||||
if /i "%~1"=="-el" set _elev=1
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "ELine=echo: &echo ==== ERROR ==== &echo:"
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 17134 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo OS Requirement - Windows 10 [17134] 1803 and later builds.
|
|
||||||
goto Ced_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Elevate script as admin and pass arguments and preventing loop
|
|
||||||
:: Thanks to @hearywarlot [ https://forums.mydigitallife.net/threads/.74332/ ] for the VBS method.
|
|
||||||
:: Thanks to @abbodi1406 for the powershell method and solving special characters issue in file path name.
|
|
||||||
|
|
||||||
%nul% reg query HKU\S-1-5-19 && (
|
|
||||||
goto :Passed
|
|
||||||
) || (
|
|
||||||
if defined _elev goto :E_Admin
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_vbsf=%temp%\admin.vbs"
|
|
||||||
set _PSarg="""%~f0""" -el
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
(
|
|
||||||
echo Set strArg=WScript.Arguments.Named
|
|
||||||
echo Set strRdlproc = CreateObject^("WScript.Shell"^).Exec^("rundll32 kernel32,Sleep"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& strRdlproc.ProcessId ^& "'"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& .ParentProcessId ^& "'"^)
|
|
||||||
echo If InStr ^(.CommandLine, WScript.ScriptName^) ^<^> 0 Then
|
|
||||||
echo strLine = Mid^(.CommandLine, InStr^(.CommandLine , "/File:"^) + Len^(strArg^("File"^)^) + 8^)
|
|
||||||
echo End If
|
|
||||||
echo End With
|
|
||||||
echo .Terminate
|
|
||||||
echo End With
|
|
||||||
echo CreateObject^("Shell.Application"^).ShellExecute "cmd.exe", "/c " ^& chr^(34^) ^& chr^(34^) ^& strArg^("File"^) ^& chr^(34^) ^& strLine ^& chr^(34^), "", "runas", 1
|
|
||||||
)>"!_vbsf!"
|
|
||||||
|
|
||||||
(%nul% cscript //NoLogo "!_vbsf!" /File:"!_batf!" -el) && (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
%nul% %_psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && (
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
goto :E_Admin
|
|
||||||
)
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:E_Admin
|
|
||||||
%ELine%
|
|
||||||
echo This script require administrator privileges.
|
|
||||||
echo To do so, right click on this script and select 'Run as administrator'.
|
|
||||||
goto Ced_Done
|
|
||||||
|
|
||||||
:Passed
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Set buffer height independently of window height
|
|
||||||
:: https://stackoverflow.com/a/13351373
|
|
||||||
:: Written by @dbenham
|
|
||||||
|
|
||||||
mode con: cols=98 lines=31
|
|
||||||
%nul% %_psc% "&{$H=get-host;$W=$H.ui.rawui;$B=$W.buffersize;$B.height=36;$W.buffersize=$B;}"
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
set slp=SoftwareLicensingProduct
|
|
||||||
set sls=SoftwareLicensingService
|
|
||||||
set wApp=55c92734-d682-4d71-983e-d6ec3f16059f
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
:: Check Installation type
|
|
||||||
set instype=
|
|
||||||
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v InstallationType 2^>nul') do if not errorlevel 1 set "instype=%%b"
|
|
||||||
|
|
||||||
if not "%instype%"=="Client" (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version [Server] Detected.
|
|
||||||
echo OS Requirement - Windows 10 [17134] 1803 and later builds.
|
|
||||||
goto Ced_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Windows Edition
|
|
||||||
set osedition=
|
|
||||||
for /f "tokens=2 delims==" %%a in ('"wmic path %slp% where (ApplicationID='%wApp%' and PartialProductKey is not NULL) get LicenseFamily /VALUE" 2^>nul') do if not errorlevel 1 set "osedition=%%a"
|
|
||||||
if not defined osedition for /f "tokens=3 delims=: " %%a in ('DISM /English /Online /Get-CurrentEdition 2^>nul ^| find /i "Current Edition :"') do set "osedition=%%a"
|
|
||||||
|
|
||||||
cls
|
|
||||||
if "%osedition%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo OS Edition was not detected properly. Aborting...
|
|
||||||
goto Ced_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
echo _______________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
echo Note 1 - This script can not change 'Core'(Home) to 'Non-Core' (Pro) Editions.
|
|
||||||
echo You'll have to do the above manually, Follow these steps.
|
|
||||||
echo - Disable internet.
|
|
||||||
echo - Go to Settings ^> Update ^& Security ^> Activation and
|
|
||||||
echo Insert 'Pro' Edition Product Key VK7JG-NPHTM-C97JM-9MPGT-3V66T
|
|
||||||
echo - Follow on screen instructions, Done.
|
|
||||||
echo:
|
|
||||||
echo Note 2 - Following option works only in W10 17134 (RS4) and later builds.
|
|
||||||
echo _______________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
echo You can change the Current Edition '%osedition%' to one of the following :
|
|
||||||
echo _______________________________________________________________________________________________
|
|
||||||
|
|
||||||
REM Thanks to @RPO for the help in codes
|
|
||||||
|
|
||||||
echo:
|
|
||||||
for /f "tokens=4" %%a in ('dism /online /english /Get-TargetEditions ^| findstr /i /c:"Target Edition : "') do echo %%a
|
|
||||||
echo:
|
|
||||||
choice /C:21 /N /M "[1] Continue [2] Exit : "
|
|
||||||
if %errorlevel%==1 exit /b
|
|
||||||
echo:
|
|
||||||
|
|
||||||
for /f "tokens=4" %%a in ('dism /online /english /Get-TargetEditions ^| findstr /i /c:"Target Edition : "') do (
|
|
||||||
|
|
||||||
choice /C:NY /N /M "Do you want to change to the %%a edition? [Y,N] : "
|
|
||||||
if errorlevel 2 (
|
|
||||||
|
|
||||||
call :%%a %nul%
|
|
||||||
if "!key!"=="" cls &%ELine% &echo [%%a ^| %winbuild%] HWID Activation is Not Supported. &goto Ced_Done
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo ____________________________________________________________________
|
|
||||||
|
|
||||||
REM Thanks to @abbodi1406 for the WMI methods
|
|
||||||
|
|
||||||
echo:
|
|
||||||
echo Changing the Edition to Windows 10 %%a
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call InstallProductKey ProductKey="!key!" %nul% && (
|
|
||||||
for /f "tokens=2 delims==" %%# in ('wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get ProductKeyChannel /value 2^>nul') do set "_channel=%%#"
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call RefreshLicenseStatus %nul%
|
|
||||||
echo:
|
|
||||||
call echo Installing %%_channel%% Key [!key!]
|
|
||||||
echo [Successful]
|
|
||||||
echo:
|
|
||||||
echo Reboot is required to properly change the Edition.
|
|
||||||
) || (
|
|
||||||
%ELine%
|
|
||||||
echo Installing Retail/OEM Key [!key!]
|
|
||||||
echo [Unsuccessful]
|
|
||||||
)
|
|
||||||
echo ____________________________________________________________________
|
|
||||||
|
|
||||||
goto Ced_Done
|
|
||||||
))
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:Ced_Done
|
|
||||||
|
|
||||||
echo:
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Retail_OEM Key List
|
|
||||||
|
|
||||||
:Core
|
|
||||||
set "key=YTMG3-N6DKC-DKB77-7M9GH-8HVX7"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreCountrySpecific
|
|
||||||
set "key=N2434-X9D7W-8PF6X-8DV9T-8TYMD"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreN
|
|
||||||
set "key=4CPRK-NM3K3-X6XXQ-RXX86-WXCHW"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreSingleLanguage
|
|
||||||
set "key=BT79Q-G7N6G-PGBYW-4YWX6-6F4BT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Education
|
|
||||||
set "key=YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EducationN
|
|
||||||
set "key=84NGF-MHBT6-FXBX8-QWJK7-DRR8H"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Enterprise
|
|
||||||
set "key=XGVPP-NMH47-7TTHJ-W3FW7-8HV2C"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseN
|
|
||||||
set "key=3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseS
|
|
||||||
if "%winbuild%" EQU "10240" set "key=FWN7H-PF93Q-4GGP8-M8RF3-MDWWW"
|
|
||||||
if "%winbuild%" EQU "14393" set "key=NK96Y-D9CD8-W44CQ-R8YTK-DYJWX"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseSN
|
|
||||||
if "%winbuild%" EQU "10240" set "key=8V8WN-3GXBH-2TCMG-XHRX3-9766K"
|
|
||||||
if "%winbuild%" EQU "14393" set "key=2DBW3-N2PJG-MVHW3-G7TDK-9HKR4"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Professional
|
|
||||||
set "key=VK7JG-NPHTM-C97JM-9MPGT-3V66T"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalEducation
|
|
||||||
set "key=8PTT6-RNW4C-6V7J2-C2D3X-MHBPB"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalEducationN
|
|
||||||
set "key=GJTYN-HDMQY-FRR76-HVGC7-QPF8P"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalN
|
|
||||||
set "key=2B87N-8KFHP-DKV6R-Y2C8J-PKCKT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalWorkstation
|
|
||||||
set "key=DXG7C-N36C4-C4HTG-X4T3X-2YV77"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalWorkstationN
|
|
||||||
set "key=WYPNQ-8C467-V2W6J-TX4WX-WT2RQ"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ServerRdsh
|
|
||||||
set "key=NJCF7-PW8QT-3324D-688JX-2YV66"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:IoTEnterprise
|
|
||||||
set "key=XQQYW-NFFMW-XJPBH-K8732-CKFFD"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,322 +0,0 @@
|
|||||||
@setlocal DisableDelayedExpansion
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
:: For unattended mode, run the script with /u parameter.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
:: =======================================================================================================
|
|
||||||
::
|
|
||||||
:: This script is a part of 'Microsoft Activation Scripts' project.
|
|
||||||
::
|
|
||||||
:: Homepages-
|
|
||||||
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
|
|
||||||
:: GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
||||||
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
::
|
|
||||||
:: Maintained by @WindowsAddict
|
|
||||||
::
|
|
||||||
:: =======================================================================================================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
cls
|
|
||||||
title Install Windows 10 Retail/OEM Key
|
|
||||||
set Unattended=
|
|
||||||
set _args=
|
|
||||||
set _elev=
|
|
||||||
set "_arg1=%~1"
|
|
||||||
if not defined _arg1 goto :NoProgArgs
|
|
||||||
set "_args=%~1"
|
|
||||||
set "_arg2=%~2"
|
|
||||||
if defined _arg2 set "_args=%~1 %~2"
|
|
||||||
for %%A in (%_args%) do (
|
|
||||||
if /i "%%A"=="-el" set _elev=1
|
|
||||||
if /i "%%A"=="/u" set Unattended=1)
|
|
||||||
:NoProgArgs
|
|
||||||
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
|
|
||||||
set "_psc=powershell -nop -ep bypass -c"
|
|
||||||
set "nul=1>nul 2>nul"
|
|
||||||
set "ELine=echo: &echo ==== ERROR ==== &echo:"
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if %winbuild% LSS 10240 (
|
|
||||||
%ELine%
|
|
||||||
echo Unsupported OS version Detected.
|
|
||||||
echo Project is supported only for Windows 10.
|
|
||||||
goto Ins_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Elevate script as admin and pass arguments and preventing loop
|
|
||||||
:: Thanks to @hearywarlot [ https://forums.mydigitallife.net/threads/.74332/ ] for the VBS method.
|
|
||||||
:: Thanks to @abbodi1406 for the powershell method and solving special characters issue in file path name.
|
|
||||||
|
|
||||||
%nul% reg query HKU\S-1-5-19 && (
|
|
||||||
goto :Passed
|
|
||||||
) || (
|
|
||||||
if defined _elev goto :E_Admin
|
|
||||||
)
|
|
||||||
|
|
||||||
set "_batf=%~f0"
|
|
||||||
set "_vbsf=%temp%\admin.vbs"
|
|
||||||
set _PSarg="""%~f0""" -el
|
|
||||||
if defined _args set _PSarg="""%~f0""" -el """%_args%"""
|
|
||||||
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
(
|
|
||||||
echo Set strArg=WScript.Arguments.Named
|
|
||||||
echo Set strRdlproc = CreateObject^("WScript.Shell"^).Exec^("rundll32 kernel32,Sleep"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& strRdlproc.ProcessId ^& "'"^)
|
|
||||||
echo With GetObject^("winmgmts:\\.\root\CIMV2:Win32_Process.Handle='" ^& .ParentProcessId ^& "'"^)
|
|
||||||
echo If InStr ^(.CommandLine, WScript.ScriptName^) ^<^> 0 Then
|
|
||||||
echo strLine = Mid^(.CommandLine, InStr^(.CommandLine , "/File:"^) + Len^(strArg^("File"^)^) + 8^)
|
|
||||||
echo End If
|
|
||||||
echo End With
|
|
||||||
echo .Terminate
|
|
||||||
echo End With
|
|
||||||
echo CreateObject^("Shell.Application"^).ShellExecute "cmd.exe", "/c " ^& chr^(34^) ^& chr^(34^) ^& strArg^("File"^) ^& chr^(34^) ^& strLine ^& chr^(34^), "", "runas", 1
|
|
||||||
)>"!_vbsf!"
|
|
||||||
|
|
||||||
(%nul% cscript //NoLogo "!_vbsf!" /File:"!_batf!" -el "!_args!") && (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
del /f /q "!_vbsf!"
|
|
||||||
%nul% %_psc% "start cmd.exe -arg '/c \"!_PSarg:'=''!\"' -verb runas" && (
|
|
||||||
exit /b
|
|
||||||
) || (
|
|
||||||
goto :E_Admin
|
|
||||||
)
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:E_Admin
|
|
||||||
%ELine%
|
|
||||||
echo This script require administrator privileges.
|
|
||||||
echo To do so, right click on this script and select 'Run as administrator'.
|
|
||||||
goto Ins_Done
|
|
||||||
|
|
||||||
:Passed
|
|
||||||
|
|
||||||
mode con: cols=98 lines=30
|
|
||||||
setlocal EnableDelayedExpansion
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check Windows OS name
|
|
||||||
|
|
||||||
set winos=
|
|
||||||
for /f "skip=2 tokens=2*" %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
if not defined winos for /f "tokens=2* delims== " %%a in ('"wmic os get caption /value" 2^>nul') do if not errorlevel 1 set "winos=%%b"
|
|
||||||
|
|
||||||
:: Check SKU value
|
|
||||||
|
|
||||||
set SKU=
|
|
||||||
for /f "tokens=2 delims==" %%a IN ('"wmic Path Win32_OperatingSystem Get OperatingSystemSKU /format:LIST" 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
if not defined SKU for /f "tokens=3 delims=." %%a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\ProductOptions" /v OSProductPfn 2^>nul') do if not errorlevel 1 (set osSKU=%%a)
|
|
||||||
|
|
||||||
if "%osSKU%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo SKU value was not detected properly. Aborting...
|
|
||||||
goto Ins_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
set osedition=
|
|
||||||
call :CheckEdition %nul%
|
|
||||||
|
|
||||||
if "%osedition%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild% ^| SKU:%osSKU%] HWID Activation is Not Supported.
|
|
||||||
goto Ins_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
set key=
|
|
||||||
call :%osedition% %nul%
|
|
||||||
|
|
||||||
if "%key%"=="" (
|
|
||||||
%ELine%
|
|
||||||
echo [%winos% ^| %winbuild%] HWID Activation is Not Supported.
|
|
||||||
goto Ins_Done
|
|
||||||
)
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
if defined Unattended goto ContinueKeyInsert
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
echo Install [%winos% ^| %winbuild%] Retail/OEM Key
|
|
||||||
echo [%key%]
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
echo:
|
|
||||||
choice /C:12 /N /M "[1] Continue [2] Exit : "
|
|
||||||
|
|
||||||
if errorlevel 2 exit /b
|
|
||||||
if errorlevel 1 goto ContinueKeyInsert
|
|
||||||
|
|
||||||
:ContinueKeyInsert
|
|
||||||
|
|
||||||
cls
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
|
|
||||||
:: Thanks to @abbodi1406 for the WMI methods
|
|
||||||
|
|
||||||
set slp=SoftwareLicensingProduct
|
|
||||||
set sls=SoftwareLicensingService
|
|
||||||
set wApp=55c92734-d682-4d71-983e-d6ec3f16059f
|
|
||||||
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call InstallProductKey ProductKey="%key%" %nul% && (
|
|
||||||
for /f "tokens=2 delims==" %%# in ('wmic path %slp% where "ApplicationID='%wApp%' and PartialProductKey<>null" Get ProductKeyChannel /value 2^>nul') do set "_channel=%%#"
|
|
||||||
wmic path %sls% where __CLASS='%sls%' call RefreshLicenseStatus %nul%
|
|
||||||
echo:
|
|
||||||
echo [%winos% ^| %winbuild%]
|
|
||||||
call echo Installing %%_channel%% Key [%key%]
|
|
||||||
echo [Successful]
|
|
||||||
) || (
|
|
||||||
%ELine%
|
|
||||||
echo Installing Retail/OEM Key [%key%]
|
|
||||||
echo [Unsuccessful]
|
|
||||||
)
|
|
||||||
echo ___________________________________________________________________________________________
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:Ins_Done
|
|
||||||
echo:
|
|
||||||
if defined Unattended (
|
|
||||||
echo Exiting in 3 seconds...
|
|
||||||
if %winbuild% LSS 7600 (ping -n 3 127.0.0.1 > nul) else (timeout /t 3)
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
echo Press any key to exit...
|
|
||||||
pause >nul
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Check Windows Edition with SKU value for better accuracy
|
|
||||||
|
|
||||||
:CheckEdition
|
|
||||||
|
|
||||||
for %%# in (
|
|
||||||
4-Enterprise
|
|
||||||
27-EnterpriseN
|
|
||||||
48-Professional
|
|
||||||
49-ProfessionalN
|
|
||||||
98-CoreN
|
|
||||||
99-CoreCountrySpecific
|
|
||||||
100-CoreSingleLanguage
|
|
||||||
101-Core
|
|
||||||
121-Education
|
|
||||||
122-EducationN
|
|
||||||
125-EnterpriseS
|
|
||||||
126-EnterpriseSN
|
|
||||||
161-ProfessionalWorkstation
|
|
||||||
162-ProfessionalWorkstationN
|
|
||||||
164-ProfessionalEducation
|
|
||||||
165-ProfessionalEducationN
|
|
||||||
175-ServerRdsh
|
|
||||||
188-IoTEnterprise
|
|
||||||
) do for /f "tokens=1,2 delims=-" %%A in ("%%#") do (
|
|
||||||
if %osSKU%==%%A set "osedition=%%B"
|
|
||||||
)
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
||||||
|
|
||||||
:: Retail/OEM Key List
|
|
||||||
|
|
||||||
:Core
|
|
||||||
set "key=YTMG3-N6DKC-DKB77-7M9GH-8HVX7"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreCountrySpecific
|
|
||||||
set "key=N2434-X9D7W-8PF6X-8DV9T-8TYMD"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreN
|
|
||||||
set "key=4CPRK-NM3K3-X6XXQ-RXX86-WXCHW"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:CoreSingleLanguage
|
|
||||||
set "key=BT79Q-G7N6G-PGBYW-4YWX6-6F4BT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Education
|
|
||||||
set "key=YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EducationN
|
|
||||||
set "key=84NGF-MHBT6-FXBX8-QWJK7-DRR8H"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Enterprise
|
|
||||||
set "key=XGVPP-NMH47-7TTHJ-W3FW7-8HV2C"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseN
|
|
||||||
set "key=3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseS
|
|
||||||
if "%winbuild%" EQU "10240" set "key=FWN7H-PF93Q-4GGP8-M8RF3-MDWWW"
|
|
||||||
if "%winbuild%" EQU "14393" set "key=NK96Y-D9CD8-W44CQ-R8YTK-DYJWX"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:EnterpriseSN
|
|
||||||
if "%winbuild%" EQU "10240" set "key=8V8WN-3GXBH-2TCMG-XHRX3-9766K"
|
|
||||||
if "%winbuild%" EQU "14393" set "key=2DBW3-N2PJG-MVHW3-G7TDK-9HKR4"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:Professional
|
|
||||||
set "key=VK7JG-NPHTM-C97JM-9MPGT-3V66T"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalEducation
|
|
||||||
set "key=8PTT6-RNW4C-6V7J2-C2D3X-MHBPB"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalEducationN
|
|
||||||
set "key=GJTYN-HDMQY-FRR76-HVGC7-QPF8P"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalN
|
|
||||||
set "key=2B87N-8KFHP-DKV6R-Y2C8J-PKCKT"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalWorkstation
|
|
||||||
set "key=DXG7C-N36C4-C4HTG-X4T3X-2YV77"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ProfessionalWorkstationN
|
|
||||||
set "key=WYPNQ-8C467-V2W6J-TX4WX-WT2RQ"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:ServerRdsh
|
|
||||||
set "key=NJCF7-PW8QT-3324D-688JX-2YV66"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
:IoTEnterprise
|
|
||||||
set "key=XQQYW-NFFMW-XJPBH-K8732-CKFFD"
|
|
||||||
exit /b
|
|
||||||
|
|
||||||
::========================================================================================================================================
|
|
@ -1,4 +0,0 @@
|
|||||||
@echo off
|
|
||||||
start https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/ &:: Login required
|
|
||||||
start https://gitlab.com/massgrave/microsoft-activation-scripts
|
|
||||||
start https://github.com/massgravel/Microsoft-Activation-Scripts
|
|
@ -1,31 +0,0 @@
|
|||||||
Use the tool 'HashCheck' to compare hashes.
|
|
||||||
https://github.com/gurnec/HashCheck/releases/latest
|
|
||||||
|
|
||||||
9d5b4b3e761cca9531d64200dfbbfa0dec94f5b0 *Activators\Online_KMS_Activation\BIN\_Info.txt
|
|
||||||
c1a44a54b4d53092de243d3af068fdbbda3c27de *Activators\Online_KMS_Activation\Renewal_Setup.cmd
|
|
||||||
502d0705dcb06900ca3700271bc33eb3fdc83769 *Activators\Online_KMS_Activation\Uninstall.cmd
|
|
||||||
2ca8daf456c858d58d51d20ccf6857da7460bcae *Activators\Online_KMS_Activation\_ReadMe.txt
|
|
||||||
68de64a326cdf1b0336c2ecd42a62fec8e7110f2 *Activators\ReadMe.txt
|
|
||||||
8b81e4db09cf7800d678b0ff8569df7c8ca278f1 *Extras\Download_Genuine_Installation_Media.url
|
|
||||||
ba656804fd4c58dbf34b0b195a00d14cf84a790e *Extras\Extract_OEM_Folder\Extract_OEM_Folder.cmd
|
|
||||||
1fd8374d9cad3b71b69162adbad4eab009ceb029 *Activators\Check_Activation_Status.cmd
|
|
||||||
6c0697f17d1a7d8589eaaf37a4275fa745615f30 *Extras\Extract_OEM_Folder\ReadMe.txt
|
|
||||||
b5b0f7c0bc677d4ca381e41cccf06e8ee6f97f00 *Extras\KMS38_Protection\Protect_Unprotect-KMS38.cmd
|
|
||||||
a8443a4aa8d1956ea893557e18b3d8ec8056269f *Extras\KMS38_Protection\ReadMe.txt
|
|
||||||
578364cb2319da7999acd8c015b4ce8da8f1b282 *Activators\HWID-KMS38_Activation\BIN\ARM64_gatherosstate.exe
|
|
||||||
5dbea3a580cf60391453a04a5c910a3ceca2b810 *Activators\HWID-KMS38_Activation\BIN\ARM64_slc.dll
|
|
||||||
48d928b1bec25a56fe896c430c2c034b7866aa7a *Activators\HWID-KMS38_Activation\BIN\ClipUp.exe
|
|
||||||
fabb5a0fc1e6a372219711152291339af36ed0b5 *Activators\HWID-KMS38_Activation\BIN\gatherosstate.exe
|
|
||||||
ca3a51fdfc8749b8be85f7904b1c238a6dfba135 *Activators\HWID-KMS38_Activation\BIN\slc.dll
|
|
||||||
be0392be7ee0a78c7d1e8903cd29ea76cbafe201 *Activators\HWID-KMS38_Activation\BIN\_Info.txt
|
|
||||||
5786bd332d1e08ed8a8bd264f7f085ff83aec778 *Activators\HWID-KMS38_Activation\HWID_Activation.cmd
|
|
||||||
497300df6bcf4bc64cc4065cd81a856fb54a3851 *Activators\HWID-KMS38_Activation\KMS38_Activation.cmd
|
|
||||||
bd37bf2122cc34f3680bbf17e89e8634b3654661 *Activators\HWID-KMS38_Activation\ReadMe_HWID.txt
|
|
||||||
a53371e73405ba9c1c4fa6a29c604bf3b954117c *Activators\HWID-KMS38_Activation\ReadMe_KMS38.txt
|
|
||||||
2898e59d908fd2ff38cc1b57f0ce453f2250b8af *Activators\Online_KMS_Activation\Activate.cmd
|
|
||||||
d30a0e4e5911d3ca705617d17225372731c770e2 *Activators\Online_KMS_Activation\BIN\cleanosppx64.exe
|
|
||||||
39ed8659e7ca16aaccb86def94ce6cec4c847dd6 *Activators\Online_KMS_Activation\BIN\cleanosppx86.exe
|
|
||||||
86748a866ebd11766fe71ff12b63d2525d6f28be *Extras\OEMRET-Change_W10_Edition.cmd
|
|
||||||
9838babe8091dad9574be5606fe88618b85dca3a *Extras\OEMRET-Install_W10_Key.cmd
|
|
||||||
b470dc10afa63feebc1d8c1249b59f0a299026a6 *Credits.txt
|
|
||||||
36075a49f50c915b3878f60460a3bb0301f3b257 *Homepages.cmd
|
|
72
README.md
72
README.md
@ -1,57 +1,45 @@
|
|||||||
**Microsoft Activation Scripts (MAS):**
|
## Microsoft Activation Scripts (MAS):
|
||||||
|
|
||||||
A collection of scripts for activating Microsoft products using HWID / KMS38 / Online KMS activation methods
|
A Windows and Office activator using HWID / KMS38 / Online KMS activation methods, with a focus on open-source code and fewer antivirus detections.
|
||||||
with a focus on open-source code, less antivirus detection and user-friendliness.
|
|
||||||
|
|
||||||
**Homepages:**<br/>
|
## Download / How to use it?
|
||||||
NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/<br/>
|
|
||||||
GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts<br/>
|
|
||||||
GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts/<br/>
|
|
||||||
|
|
||||||
# **Downloads:** <br/>
|
|
||||||
https://github.com/massgravel/Microsoft-Activation-Scripts/releases
|
|
||||||
|
|
||||||
<br/>
|
### Method 1 - PowerShell
|
||||||
|
|
||||||
<pre class="ipsCode prettyprint lang-html prettyprinted"><span class="pln">----------------------------------------------------------------------------------------------
|
- On Windows 10/11, right-click on the windows start menu and select PowerShell or Terminal.
|
||||||
Activation Type Supported Product Activation Period
|
- Copy-paste the below code and press enter\
|
||||||
----------------------------------------------------------------------------------------------
|
`irm https://massgrave.dev/get | iex`
|
||||||
|
- You will see the activation options, and follow onscreen instructions.
|
||||||
|
- That's all.
|
||||||
|
|
||||||
Digital License - Windows 10 - Permanent
|
### Method 2 - Traditional
|
||||||
KMS38 - Windows 10 / Server - Until the year 2038
|
|
||||||
Online KMS - Windows / Server / Office - For 180 Days, renewal task needs to be
|
|
||||||
created for lifetime auto activation.
|
|
||||||
|
|
||||||
----------------------------------------------------------------------------------------------</span></pre>
|
- Download the file named `MAS_1.7_Password_1234.7z` from [here](https://github.com/massgravel/Microsoft-Activation-Scripts/releases)
|
||||||
|
- Extract this file with a 3rd party archive manager, such as [7zip](https://www.7-zip.org/download.html)
|
||||||
|
- Password is `1234`
|
||||||
|
- In the extracted folder, find the folder named `All-In-One-Version`
|
||||||
|
- Run the file named `MAS_AIO.cmd`
|
||||||
|
- You will see the activation options, and follow onscreen instructions.
|
||||||
|
- That's all.
|
||||||
|
|
||||||
# **ReadMe:**
|
To run the scripts in unattended mode, check [here](https://massgrave.dev/command_line_switches.html)
|
||||||
|
|
||||||
<p>
|
|
||||||
<details>
|
|
||||||
<summary>Click me to collapse/fold.</summary>
|
|
||||||
<br/>
|
|
||||||
<a href="https://gitlab.com/massgrave/microsoft-activation-scripts/raw/master/MAS_1.2/Separate-Files-Version/Activators/HWID-KMS38_Activation/ReadMe_HWID.txt">Digital License (HWID) Activation</a> <br /> <a href="https://gitlab.com/massgrave/microsoft-activation-scripts/raw/master/MAS_1.2/Separate-Files-Version/Activators/HWID-KMS38_Activation/ReadMe_KMS38.txt">KMS38 Activation</a> <br /> <a href="https://gitlab.com/massgrave/microsoft-activation-scripts/raw/master/MAS_1.2/Separate-Files-Version/Extras/KMS38_Protection/ReadMe.txt">KMS38_Protection</a> <br /> <a href="https://gitlab.com/massgrave/microsoft-activation-scripts/raw/master/MAS_1.2/Separate-Files-Version/Activators/Online_KMS_Activation/_ReadMe.txt">Online KMS Activation</a> <br /> <a href="https://pastebin.com/raw/7Xyaf15Z" target="_blank" rel="nofollow noreferrer noopener">Activation Methods info and faqs</a> <br /> <a href="https://gitlab.com/massgrave/microsoft-activation-scripts/raw/master/MAS_1.2/Separate-Files-Version/Extras/Extract_OEM_Folder/ReadMe.txt">$OEM$ Folders (Windows Pre-Activation)</a> <br /> <a href="https://pastebin.com/raw/DdM34pr5" target="_blank" rel="nofollow noreferrer noopener">Big Blocks of text in the script</a> <br /> <a href="https://pastebin.com/raw/jduBSazJ" target="_blank" rel="nofollow noreferrer noopener">Download Genuine Installation Media</a>
|
|
||||||
</details></p>
|
|
||||||
|
|
||||||
# [**Credits:**](https://raw.githubusercontent.com/massgravel/Microsoft-Activation-Scripts/master/MAS_1.2/Separate-Files-Version/Credits.txt)
|
```
|
||||||
|
Latest Version: 1.7
|
||||||
|
Release date: 7-Nov-2022
|
||||||
|
```
|
||||||
|
|
||||||
# [**Changelog:**](https://pastebin.com/raw/nghFEt3W)
|
### For more details, check Homepage: https://massgrave.dev/
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------------------------------------------------------
|
### [Download Original Windows & Office](https://massgrave.dev/genuine-installation-media.html)
|
||||||
|
|
||||||
HWID/KMS38 activation's various methods:
|
<a href="https://discord.gg/gjJEfq7ux8">
|
||||||
|
<img src="https://discordapp.com/api/guilds/746721520931569757/widget.png?style=banner3" />
|
||||||
by @mspaintmsi and *Anonymous, Original co-authors of HWID/KMS38 Activation.
|
</a>
|
||||||
|
|
||||||
https://gitlab.com/massgrave/massgrave<br/>
|
|
||||||
https://github.com/massgravel/MASSGRAVE<br/>
|
|
||||||
[Discord server](https://discord.gg/EcENUnq)<br/>
|
|
||||||
https://www.nsaneforums.com/topic/316668--/?do=findComment&comment=1497887<br/>
|
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
For any queries feel free to mail me at, windowsaddict@protonmail.com
|
|
||||||
|
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
Made with Love ❤️
|
Made with Love ❤️
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user