[资讯]帮你绕过微软正版下载限制!
微软正式启动Windows Genuine Advantage正版增值计划不过几天,著名黑客以及Extended64.com博客Rafael便发布了绕过微软正版下载限制的方法指南。根据浏览器不同,目前分为Firefox以及IE两种“绕道”方式,前者需要下载著名Firefox扩展插件Greasemonkey,后者则使用IE插件Trixie,这两个插件都涉及Javascript管理。
Rafael承认,IE的绕道方式目前仍然有一些缺陷,但是Firefox的绝对工作正常(Firefox下载又要激增了;)。
进入作者发布页面
[url]http://www.extended64.com/blogs/rafael/archive/2005/07/27/1026.aspx[/url]
进入Greasemonkey下载页面
[url]http://greasemonkey.mozdev.org/[/url]
进入Firefox相关脚本页面
[url]http://www.extended64.com/users/Rafael/wgaworkaround.user.js[/url]
进入Trixie下载页面
[url]http://www.bhelpuri.net/Trixie/Trixie.htm[/url]
进入IE相关脚本页面
[url]http://pastebin.com/322317[/url]
Firefox在下载安装Greesemonkey后,只需填入如下脚本:
// ==UserScript==
// @name WGA Workaround
// @namespace d09733c0-fe4c-11d9-8cd6-0800200c9a66
// @description Windows Genuine Advantage Workaround (Firefox)
// @include http*://*.microsoft.com/*
// ==/UserScript==
(function () {
var fix = document.createElement("script");
fix.type = "text/javascript";
fix.innerHTML = 'document.cookie="WinGenCookie=validation=0";';
document.body.appendChild(fix);
})();
IE用户下载安装Trixie后,添加脚本内容:
// ==UserScript==
// @name WGA Workaround
// @namespace dd09a330-fe52-11d9-8cd6-0800200c9a66
// @description Windows Genuine Advantage Workaround (IE)
// @include http*://*.microsoft.com/*
// ==/UserScript==
(function () {
document.write(
"<script type=\"text/javascript\"> \
document.cookie=\"WinGenCookie=validation=0\"; \
</script>"
);
})();
页:
[1]