• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Sysprep help

DPoon

Member
how do I configure sysprep to run through the windows setup without having to enter in the cdkey?

Heres what i've done so far:

1. run setup manager to create the sysprep.inf file
2. I have chosen both fully automate, and not to fully atuomate (doesnt seem to make a dfference)
3. went through the configureation and entered in the cdkey.
4. checked the .inf and the key is there.
5. Ran sysprep and clicked reseal.

What am i doing wrong?
 
Here is my sysprep file (with certain info removed of course) it only prompts me to give the PC a name, that can be automated as well.

------------------------------------------
;SetupMgrTag
[Unattended]
DriverSigningPolicy=ignore
; OemPnPDriversPath=DRIVERS
extendoempartition=1
OemSkipEula=Yes

[GuiUnattended]
AdminPassword="f00tba11"
EncryptedAdminPassword=NO
OEMSkipRegional=1
OemSkipWelcome=1
TimeZone=35

[UserData]
ProductKey=12345-12345-12345-12345-12345
FullName="DEPT"
OrgName="COMPANY"
ComputerName=

[Display]
BitsPerPel=32
Xresolution=1024
YResolution=768
Vrefresh=70

[SetupMgr]
DistFolder=C:\sysprep\i386
DistShare=windist

[Identification]
JoinWorkgroup=WORKGROUP

[Networking]
InstallDefaultComponents=Yes

[sysprepcleanup]
------------------------------------------

The folder on the C drive (called sysprep) contains the following files :>
setupcl.exe
sysprep.exe
sysprep.inf
sysxp.cmd

the sysxp.cmd file reads :>
C:
cd sysprep
sysprep.exe -quiet -forceshutdown -reseal -mini
 
Here is what mine looks like:

;SetupMgrTag
[Unattended]
OemSkipEula=Yes
InstallFilesPath=C:\sysprep\i386
TargetPath=\WINDOWS

[GuiUnattended]
AdminPassword=*
EncryptedAdminPassword=NO
OEMSkipRegional=1
TimeZone=85
OemSkipWelcome=1

[UserData]
ProductKey=11111-11111-11111-11111-11111
FullName="admin"
OrgName=""
ComputerName=*

[Identification]
JoinWorkgroup=WORKGROUP

[Networking]
InstallDefaultComponents=Yes

[Branding]
BrandIEUsingUnattended=Yes

[Proxy]
Proxy_Enable=0
Use_Same_Proxy=0
 
Back
Top