🖥️ How to Activate Microsoft Office 2010 for Free – Step-by-Step Guide

Are you still using Microsoft Office 2010 and looking for a reliable way to activate it without spending money or installing risky software? You’re in the right place!

In this tutorial, I’ll walk you through how to activate Office 2010 using a batch script and KMS (Key Management Service). It’s a clean and safe method that doesn’t require third-party tools. Plus, I’ve included a free activation script and detailed explanations so even beginners can follow along.

🔧 Step-by-Step Activation Guide

🔹 Step 1: Open Notepad

  1. Press Windows + R, type notepad, and press Enter.
  2. Copy the Following Script and Paste into Notepad:
@echo off
title Activate Microsoft Office 2010 - ramnath.com.np
cls

if exist "%ProgramFiles%\Microsoft Office\Office14\ospp.vbs" (
cd /d "%ProgramFiles%\Microsoft Office\Office14"
) else if exist "%ProgramFiles(x86)%\Microsoft Office\Office14\ospp.vbs" (
cd /d "%ProgramFiles(x86)%\Microsoft Office\Office14"
) else (
echo Office14 not found.
goto end
)

cscript //nologo ospp.vbs /remhst >nul
cscript //nologo ospp.vbs /setprt:1688 >nul
cscript //nologo ospp.vbs /unpkey:VYBBJ >nul
cscript //nologo ospp.vbs /inpkey:VYBBJ-TRJPB-QFQRF-QFT4D-H3GVB >nul

set i=1
:trykms
if %i% GTR 5 goto busy
if %i%==1 set KMS=kms7.MSGuides.com
if %i%==2 set KMS=kms8.MSGuides.com
if %i%==3 set KMS=kms9.MSGuides.com
if %i%==4 set KMS=102.128.64.30
if %i%==5 set KMS=168.235.79.103

cscript //nologo ospp.vbs /sethst:%KMS% >nul
cscript //nologo ospp.vbs /act | find /i "successful" && (
echo Activation successful via %KMS%
echo Visit: www.ramnath.com.np | YouTube: @ms-office365
goto end
)

echo Activation failed on %KMS%, trying next...
set /a i+=1
goto trykms

:busy
echo All KMS servers are busy. Try again later.

:end
pause >nul

🔹 Step 2: Save the File

  • Click File > Save As
  • Name it: activate_office2010.cmd
  • Set “Save as type” to All Files
  • Save it to your Desktop

🔹 Step 3: Run as Administrator

  • Right-click on the file you just saved
  • Click “Run as Administrator”
  • Wait for the script to finish. You should see a message:
    “Activation successful via kms7.MSGuides.com”

🛠️ Troubleshooting Common Issues

ProblemSolution
Office14 folder not foundEnsure Office 2010 is installed correctly
Activation failed on all serversTry again later or switch internet network
Access deniedRun the script as Administrator

🎥 Video Tutorial (Coming Soon)

For a step-by-step visual tutorial, check out my video on YouTube:
📺 @ms-office365

Make sure to like, share, and subscribe if you find it helpful!

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top