WGA Workaround

By CBWhiz Last update Oct 9, 2005 — Installed 24,445 times. Daily Installs: 0, 2, 1, 3, 0, 0, 1, 1, 1, 5, 2, 0, 0, 3, 1, 1, 3, 2, 0, 1, 3, 0, 1, 1, 3, 3, 1, 1, 4, 0, 1, 1
// ==UserScript==
// @name WGA Workaround
// @namespace d09733c0-fe4c-11d9-8cd6-0800200c9a66
// @description Windows Genuine Advantage Workaround (IE)
// @include http*://*.microsoft.com/*
// ==/UserScript==

(function ()
{
var js = document.createElement("script");
js.setAttribute("language", "JavaScript");
js.setAttribute("type", "text/javascript");
js.text = 'document.cookie="WinGenCookie=validation=0";'
document.getElementsByTagName('head').item(0).appendChild(js);
window.g_sDisableWGACheck='all';
}
)();