Legal way to use Office 365 totally FREE without paying a dime
In a previous post here, I have shown you guys how to download and install Office 365 Multi-language using online installer downloaded directly from the Microsoft homepage. The new installation includes a 30-day free trial license by default. After that, most important features will be disabled. It means your work will be discontinued unless you pay for Office 365 subscription. If you are in financial difficulties, this is so bad, I know. To help you overcome this problem, I recommend using KMS licene key to activate your Office. For those of you guys who don’t already know, KMS license is almost similar to the trial one. It is totally free, legal and is valid for 180 days only. But don’t worry about the period because it can be renewed easily.
Remove your current trial license
This step is optional if your trial license was expired. However, if it is still valid, you need to remove it. Because in some cases, after you activate your Office using KMS license, important features are resumed but the expiration notification still remains. Follow the instructions in this post to uninstall the trial license.
Make sure your computer is ready
You need to check your internet connection again and make sure that the Windows Update service is turned on. KMS license has to be verified by making a connection to my KMS servers before it can be used. So you need to check if the KMS server is blocked or not. This is pretty simple. Just open your internet browser and try visitting this site: http://kms8.msguides.com. If it is visible, this means my KMS server is not blocked.
Activating your Office 365 using KMS client key
1. Manual method
Step 1.1: Open command prompt as admin.
First, you need to open command prompt with admin rights, then follow the instruction below step by step. Just copy/paste the commands and do not forget to hit Enter in order to execute them.
Step 1.2: Navigate to your Office folder.
If you install your Office in the ProgramFiles folder, the path will be “%ProgramFiles%\Microsoft Office\Office16” or “%ProgramFiles(x86)%\Microsoft Office\Office16”. It depends on the architecture of the Windows OS you are using. If you are not sure of this issue, don’t worry, just run both of the commands above. One of them will be not executed and an error message will be printed on the screen.
cd /d %ProgramFiles%\Microsoft Office\Office16
cd /d %ProgramFiles(x86)%\Microsoft Office\Office16
Step 1.3: Convert your Office license to volume one if possible.
If your Office is got from Microsoft, this step is required. On the contrary, if you install Office from a Volume ISO file, this is optional so just skip it if you want.
for /f %x in ('dir /b ..\root\Licenses16\proplusvl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%x"
Step 1.4: Use KMS client key to activate your Office.
Make sure your PC is connected to the internet, then run the following 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:107.175.77.7
cscript ospp.vbs /setprt:1688
cscript ospp.vbs /act
If you see the error 0xC004F074, it means that your internet connection is unstable or the server is busy. Please make sure your device is online and try the command “act” again until you succeed.
Here is all the text you will get in the command prompt window.
C:\Windows\system32>cd /d %ProgramFiles%\Microsoft Office\Office16
C:\Program Files\Microsoft Office\Office16>cd /d %ProgramFiles(x86)%\Microsoft Office\Office16
The system cannot find the path specified.
C:\Program Files\Microsoft Office\Office16>for /f %x in ('dir /b ..\root\Licenses16\proplusvl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%x"
C:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /inslic:"..\root\Licenses16\ProPlusVL_KMS_Client-ppd.xrm-ms"
Microsoft (R) Windows Script Host Version 5.812
Copyright (C) Microsoft Corporation. All rights reserved.
---Processing--------------------------
Installing Office license: ..\root\licenses16\proplusvl_kms_client-ppd.xrm-ms
Office license installed successfully.
---Exiting-----------------------------
C:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /inslic:"..\root\Licenses16\ProPlusVL_KMS_Client-ul-oob.xrm-ms"
Microsoft (R) Windows Script Host Version 5.812
Copyright (C) Microsoft Corporation. All rights reserved.
---Processing--------------------------
Installing Office license: ..\root\licenses16\proplusvl_kms_client-ul-oob.xrm-ms
Office license installed successfully.
---Exiting-----------------------------
C:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /inslic:"..\root\Licenses16\ProPlusVL_KMS_Client-ul.xrm-ms"
Microsoft (R) Windows Script Host Version 5.812
Copyright (C) Microsoft Corporation. All rights reserved.
---Processing--------------------------
Installing Office license: ..\root\licenses16\proplusvl_kms_client-ul.xrm-ms
Office license installed successfully.
---Exiting-----------------------------
C:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /inpkey:XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99
Microsoft (R) Windows Script Host Version 5.812
Copyright (C) Microsoft Corporation. All rights reserved.
---Processing--------------------------
---Exiting-----------------------------
C:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /unpkey:BTDRB >nul
C:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /unpkey:KHGM9 >nul
C:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /unpkey:CPQVG >nul
C:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /sethst:107.175.77.7
Microsoft (R) Windows Script Host Version 5.812
Copyright (C) Microsoft Corporation. All rights reserved.
---Processing--------------------------
Successfully applied setting.
---Exiting-----------------------------
C:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /setprt:1688
Microsoft (R) Windows Script Host Version 5.812
Copyright (C) Microsoft Corporation. All rights reserved.
---Processing--------------------------
Successfully applied setting.
---Exiting-----------------------------
C:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /act
Microsoft (R) Windows Script Host Version 5.812
Copyright (C) Microsoft Corporation. All rights reserved.
---Processing--------------------------
Installed product key detected - attempting to activate the following product:
SKU ID: d450596f-894d-49e0-966a-fd39ed4c4c64
LICENSE NAME: Office 16, Office16ProPlusVL_KMS_Client edition
LICENSE DESCRIPTION: Office 16, VOLUME_KMSCLIENT channel
Last 5 characters of installed product key: WFG99
---Exiting-----------------------------
C:\Program Files\Microsoft Office\Office16>
2. Using batch script
This one is not recommended anymore due to the new update of Microsoft.
Step 2.1: Copy the code below into a new text document.
@echo off
title Activate Office 365 ProPlus for FREE - MSGuides.com&cls&echo =====================================================================================&echo #Project: Activating Microsoft software products for FREE without additional software&echo =====================================================================================&echo.&echo #Supported products: Office 365 ProPlus (x86-x64)&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\proplusvl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_mak*.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:WFG99 >nul&cscript //nologo ospp.vbs /unpkey:DRTFM >nul&cscript //nologo ospp.vbs /unpkey:BTDRB >nul&set i=1&cscript //nologo ospp.vbs /inpkey:XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99 >nul||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=107.175.77.7
if %i% GTR 2 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 [email protected] 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
Step 2.2: Save it as a batch file. (eg. office365.cmd).
Step 2.3: Run the batch file with admin rights. (important!).
Done! Your Office is activated successfully.
Note:
- I only test this method with Office 365 ProPlus version. I am not sure it will work with the others.
- Step 3 is flagged “important” because the UAC system will stop this process if you don’t do it.
How to renew your Office 365 license
By default, your license will be renewed automaticaly every seven days but in some cases, it can be stuck. So you need to renew the license manually. Just follow instructions here.
If you would have any questions or concerns, please leave your comments. I would be glad to explain in more details. Thank you so much for all your feedback and support!
It was absolutely needed this to me, thanks!
this s**t does not work at all. i have tried over and over and over again. it doesnt give the option to run as administrator at all on my system after saving the file. so can you please help me for i need this for work. [email protected]
It worked! Thank you so much, you have a brilliant mind <3
Some updated messed up the process, this is no longer working 🙁
Says “No Office KMS licenses were found on the system.”
May I please have an ISO for office 365 proplus that I can use with this.
Also please tell me if i will have to use the: for /f %x in (‘dir /b ..\root\Licenses16\proplusvl_kms*.xrm-ms’) do cscript ospp.vbs /inslic:”..\root\Licenses16\%x” command, or any orther things ill need extra(or to use the .iso)?
Im sorry if im asking to much questions but say a new version of office commes(like office 2025) or any small updates, will the automaticly update, and on which cannel(like how often will it get the updates
Please reply ASAP, i need the iso to use this 🙂
(oh also can i use the trial for this, like get then trial then use KMS)
Dude, you are truly awesome.
Thanks a lot. It saved my day.
worked perfectly…!! thanks
sorry but none of the first two commands worked for me….. can you help me please ????
Thank you very much. I use Tethod one. All OK
Dear,
This method of activation for some reasons is not working for me.
Can you support me on get my O365 activated?
HEY WHY MY CALLED “office365.cmd” DISAPPEAR, WHEN I RUN AS ADMINISTRATOR.
“MY FILE CALLED”
As a fact, there is no volume-licensed version of Office 365. You only changed it in a volume-licensed version of Office 2016. If you want to activate Office 365, you have to either buy it or use the volume-licensed version of Office 2016 Mondo. Office 2016 Mondo (volume-licensed) is the KMS-supported version of Office 365. It has Office 365 features like 3D models, morph transition, and more. However it does not include Office 365 services, and OneDrive has limited space.
C:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /unpkey:BTDRB >nul
C:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /unpkey:KHGM9 >nul
C:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /unpkey:CPQVG >nul
C:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /sethst:kms8.msguides.com
Microsoft (R) Windows Script Host Version 5.812
Copyright (C) Microsoft Corporation. All rights reserved.
—Processing————————–
—————————————
No Office KMS licenses were found on the system.
—————————————
—Exiting—————————–
C:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /setprt:1688
Microsoft (R) Windows Script Host Version 5.812
Copyright (C) Microsoft Corporation. All rights reserved.
—Processing————————–
—————————————
No Office KMS licenses were found on the system.
—————————————
—Exiting—————————–
Amazing, thank you
Worked like a charm
WOW WORKS WELL THANKS
i try this and really works
but, after a few days my office 365 change to office 2016
du u know why…?
maybe i should block my office 365 by windows firewall…?
Dear Microsoft Team: –
I am so happy to introduce myself to you as a Secretary Of The Latin Parish in Birzeit – Palestine since the year 2004 & stand still working till this moment at the Latin Convent, do hereby announce and declare my great desire to get your fabulous , fantastic & amazing newly released version of office production called : Office 365.
As a matter of fact, & since have a good intention to accomodate my working experiances & move my motivation into a high level which will satisfy my ambition, I am asking you to deeply assist me in my mission of achieving my goal.
Dear Brothers &Sisters; during the 15 years of my work, I used to comply with word 2003 till I reached to office 2013, but as I am ambitious man I am looking forward get all new features in word office which help me explore & renovate more valuable things to improve or develop my work as well as I can.
May I ask you to send me this new version office 365 fully activated& completely FREE OF CHARGE because
the TRIAL version will expire within only one month,as I am not in a position to take this responsibility on my shoulders & finally I find myself forced to buy that version in a way or another, following the American Impression or Proverb saying that : ” TRY IT BEFORE YOU BUY IT “, it’s true, since you cant pay you money for something you are not sure it is working 100% or other wise?
I would be more grateful & much appreciated if you could send me the new version of Office 365 fully activated on the spot directly into my email to enable me download & install it on my PC and start studying & practicing its features in order to know step by step how to cope or deal perfectly with this product, as you are announcing that the Office 365 totally FREE, without paying a dime”.
Thank a lot for your kind cooperation in advance.
Awaiting your kind approval & fast delivery of your product.
Truly Yours:
Issa Y. Alloush
Secretary Of The Latin Parish
Latin Convent
thank you very much, I tried it and it worked.
there is one question for beginners like me, how to prove that this method is really legal?
thank you
Office keeps switching from Office 365 to Office 2016 (regular) whenever I try your methods.
same here
upgrade to office 2016 is the selling point of office 365. Nothing to do with the activation here.
Thanks mate, worked really well.
that works correctly. thank you all
It worked Thank you very much
Thanks you very much
It worked
how do i do it for Apple os?is there a way using ur code?
How i can uninstall license from method1. it not working for me.so when i install office365 then reactive. your way cause my computer working not correct.
Help me please!
top search: Uninstall Microsoft product trial license or KMS license completely
Thanks you so much.i’m trying
I tried following the Instructions as suggested. The following happens after “Run as administrator”Please suggest.
============================================================================
#Project: Activating Microsoft software products for FREE without software
============================================================================
#Supported products: Office 365 ProPlus (x86-x64)
The system cannot find the path specified.
The system cannot find the path specified.
============================================================================
Activating your Office…
============================================================================
The connection to my KMS server failed! Trying to connect to another one…
Please wait…
============================================================================
Sorry! Your version is not supported.
Please try installing the latest version here: bit.ly/odt2k16
The system cannot find the path specified.
Where do you install Office 365 Pro Plus?
I got installed automatically in the system after an update
It*
You should know that originally your Office 365 install location.
Thank you dude for your help. It was very easy and fast procedure.
thank you so much ! i get it !
hey thanks it activated it but it turned to office 2016 (the UI and Stuff)
it turned back to normal after a restart thanks
it turned back to office 2016 what’s happening
Windows 8.1 or under, Office 365 will automatic upgrade to office 2016, this is the selling point of office 365.
I am using windows 10. i downloaded Office 365 Pro-plus from Microsoft and I activated it with your activator it changed to Microsoft Office Professional Plus 2016 and the new features were removed.
How can I change that to Office 365 Pro Plus?
How can I my features like Slide Zoom back?
Office 365 will keep on upgrade to another future version of Office Program, it is one of the selling point of Office 365.
Dude,
You Are A GENIUS!!!!
Thank you very much
I had used your old technique to register Office, and it’s been working for a long time. Then a few days ago after a Windows 10 update it told me I needed to register. I came here, found the new technique, and it worked beautifully! Thanks!