Registered member login:
Register Now
Altirigos » Migration » Sysprep » Vista Sysprep and HII

» Current Poll
Do you leave the Aclient enabled?
YES - 83.05%
196 Votes
NO - 16.95%
40 Votes
Total Votes: 236
You may not vote on this poll.
» Stats
Members: 9,948
Threads: 12,158
Posts: 56,984
Top Poster: Nick (4,991)
Welcome our newest member, rmerrill
» Online Users: 32
0 members and 32 guests
No Members online
Most users online at once 294, 06-30-2007 at 12:24 PM.
» July 2010
S M T W T F S
27282930 1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Reply
Old 07-17-2008, 03:18 PM   #1 (permalink)
 
Status: Altiris Admin
Join Date: 08-09-2005
Location: Huntington Beach, CA
Posts: 79


Vista Sysprep and HII

I am trying to create a Vista HII. However, I am having issues with sysprep. Here is what I am trying to accomplish,

1. Push image down to machine
2. Copy hardware drivers to c:\drivers
3. Copy tokenized unattend.xml (Have to run some post exe's) - like cmdlines.txt in windows xp

I am currently setting up windows and create an unattend.xml file and put it in the c:\windows\panther directory. I then run sysprep /audit /reboot, once it reboots, I copy the same sysprep file to c:\windows\panther and run sysprep /generalize /oobe

From here, I take an image. However, when I distribute the image I am always getting a sysprep error in the specialization phase trying to run tasks in the async section.

What am I doing wrong? Should I take the image after I sysprep it with /audit then do 2 & 3 mentioned above then run sysprep /generalize /oobe?

Thanks for any help
daveram is offline   Reply With Quote
Old 03-06-2009, 11:31 AM   #2 (permalink)
 
Status: Altiris Admin
Join Date: 06-20-2007
Location: NY
Posts: 33


Vista Extra Drivers

Daveram,

Did you ever get this proceedure to work as I too wish to do the same.
I am at present having problems with the extra drivers being seen.

Regards
Mike
crislet is offline   Reply With Quote
Old 03-09-2009, 01:35 PM   #3 (permalink)
 
Status: Altiris Admin
Join Date: 08-09-2005
Location: Huntington Beach, CA
Posts: 79


Vista Sysprep and HII

What PXE Boot option are you currently using? DOS, Linux or WinPE?
daveram is offline   Reply With Quote
Old 07-23-2009, 03:57 PM   #4 (permalink)
 
Status: Altiris Admin
Join Date: 08-04-2006
Location: WV
Posts: 69


Ok Ill post some of the things I just learned playing with WIN7.(Skipped vista) for anyone that may look at this thread


If your using winpe be careful its not making the windows directory D: That was one of my biggest issues took me a day to figure that out. So I thought it was putting my tokened xml on the drive but it wasnt it was going to a c drive holding the system reserverd partition files etc for bootmgr. I didnt do an audit on mine I just did sysprep /generalize /oobe but make sure you have the driver path defined in your sysprep.xml before running it.

Quote:
@ECHO OFF
REM
REM ------------------------------------------
REM VARIABLES
REM ------------------------------------------
SET MODEL=%#!computer@prod_name%
SET IMAGES=F:\Vista\Images\Business
SET DRVBASE=F:\Vista\Drivers
SET SYSPREPP=Sysprep
SET PRODPATH=drivers
SET RDEPLOY=f:\rdeploy\windows\rdeploy.exe
REM ------------------------------------------
REM Token Replacement task for generating the computer name correctly
REM Replacetokens .\Vista\Unattend\Sysprep\Business\sysprep.xml .\vista\temp\%ID%.xml
echo "%MODEL% found"
%RDEPLOY% -md -f%IMAGES%\WIN7RCULTIMATE_sysprep.img -noprompt -rescan
copy "%DRVBASE%\%MODEL%" D:\%PRODPATH%
copy "%DRVBASE%\Misc" D:\%PRODPATH%\Misc

copy "F:\Vista\Temp\%ID%.xml" "D:\Windows\panther\unattend.xml"
DEL f:\Vista\Temp\%ID%.xml
heres the script I was playing around with yes its says vista but thats just cause I was trying to use the advanced_vista_hwii_samples i downloaded for the KB

Here are the specialize settings I used

Quote:
<settings pass="specialize">
<component name="Microsoft-Windows-Deployment" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<RunSynchronous>
<RunSynchronousCommand wcm:action="add">
<Path>net user administrator /active:yes </Path>
<Order>1</Order>
</RunSynchronousCommand>
</RunSynchronous>
</component>
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Display>
<HorizontalResolution>1024</HorizontalResolution>
<VerticalResolution>768</VerticalResolution>
<ColorDepth>32</ColorDepth>
</Display>
<ComputerName>%COMPNAME%</ComputerName>
<CopyProfile>true</CopyProfile>
<ProductKey>ProductKeyHere</ProductKey>
<TimeZone>Eastern Standard Time</TimeZone>
<RegisteredOrganization>Company</RegisteredOrganization>
<RegisteredOwner>Company</RegisteredOwner>
<AutoLogon>
<Password>
<Value>PasswordHash</Value>
<PlainText>false</PlainText>
</Password>
<Domain>%COMPNAME%</Domain>
<Enabled>true</Enabled>
<LogonCount>1</LogonCount>
<Username>administrator</Username>
</AutoLogon>
<Themes>
<DefaultThemesOff>true</DefaultThemesOff>
</Themes>
</component>
<component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Identification>
<JoinDomain>Yours</JoinDomain>
<Credentials>
<Domain>Yours</Domain>
<Password>Password</Password>
<Username>Youradmin</Username>
</Credentials>
</Identification>
</component>
<component name="Microsoft-Windows-SystemRestore-Main" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<DisableSR>1</DisableSR>
</component>
</settings>

Second sysprep is very picky on vista/win7 make sure your not defining to much. Mine failed on some machine models because I told it to use 60hz for the display. Removed it and it was fine. Supposedly there is also a known issue with the media center showing options if you search for it.

Last edited by drinking12many; 07-23-2009 at 04:16 PM..
drinking12many is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Powered by vBadvanced CMPS v3.0 RC2

All times are GMT -4. The time now is 05:49 AM.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
vB.Sponsors
Altirigos