Windows XP-based computers that were installed by using a Volume License product key might be marked as non-genuine (926333)



The information in this article applies to:

  • Microsoft Windows XP Home Edition
  • Microsoft Windows XP Media Center Edition
  • Microsoft Windows XP Professional
  • Microsoft Windows XP Starter Edition
  • Microsoft Windows XP Tablet PC Edition

SYMPTOMS

A Microsoft Windows XP-based computer might start to fail the Windows Genuine Advantage (WGA) validation process, or the Windows XP-based computer might be reported as being non-genuine. This behavior might occur if the Windows XP-based computer was installed by using a Volume License product key, and if the Windows XP-based computer tried validation during a short-lived Microsoft server issue that existed for approximately a 24-hour period. This period started on October 2, 2006, and ended on October 3, 2006.

CAUSE

This behavior might be caused by an incorrect data.dat file or by a corrupted data.dat file in the %ALLUSERSPROFILE%\Application Data\Windows Genuine Advantage\data folder.

Note By default, the %ALLUSERSPROFILE% folder is the C:\Documents and Settings\All Users folder. But this location might be a different folder in your installation of Windows XP.

RESOLUTION

If the data.dat file was received from October 2, 2006 to October 3, 2006, you must remove from the Windows XP-based client computer the data.dat file for the data.dat file to be updated correctly with the next validation. There are three methods to update the file:
  • Manual
  • Automated
  • Script
The best method depends on your specific environment.

Manual

To update the data.dat file manually, follow these steps:
  1. Log on to the computer that is experiencing the problem by using an account that has administrator credentials.
  2. Delete the data.dat file from the %ALLUSERSPROFILE%\Application Data\Windows Genuine Advantage\data folder.
  3. Visit the following Microsoft Web site to confirm that the computer is reported as genuine:
  4. Click Start, click Run, type wgatray.exe /b, and then click OK.

    Note The wgatray.exe command might not be available on your computer. This command is available only on computers that have Windows Genuine Advantage Notifications installed. If the wgatray.exe command is unavailable, it is not an error. Go to the next step. For more information about Windows Genuine Advantage Notifications, click the following article number to view the article in the Microsoft Knowledge Base:

    905474 Description of the Windows Genuine Advantage Notifications application

  5. Restart the computer.

Automated

To perform an automated update of the data.dat file, follow these steps:
  1. Visit the following Microsoft Web site:
  2. When you are prompted, click Run to run the Microsoft Genuine Advantage Diagnostic Tool.

    Note Depending on your security settings, you might be prompted several times to confirm that you want to run the tool.
  3. Click Continue.
  4. On the Windows tab, click Resolve.
If this method does not work, use the instructions in the "Manual" section.

Script

The following sample script is a simple .cmd script.
To run this script on multiple Windows XP-based client computers, use Group Policy, Microsoft Systems Management Server, or other tools that are available in your environment. Use the best method for your environment to distribute the script. To run this script individually, you must run the script as an administrator.

To create this script, open a new .txt file, and then paste the following script text in the new file. After you create the file, rename it by using a .cmd file name extension.

Script text

@ECHO OFF

IF EXIST "%ALLUSERSPROFILE%\Application Data\Windows Genuine Advantage\data\data.dat" (
ECHO Deleting data.dat
attrib -R "%ALLUSERSPROFILE%\Application Data\Windows Genuine Advantage\data\data.dat"
DEL "%ALLUSERSPROFILE%\Application Data\Windows Genuine Advantage\data\data.dat"
)

IF NOT EXIST %WINDIR%\system32\WGATray.exe (GOTO END)
ECHO WGA Validation in progress.
WGATray.exe /b

:END
ECHO Done


Modification Type:MinorLast Reviewed:10/5/2006
Keywords:kbExpertiseBeginner kbtshoot kbprb KB926333 kbAudGeneralUser