最近微軟的Windows Update又包含了合法軟體的驗證(Windows Genuine Advantage 通知)更新,安裝了之後會檢查系統上的產品金鑰是否為合法的,如果不是的話就會把桌面變成黑色,並且標示一個您可能使用盜版軟體的警告。
如果您的公司有微軟大量授權且您用的是Windows XP SP1以後的版本時,可以利用以下方法快速修改為正版序號:
首先下載ChangeVLKeySP1.vbs,存到C:\
'
' WMI Script - ChangeVLKey.vbs
'
' This script changes the product key on the computer
'
'***************************************************************************
ON ERROR RESUME NEXT
if Wscript.arguments.count<1 then
Wscript.echo "Script can't run without VolumeProductKey argument"
Wscript.echo "Correct usage: Cscript ChangeVLKey.vbs ABCDE-FGHIJ-KLMNO-PRSTU-WYQZX"
Wscript.quit
end if
Dim VOL_PROD_KEY
VOL_PROD_KEY = Wscript.arguments.Item(0)
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 Err.Description, "0x" & Hex(Err.Number)
Err.Clear
end if
Next
然後到開始->執行,輸入cmd,開啟命令提示字元:
然後輸入
C:\ChangeVLKeySP1.vbs <正版序號>
馬上黑色的桌面就變回藍天了
參考資料:
http://support.microsoft.com/default.aspx?scid=kb;zh-tw;328874#appliesto