View Full Version : Office Key Remover
ajc196
05-31-2010, 11:22 PM
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 (http://www.wecode.biz/2010/05/office-key-remover-1001.html)
http://anyhub.net/file/okr.png
iisjman07
06-01-2010, 08:31 AM
Just FYI this can be done manually very easily as detailed here (http://support.microsoft.com/kb/895456)
ajc196
06-01-2010, 11:03 PM
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.
dbdawn
06-01-2010, 11:14 PM
Thanks for this. I have done it through the registry before, any tool that can do it beats that :)
AtYourService
06-02-2010, 05:59 AM
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
@echo off
Set RegQry=HKLM\Hardware\Description\System\CentralPro cessor\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\Re gistration > nul 2>&1
if not ErrorLevel 1 (
echo "Deleting Office XP Registration Key"
REG DELETE HKLM\Software\Wow6432Node\Microsoft\Office\10.0\Re gistration /f
)
reg query HKLM\Software\Wow6432Node\Microsoft\Office\11.0\Re gistration > nul 2>&1
if not ErrorLevel 1 (
echo "Deleting Office 2003 Registration Key"
REG DELETE HKLM\Software\Wow6432Node\Microsoft\Office\11.0\Re gistration /f
)
reg query HKLM\Software\Wow6432Node\Microsoft\Office\12.0\Re gistration > nul 2>&1
if not ErrorLevel 1 (
echo "Deleting Office 2007 Registration Key"
REG DELETE HKLM\Software\Wow6432Node\Microsoft\Office\12.0\Re gistration /f
)
reg query HKLM\Software\Wow6432Node\Microsoft\Office\14.0\Re gistration > 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
thecompu-doctor
06-03-2010, 12:18 PM
i can't think of a single time i've ever had to do this.
now OS license info is a different story
vBulletin® v3.8.7, Copyright ©2000-2013, vBulletin Solutions, Inc.