你可能是盜版軟件的受害者解決辦法|window 去除盜版vbs代碼
將文章的內容拷到記事本里,把后綴改成.vbs即可出去windows系統提示的盜版侵權驗證
ON ERROR RESUME NEXT
Dim VOL_PROD_KEY
if Wscript.arguments.count<1 then
VOL_PROD_KEY=InputBox("Powered By
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 "OK!可以放心驗證了!"
end if
if err <> 0 then
Wscript.echo "替換失敗!輸入的 CD-KEY 與當前的版本不匹配。"
Err.Clear
end if
Next
posted on 2009-04-15 20:20
sanmao 閱讀(190)
評論(0) 編輯 收藏