MS Office 2007作为一款非常流行的办公软件,其时至今日的用户依然不在少数,但是一些初次使用或遇到机器重装之后的用户,对于如何找回自己的激活密钥却有些不明确,这就让他们很焦虑。
其实找回一台电脑的2007office密钥还是非常容易的,只是有人还不知道如何操作,接下来我们就简单介绍一下,大家根据以下步骤即可轻松获取2007office密钥。
- 首先打开一个空白文本文档
- 在文档中输入下列代码后,保存为vbs文件即可
Set WshShell = CreateObject("WScript.Shell")MsgBox ConvertToKey(WshShell.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\12.0\Registration\{90120000-0030-0000-0000-0000000FF1CE}"))Function ConvertToKey(Key)Const KeyOffset = 52Dim isWin8, Maps, i, j, Current, KeyOutput, Last,' Check if OS is windows 8isWin8 = (Key(66) \\ 6) And 1Key(66) = Int(Key(66) \\ 6) * 2 (isWin8 And 2)' Set up array to hold valid CD-Key charactersMaps = "BCDFGHJKMPQRTVWXY2346789"' Extract byte 52 to 67 inclusiveFor i = KeyOffset To KeyOffset 14Current= 0' Loop through the bytesFor j = 1 To 6Current = Current* 256 Xor Key(i j - 1)Current = Current Mod 24NextKeyOutput = Mid(Maps, Current 1, 1)