看板 Trace 關於我們 聯絡資訊
把下列 程式碼 用小作家存成XXX.vbs然後執行 並修改你的SN 重開機~ 就OK了 想知道改成功沒~ 去 猥軟網站 UPDATE一下就知道囉 ' This will changes product key on your computer with XP SP1 SP2 or 2003 :) ' ' Made by Barnet '*************************************************************************** ON ERROR RESUME NEXT Dim VOL_PROD_KEY if Wscript.arguments.count<1 then VOL_PROD_KEY=InputBox("使用說明(OEM版無效XD):"&vbCr&vbCr&"程式將修改當前 Windows 的序列號,請KEY一個微軟授權正版Windows 的序列號OR複製並貼上至下面空格 中 (範例:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX)。"&vbCr&vbCr&"輸入序列號: ","Windows XP/2003 ","") if VOL_PROD_KEY="" then Wscript.quit end if else VOL_PROD_KEY = Wscript.arguments.Item(0) end if VOL_PROD_KEY = Replace(VOL_PROD_KEY,"-","") 'remove hyphens if any for each Obj in GetObject("winmgmts:{impersonationLevel=impersonate}").InstancesOf ("win32_WindowsProductActivation") result = Obj.SetProductKey (VOL_PROD_KEY) if err = 0 then Wscript.echo "您的 Windows CD-KEY 修改成功。請檢查系統屬性。" end if if err <> 0 then Wscript.echo "修改失敗!請檢查輸入的 CD-KEY 是否與當前 Windows 版本相匹配。" Err.Clear end if Next -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 220.130.168.142