你可能是盜版軟件的受害者解決辦法|window 去除盜版vbs代碼
將文章的內(nèi)容拷到記事本里,把后綴改成.vbs即可出去windows系統(tǒng)提示的盜版侵權(quán)驗(yàn)證
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!可以放心驗(yàn)證了!"
end if
if err <> 0 then
Wscript.echo "替換失敗!輸入的 CD-KEY 與當(dāng)前的版本不匹配。"
Err.Clear
end if
Next