Can I have a copy of your working Win7 x64 AutoUnattend.xml
#1
Posted 07 October 2009 - 10:36 AM
I'm having a heck of a time with my Win7 x64 unattended install and am under A LOT of pressure to get this thing created. I want a basic automated installation with the first (and only) hard disk completely wiped making it the C drive. So your typical setup.
If you could upload a working Win7 x64 AutoUnattend.xml that I might be able to tweak and use it would save me a lot of time.
Let me repeat though. This needs to be for Windows 7 x64
(a copy of you x32 autounattend file is apprecated too but it is more work to integrate that into the waik)
Thanks!
brian
#3
Posted 08 October 2009 - 02:40 PM
#4
Posted 26 October 2009 - 01:47 PM
<?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="oobeSystem"> <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Reseal> <Mode>Audit</Mode> </Reseal> </component> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <OOBE> <NetworkLocation>Home</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> </OOBE> </component> </settings> <settings pass="windowsPE"> <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SetupUILanguage> <UILanguage>en-US</UILanguage> </SetupUILanguage> <InputLocale>en-US</InputLocale> <SystemLocale>en-US</SystemLocale> <UILanguage>en-US</UILanguage> <UserLocale>en-US</UserLocale> </component> <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <DiskConfiguration> <Disk wcm:action="add"> <CreatePartitions> <CreatePartition wcm:action="add"> <Order>1</Order> <Size>200</Size> <Type>Primary</Type> </CreatePartition> <CreatePartition wcm:action="add"> <Extend>true</Extend> <Order>2</Order> <Type>Primary</Type> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Active>true</Active> <Format>NTFS</Format> <Label>System</Label> <Order>1</Order> <PartitionID>1</PartitionID> </ModifyPartition> <ModifyPartition wcm:action="add"> <Format>NTFS</Format> <Label>Windows</Label> <Order>2</Order> <PartitionID>2</PartitionID> </ModifyPartition> </ModifyPartitions> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> </Disk> <WillShowUI>OnError</WillShowUI> </DiskConfiguration> <ImageInstall> <OSImage> <InstallTo> <DiskID>0</DiskID> <PartitionID>2</PartitionID> </InstallTo> <InstallToAvailablePartition>false</InstallToAvailablePartition> <WillShowUI>OnError</WillShowUI> </OSImage> </ImageInstall> <UserData> <ProductKey> <Key>PRODUCT KEY GOES HERE</Key> <WillShowUI>OnError</WillShowUI> </ProductKey> <AcceptEula>true</AcceptEula> </UserData> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <OEMInformation> <Manufacturer></Manufacturer> <SupportHours></SupportHours> <SupportPhone</SupportPhone> </OEMInformation> </component> </settings> <cpi:offlineImage cpi:source="wim:c:/documents%20and%20settings/jc/desktop/opk/install.wim#Windows 7 PROFESSIONAL" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend>
#5
Posted 27 October 2009 - 10:06 AM
Cluberti and Tripredacus, I really apologize for not even addressing your responses to my request for help. That was very rude of me. I've been busy but this is no excuse and I apologize.
My goal is to create to create a basic unattended install of Win7 x64 that will wipe the disk and create single partition C drive. My company is going to start migration to Win7 x64 in 4 months. I am NOT part of the corporate team that will perform this migration (hundreds of IT personel in my company) however, I will be supporting Win7 in my division. The corporate team does use MDT 2010 and in retrospect I probably should have started with that instead of messing around with the WAIK. I build unattended installations because in our division we do a lot of clean installs for users that do not want the corporate image. This is why I need to create this unattened install.
I've made some progress since my original post. I have an x64 unattended that does exactly what I want (wipes disk creating single partition C drive) on older hardware, however on our current hardware it is not working so I'm still dead on the water. But it sure was noce to see that install go all the way through :-)
The problem seems to be hardware specific . (isn't that strange for an unattended install?) - Here's the issue. When I run it on our standard workstation, the HP xw6600, the process stops at Expanding Windows Files (76%). (See attached Pic) This also occurs on the xw6400 and on xw4600. However it loaded fine on a dc7800, dc7700, and some other hardware (I can't remember the models off hand). So, the unattended seems to work fine.
Clearly I need to do some more testing. Do you have any comments?
Thanks for your help!
Brian
Attached File(s)
-
ExpandingWindowsFiles76_2.jpg (105.3K)
Number of downloads: 8
#6
Posted 27 October 2009 - 12:17 PM
#7
Posted 27 October 2009 - 12:24 PM
Can you think of any reason why it would freeze at that point in setup?
#8
Posted 27 October 2009 - 01:41 PM
#11
Posted 27 October 2009 - 05:18 PM
The setup stopped at 76% again and I have the Panther Files. I'm not sure how to get them to you. I need to leave for the day but advise how you want me to proceed and I will do so in the morning. Thanks!
#13
Posted 28 October 2009 - 11:33 AM
From setupact.log, showing the "ERROR_IO_DEVICE" error being thrown:
2009-10-27 15:35:08, Info [0x06009e] IBS DeployWIMImage:Calling IDepWIMImageResolved::Apply... 2009-10-27 15:35:08, Info [0x0606cc] IBS Calling WIMApplyImage (flags = 0x184)... 2009-10-27 16:31:54, Info [0x0600ae] IBS ApplyWIMCallback: Retrying on file [C:\Windows\System32\Recovery\winRE.wim] GLE is [1117] 2009-10-27 17:12:37, Error [0x0600af] IBS ApplyWIMCallback: Error applying C:\Windows\System32\Recovery\winRE.wim. GLE [1117][gle=0x0000045d] 2009-10-27 17:12:37, Error [0x0606cc] IBS WIMApplyImage failed; hr = 0x8007045D[gle=0x0000045d] 2009-10-27 17:12:37, Error [0x0600a1] IBS DeployImage:Image application failed; hr = 0x8007045D[gle=0x0000045d]
From earlier in setupact.log and the corresponding lines in diagwrn.xml, showing that setup couldn't find the processor stepping information:
2009-10-27 15:34:50, Warning [0x070026] DIAG Win32_Processor : Unable to retrieve Stepping, vtType = 8. Error code = 0x0 2009-10-27 15:34:50, Info [0x07005e] DIAG HARDWARE CONFIG=Ram in KB: Total phys=8371580 avail phys=7706092 Procs=2 Arch=9 Family=178 Width=64 Speed=3166 MHz 2009-10-27 15:34:50, Info [0x07002d] DIAG Logging MachineHardWare to BB
<rs:data> <z:row Cls="D" Sev="50331648" Maj="diagnostic" Min="Def" LN="93" Fil="" Fun="CAccessWMI::LogErrorMessage" Uid="50790438" Msg="Win32_Processor : Unable to retrieve Stepping, vtType = 8. Error code = 0x0" PID="744" TID="748" Con="" Exe="X:\Sources\setup.exe" Mod="diagnostic.dll" Err="0" MD="" DT="2009-10-27T15:34:50"/> <z:row Cls="D" Sev="50331648" Maj="diagnostic" Min="Def" LN="93" Fil="" Fun="CAccessWMI::LogErrorMessage" Uid="50790438" Msg="Win32_Processor : Unable to retrieve Stepping, vtType = 8. Error code = 0x0" PID="744" TID="748" Con="" Exe="X:\Sources\setup.exe" Mod="diagnostic.dll" Err="0" MD="" DT="2009-10-27T15:34:51"/> </rs:data>
The second error in diagwrn.xml isn't critical, I don't think, but it certainly isn't normal. I'd strongly suggest you contact HP, otherwise you're going to have to run setup with a checked Windows build and hope it catches it. Since those models are fairly standard HP models, they should be able to repro this as well and tell you what's wrong with their drivers or hardware that's causing the I/O and/or processor errors.
#14
Posted 28 October 2009 - 12:18 PM
Given that your installs work fine on the xw series and that my other disk worked fine I don't know if a call to HP support is justified. Sigh.
Thanks for your help.
#15
Posted 28 October 2009 - 12:26 PM
#16
Posted 30 October 2009 - 02:31 PM
It was created for windows 7 professional and is working for me on Intel x64 processors.
Just thought I'd throw that out incase there are any differences in what you are using it with.
- ← A bug with sysprep in win7 RTM
- Unattended Windows 7/Server 2008R2
- SkipMachineOOBE/Forced Account Creation & Sysprep + Default User P →



Help
Back to top










