For Windows 7 (English) - ImMALWARE/MalwTool GitHub Wiki
Activating Windows 7
This method can only activate the Professional and Enterprise editions of Windows 7!
Open PowerShell as an administrator:
Execute the following commands:
Set-Location $env:SystemRoot\System32
cscript //nologo slmgr.vbs /ckms > $null
cscript //nologo slmgr.vbs /upk > $null
cscript //nologo slmgr.vbs /cpky > $null
cscript //nologo slmgr.vbs /ipk FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4 > $null # 7 Professional
cscript //nologo slmgr.vbs /ipk 33PXH-7Y6KF-2VJC9-XBBR8-HVTHH > $null # 7 Enterprise
cscript //nologo slmgr.vbs /skms kms.loli.best > $null
cscript //nologo slmgr.vbs /ato
Activating Office 2010 on Windows 7
- Download the archive https://github.com/ImMALWARE/MalwTool/raw/main/files/Office_2010_Library.zip
- Extract it to a folder
- Copy the path to the folder where the files were extracted
- Open cmd as an administrator
- Type
cd
, space, paste the copied path, and press Enter. In my case, it looks like this:
cd "C:\Users\vboxuser\Desktop\library"
- Execute the following commands:
if exist "C:\Program Files\Microsoft Office\Office14\ospp.vbs" (set "folder=C:\Program Files\Microsoft Office\Office14")
if exist "C:\Program Files (x86)\Microsoft Office\Office14\ospp.vbs" (set "folder=C:\Program Files (x86)\Microsoft Office\Office14")
for /f %x in ('dir /b *') do cscript //nologo "%folder%\ospp.vbs" /inslic:%x
cscript //nologo "%folder%\ospp.vbs" /inpkey:VYBBJ-TRJPB-QFQRF-QFT4D-H3GVB >nul
cscript //nologo "%folder%\ospp.vbs" /sethst:kms8.msguides.com >nul
cscript //nologo "%folder%\ospp.vbs" /setprt:1688 >nul
cscript //nologo "%folder%\ospp.vbs" /act
Activating Office 2013 on Windows 7
- Download the archive https://github.com/ImMALWARE/MalwTool/raw/main/files/Office_2013_Library.zip
- Extract it to a folder
- Copy the path to the folder where the files were extracted
- Open cmd as an administrator
- Type
cd
, space, paste the copied path, and press Enter. In my case, it looks like this:
cd "C:\Users\vboxuser\Desktop\library"
- Execute the following commands:
if exist "C:\Program Files\Microsoft Office\Office15\ospp.vbs" (set "folder=C:\Program Files\Microsoft Office\Office15")
if exist "C:\Program Files (x86)\Microsoft Office\Office15\ospp.vbs" (set "folder=C:\Program Files (x86)\Microsoft Office\Office15")
for /f %x in ('dir /b *') do cscript //nologo "%folder%\ospp.vbs" /inslic:%x
cscript //nologo "%folder%\ospp.vbs" /inpkey:YC7DK-G2NP3-2QQC3-J6H88-GVGXT >nul
cscript //nologo "%folder%\ospp.vbs" /sethst:kms8.msguides.com >nul
cscript //nologo "%folder%\ospp.vbs" /setprt:1688 >nul
cscript //nologo "%folder%\ospp.vbs" /act
Activating Office 2016 on Windows 7
- Open cmd as an administrator
- Execute the following commands
if exist "C:\Program Files\Microsoft Office\Office16\ospp.vbs" (set "folder=C:\Program Files\Microsoft Office\Office16")
if exist "C:\Program Files (x86)\Microsoft Office\Office16\ospp.vbs" (set "folder=C:\Program Files (x86)\Microsoft Office\Office16")
cd %folder%
for /f %x in ('dir /b ..\root\Licenses16\proplusvl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%x" >nul
cscript //nologo "%folder%\ospp.vbs" /inpkey:XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99 >nul
cscript //nologo "%folder%\ospp.vbs" /sethst:kms8.msguides.com >nul
cscript //nologo "%folder%\ospp.vbs" /setprt:1688 >nul
cscript //nologo "%folder%\ospp.vbs" /act