Office Key Remover

ajc196

New Member
Reaction score
0
I ran across this today, and it's actually pretty useful. It's a small, portable tool that removes the product key for Office XP/2003/2007/2010 with the click of a button. This way, you can put in a new or different key for whatever reason.

Office Key Remover 1.0.0.1 Site

okr.png
 
Last edited:
Yep, that's the way I used to do it with regedit. But if the long, eye-straining, infuriating regedit method works, go for it. ;)

PS - Verified working tool, tried in my own virtual machines with Office 2010 Pro, 2007 H&S, and Office XP Standard.
 
Thanks for this. I have done it through the registry before, any tool that can do it beats that :)
 
i just whipped up a little batch fille to do it
I should have added a key backup but I was lazy
let me know what you guys think

Code:
@echo off
 
Set RegQry=HKLM\Hardware\Description\System\CentralProcessor\0
 
REG.exe Query %RegQry% > checkOS.txt
 
Find /i "x86" < CheckOS.txt > StringCheck.txt
 
If %ERRORLEVEL% == 0 (
echo "This is 32bit system"
		reg query HKLM\Software\Microsoft\Office\10.0\Registration > nul 2>&1
	if not ErrorLevel 1 (
		echo "Deleting Office XP Registration Key"
  		REG DELETE HKLM\Software\Microsoft\Office\10.0\Registration /f
	) 

		reg query HKLM\Software\Microsoft\Office\11.0\Registration > nul 2>&1
	if not ErrorLevel 1 (
		echo "Deleting Office 2003 Registration Key"
  		REG DELETE HKLM\Software\Microsoft\Office\11.0\Registration /f
	) 

		reg query HKLM\Software\Microsoft\Office\12.0\Registration > nul 2>&1
	if not ErrorLevel 1 (
		echo "Deleting Office 2007 Registration Key"
  		REG DELETE HKLM\Software\Microsoft\Office\12.0\Registration /f
	) 

		reg query HKLM\Software\Microsoft\Office\14.0\Registration > nul 2>&1
	if not ErrorLevel 1 (
		echo "Deleting Office 2010 Registration Key"
  		REG DELETE HKLM\Software\Microsoft\Office\14.0\Registration /f
	) 


) ELSE (
echo "This is 64bit system"
		reg query HKLM\Software\Wow6432Node\Microsoft\Office\10.0\Registration > nul 2>&1
	if not ErrorLevel 1 (
		echo "Deleting Office XP Registration Key"
  		REG DELETE HKLM\Software\Wow6432Node\Microsoft\Office\10.0\Registration /f
	) 

		reg query HKLM\Software\Wow6432Node\Microsoft\Office\11.0\Registration > nul 2>&1
	if not ErrorLevel 1 (
		echo "Deleting Office 2003 Registration Key"
  		REG DELETE HKLM\Software\Wow6432Node\Microsoft\Office\11.0\Registration /f
	) 

		reg query HKLM\Software\Wow6432Node\Microsoft\Office\12.0\Registration > nul 2>&1
	if not ErrorLevel 1 (
		echo "Deleting Office 2007 Registration Key"
  		REG DELETE HKLM\Software\Wow6432Node\Microsoft\Office\12.0\Registration /f
	) 

		reg query HKLM\Software\Wow6432Node\Microsoft\Office\14.0\Registration > nul 2>&1
	if not ErrorLevel 1 (
		echo "Deleting Office 2010 Registration Key"
  		REG DELETE HKLM\Software\Microsoft\Office\14.0\Registration /f
	) 

)
del stringcheck.txt /Q
del checkos.txt /Q
pause
 
Last edited:
Back
Top