WGA Workaround (Probably dead)

By CBWhiz Last update Oct 9, 2005 — Installed 24,744 times.

Archived Comments (locked)

in
Subscribe to Archived Comments 15 posts, 11 voices



Jesse Andrews Admin

The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)

 
theone3 User

There are additional ways around it @ the comments here: http://extended64.com/blogs/rafael/archive/2005...

 
theone3 User

Hasn't worked since 20th January. Anyone got an updated script?

 
BioNuc User

please can anyone help me , iam using firefox and using the extension that makes me work as internet explorer engine and i can now use firefor to go to windows update site but i can't bypass the validation of this WGA so isn't there a script that can be added to greasemonkey and do that job....... Waiting for experts answers

 
nick sneeple User

just click
tools > manage add-ons > Windows Genuine Advantage > Disable and it is allllll goood!

 
Thadk Scriptwright

New script is available at http://www.anti-tgtsoft.com/index.php?entry=ent...

 
Wulf User

So, is there something else like this that works?

And, is it just me, or is the main purpose for this, simply to create a cookie? If so, can't a corrected cookie just be copied into IE? (which I would assume would make it allow Automatic Update/Microsoft Update...)

 
shinjiman User

seems the code as current does not work after the MS download centre is updated. Is that have other way to solve this problem?

 
shinjiman User

seems the code as current does not work after the MS download centre is updated. Is that have other way to solve this problem?

 
Arteekay User

As CBWhiz said, the comments revealed the answer.
"js.text = 'document.cookie="WinGenCookie=validation=0";'

Needs a trailing semicolon, like thus:

js.text = 'document.cookie="WinGenCookie=validation=0";';
"

then one refresh on the antispyware download page changes it from continue to download

 
Savvas User

this trixie script seems to work:
// ==UserScript==
// @name WGA Workaround
// @namespace d09733c0-fe4c-11d9-8cd6-0800200c9a66
// @description Windows Genuine Advantage Workaround (IE)
// @include http*://*.microsoft.com/*
// ==/UserScript==

(function ()
{
// Fix Microsoft Downloads-based WGA
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);

// Also fix Microsoft/Windows Update-based WGA
// (Thanks MacMonkey and rest)
window.g_sDisableWGACheck='all';
}
)();

 
CBWhiz Script's Author

Updated from a script I found in the comments at the original blog post. YOu may need to refresh twice before the 'Continue...' button changes to 'Download'

 
mee User

kudos to:

http://www.extended64.com/blogs/rafael/archive/...

 
CBWhiz Script's Author

Seems you're right. I'll leave it here as a refrence to se eif anybody wants to play with it, and i'll look at it later.

(testcase: http://www.microsoft.com/downloads/details.aspx...)

 
Arteekay User

yeah, although the script appears to run fine, I believe MS has changed the download center to make this script non-functional.

Test case was the MS antispyware beta, previously a refresh or two would produce the "download" button where the "continue" button is now.

Hopefully someone will be able to rework this script to get around whatever change was made to the download center.

using Fx beta 1 (nightly from 09/25) and GM 0.6.2

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel