Skip to main content

ACTIVATING MS OFFICE WITHOUT KEY

Step1

Open cmd as admin

Step2

copy office directory

Step3 

Go to office directory, type cd on cmd then paste the office directory you copied e.g., for a 64-bit machine it will look like this.

cd C:\Program Files (x86)\Microsoft Office\Office16


Step4

Type in the following commands into cmd then hit enter after every command:

  • cscript ospp.vbs /inpkey:XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99
  • cscript ospp.vbs /unpkey:BTDRB >nul
  • cscript ospp.vbs /unpkey:KHGM9 >nul
  • cscript ospp.vbs /unpkey:CPQVG >nul
  • cscript ospp.vbs /sethst:kms8.msguides.com
  • cscript ospp.vbs /setprt:1688
  • cscript ospp.vbs /act

METHOD 2
Copy script


https://gist.github.com/amitbd1508/fe64e926005c85d424e8e79a943b3b60

@echo off
title Activate Microsoft Office 2019 (ALL versions) for FREE - MSGuides.com&cls&echo =====================================================================================&echo #Project: Activating Microsoft software products for FREE without additional software&echo =====================================================================================&echo.&echo #Supported products:&echo - Microsoft Office Standard 2019&echo - Microsoft Office Professional Plus 2019&echo.&echo.&(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&(for /f %%x in ('dir /b ..\root\Licenses16\ProPlus2019VL*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&(for /f %%x in ('dir /b ..\root\Licenses16\ProPlus2019VL*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&echo.&echo ============================================================================&echo Activating your Office...&cscript //nologo slmgr.vbs /ckms >nul&cscript //nologo ospp.vbs /setprt:1688 >nul&cscript //nologo ospp.vbs /unpkey:6MWKP >nul&set i=1&cscript //nologo ospp.vbs /inpkey:NMMKJ-6RK4F-KMJVX-8D9MJ-6MWKP >nul||goto notsupported
:skms
if %i% GTR 10 goto busy
if %i% EQU 1 set KMS=kms7.MSGuides.com
if %i% EQU 2 set KMS=e8.us.to
if %i% EQU 3 set KMS=e9.us.to
if %i% GTR 3 goto ato
cscript //nologo ospp.vbs /sethst:%KMS% >nul
:ato
echo ============================================================================&echo.&echo.&cscript //nologo ospp.vbs /act | find /i "successful" && (echo.&echo ============================================================================&echo.&echo #My official blog: MSGuides.com&echo.&echo #How it works: bit.ly/kms-server&echo.&echo #Please feel free to contact me at msguides.com@gmail.com if you have any questions or concerns.&echo.&echo #Please consider supporting this project: donate.msguides.com&echo #Your support is helping me keep my servers running 24/7!&echo.&echo ============================================================================&choice /n /c YN /m "Would you like to visit my blog [Y,N]?" & if errorlevel 2 exit) || (echo The connection to my KMS server failed! Trying to connect to another one... & echo Please wait... & echo. & echo. & set /a i+=1 & goto skms)
explorer "http://MSGuides.com"&goto halt
:notsupported
echo ============================================================================&echo.&echo Sorry, your version is not supported.&echo.&goto halt
:busy
echo ============================================================================&echo.&echo Sorry, the server is busy and can't respond to your request. Please try again.&echo.
:halt
pause >nul

Comments

Popular posts from this blog

The computer scientist responsible for copy,  cut and paste passes away.  The advent of the personal computer wasn’t just about making these powerful machines available to everyone, it was also about making them accessible and usable, even for those lacking a computer science degree. Larry Tesler, who passed away on Monday, might not be a household name like Steve Jobs or Bill Gates, but his contributions to making computers and mobile devices easier to use are the highlight of a long career influencing modern computing. Born in 1945 in New York, Tesler went on to study computer science at Stanford University, and after graduation he dabbled in artificial intelligence research (long before it became a deeply concerning tool) and became involved in the anti-war and anti-corporate monopoly movements, with companies like IBM as one of his deserving targets. In 1973 Tesler took a job at the Xerox Palo Alto Research Center (PARC) where he worked until 1980. Xerox PARC is famou...

INTRODUCTION TO PROGRAMMING

Click here to watch this video on youtube and more from our channel TO REGISTER FOR A FREE TRAINING ON OUR MOODLE PLATFORM,  KINDLY SUBMIT YOUR DETAILS HERE Hello guys,  welcome to my blog,  I'll be taking you through an introduction to programming using C language.  I'll be doing it on my phone,  its my assumption we all have access to a smartphone,  whether you are computer or phone don't freak out, the codes are just the same. Am using  cppdroid  android app to do the coding,  to download cppdroid click  here. Lesson 1: My first program (Hello world!) #include <stdio.h> main() {     printf("Hello world!");     return 0; } Every C program contains a function called main. This is the start point of the program.  #include<stdio.h> allows the program to interact with the screen, keyboard and file  system of your computer. You will find it at the beginning of almost every C program. ...