Link to home
Start Free TrialLog in
Avatar of rtang626
rtang626

asked on

How do I prevent the "Windows Genuine Advantge Notifications" messge from popping up at startup? See screenshot.

Im not sure if I have a valid copy of XP or not. My friend from a long time ago, helped me install it. We dont talk anymore, so I cant ask him. Nonetheless, I just want this mesaage to be disabled, or stop appearing each time I log into the system. Max point given for best solution offered.
untitled.JPG
Avatar of John
John
Flag of Canada image

Cancel the message. Now go to Microsoft.com and check if your XP installation is genuine. If is not, you have to license the installation - no legal way around that.

If you have a legal XP, go to Windows Update, see if you can run it, and either let WGA run (no harm if you are legal) or disable the update. Check the option for Always disable and you should not see it again.

My guess (because I have seen WGA lots) is that you may possible have a licensing / activation issue.
... Thinkpads_User
Avatar of Don
Have you just followed the prompts? Clicking thru the next's


If you didnt have a valid copy you would see a different message as below

Wgan.jpg
Like dstewartjr said just complete the installation wizard and let it do its thing. If it find that you don't have a genuine license it will let you know and then you can resolve that.

MO
I have a non-genuine Windows Home machine in the basement from a client. It started and ran fine. It was not until I tried to install Security Essentials that it told me it was not valid. I did as I said in my first post and tested and indeed it failed WGA on that basis.

So all these answers are the same: Let WGA run and it will tell you if you are not legal. ... Thinkpads_User
The solution to this is really simple -- but you need to do it BEFORE this invasive M$ software deactivates your entire windows installation, to where you can no longer boot anything from the hard drive.  The solution is that you simply provide it with a GENUINE key that the new windows updates (which you auto downloaded, and did not realize had invasive programming in them to spy on your system) sees as valid.

There are MANY ways to do this -- research the topic at -- http://www.google.com/search?num=30&q=changing+windows+license+key
But do it SOON !!!
here is a .VBS file to update your windoes xp serial code:

(but you need a valid code)


' 
' WMI Script - ChangeVLKey.vbs
'
' This script changes the product key on the computer
'
'***************************************************************************

'ON ERROR RESUME NEXT

'Wscript.echo "Script can't run without VolumeProductKey argument"
'Wscript.echo "Correct usage: Cscript ChangeVLKey.vbs ABCDE-FGHIJ-KLMNO-PRSTU-WYQZX"

Dim VOL_PROD_KEY

'=== clef stas
VOL_PROD_KEY = "xxxxx-xxxxx-xxxxx-xxxxx-xxxxx"

'Wscript.arguments.Item(0)
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 Err.Description, "0x" & Hex(Err.Number)
      Err.Clear
   end if

Next

msgbox("la clef windows xp pro francais stas est maintenant active dans votre windows")

Open in new window

Change product key??? Not necessary here. The popup is only continuing to appear because the WGA is not getting completed.


http://www.microsoft.com/genuine/downloads/faq.aspx#ID0EGD


http://en.wikipedia.org/wiki/Windows_Genuine_Advantage
ASKER CERTIFIED SOLUTION
Avatar of Bryon H
Bryon H
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rtang626
rtang626

ASKER

Thanks. This works. Very simple instructions.