YES!
Why not
Auto-Insert Product Key in Windows 9x (95, 98, Me, etc):
Create a text file, named "
MSBATCH.INF" in the root of the setup and add folowing lines:
Code:
; MSBATCH.INF
;
; Copyright (c) 1995-1998 Microsoft Corporation.
; All rights reserved.
;
[BatchSetup]
Version=3.0 (32-bit)
SaveDate=<any_date_or_the_date_when_u_create_the_file> (like 12/03/05)
[Version]
Signature = "$CHICAGO$"
[Setup]
ProductKey="xxxxx-xxxxx-xxxxx-xxxxx-xxxxx" (Remember with Dashes)
Auto-Insert Product Key in Windows XP or 2000:
For this create a file named "
WINNT.SIF" in "
i386" folder of Setup and add following lines:
Code:
[UserData]
ProductKey = "xxxxx-xxxxx-xxxxx-xxxxx-xxxxx"
PS: Actually these files are part of unattended Setup of Winodws and there r many options similar to this one.