我的windows media player不能通过验证怎么办

来源:百度知道 编辑:UC知道 时间:2024/06/25 06:18:32
我下了好多版本 都不能通过验证 网上的那些广告都不能看 很麻烦 怎么办
要是卸载了 那网上的广告和有些视频都看不到了 怎么办?

做正版破解。

1、将以下文本内容复制到记事本,保存为一个vbs文件,比如123.vbs
==================================
ON ERROR RESUME NEXT

Dim VOL_PROD_KEY
if Wscript.arguments.count<1 then
VOL_PROD_KEY=InputBox("敬告用户(OEM版无效):"&vbCr&vbCr&" 本脚本程序将修改当前 Windows 的序列号以便使VOL版(即大客户版)Windows XP通过正版验证。"&vbCr&" 请按“确定”激活操作。"&vbCr&vbCr&" ","WindowsXP(VOL版)通过正版验证工具","QC986-27D34-6M3TY-JJXP9-TBGMD")
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 "您的 序列号 修改成功。请登陆微软官方网站进行正版验证。"
end