MSFN Forum: Unattend.xml Problem - MSFN Forum

Jump to content


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Unattend.xml Problem

#1 User is offline   WizardOfWoz 

  • Newbie
  • Group: Members
  • Posts: 26
  • Joined: 19-April 09

Posted 04 November 2012 - 08:04 AM

Whenever I put my unattend.xml file in the root of the DVD, it always displays the dreaded "driver needed" screen. Without the XML fle it installs fine. What's even more wild is that I created it using the SIM in the ADK and it still does it. File is as follows:

Quote

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<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">
<UserData>
<ProductKey>
<Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key>
<WillShowUI>OnError</WillShowUI>
</ProductKey>
<AcceptEula>true</AcceptEula>
<FullName>XXX</FullName>
</UserData>
</component>
</settings>
<settings pass="specialize">
<component name="Microsoft-Windows-International-Core" 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">
<InputLocale>en-US</InputLocale>
<SystemLocale>en-US</SystemLocale>
<UILanguage>en-US</UILanguage>
<UserLocale>en-US</UserLocale>
</component>
<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">
<RunSynchronous>
<RunSynchronousCommand wcm:action="add">
<Order>1</Order>
<Path>reg add &amp;quot;HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon&amp;quot; /v EnableFirstLogonAnimation /d 0 /t REG_DWORD /f</Path>
<Description>Disable stupid touch tutorial</Description>
</RunSynchronousCommand>
<RunSynchronousCommand wcm:action="add">
<Order>2</Order>
<Path>reg add &amp;quot;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\OOBE&amp;quot; /v MediaBootInstall /d 0 /t REG_DWORD /f</Path>
</RunSynchronousCommand>
<RunSynchronousCommand wcm:action="add">
<Order>3</Order>
<Path>cscript //B &amp;quot;%windir%\system32\slmgr.vbs&amp;quot; /rearm</Path>
<Description>Reset activation status</Description>
<WillReboot>Always</WillReboot>
</RunSynchronousCommand>
</RunSynchronous>
</component>
<component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="wow64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<DisableAccelerators>true</DisableAccelerators>
<DisableFirstRunWizard>true</DisableFirstRunWizard>
<DisableOOBAccelerators>true</DisableOOBAccelerators>
<Home_Page>http://www.google.com</Home_Page>
<PlaySound>false</PlaySound>
<ShowInformationBar>false</ShowInformationBar>
</component>
<component name="Microsoft-Windows-ErrorReportingCore" 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">
<DisableWER>1</DisableWER>
</component>
</settings>
<settings pass="oobeSystem">
<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">
<OOBE>
<HideEULAPage>true</HideEULAPage>
<NetworkLocation>Home</NetworkLocation>
<ProtectYourPC>2</ProtectYourPC>
</OOBE>
<VisualEffects>
<FontSmoothing>ClearType</FontSmoothing>
<SystemDefaultBackgroundColor>14</SystemDefaultBackgroundColor>
</VisualEffects>
<RegisteredOwner>XXX</RegisteredOwner>
<TimeZone>Central Standard Time</TimeZone>
</component>
</settings>
<cpi:offlineImage cpi:source="wim:d:/win8/source/sources/install.wim#Windows 8 Pro" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>


Also, the initial language selection screen still shows (with the "Repair your computer" option). What do I need to change? All references of "x86" to "amd64"?


#2 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,392
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 04 November 2012 - 11:54 AM

View PostWizardOfWoz, on 04 November 2012 - 08:04 AM, said:

What do I need to change? All references of "x86" to "amd64"?


It seems, YES!

#3 User is offline   WizardOfWoz 

  • Newbie
  • Group: Members
  • Posts: 26
  • Joined: 19-April 09

Posted 04 November 2012 - 12:57 PM

View Postmyselfidem, on 04 November 2012 - 11:54 AM, said:

View PostWizardOfWoz, on 04 November 2012 - 08:04 AM, said:

What do I need to change? All references of "x86" to "amd64"?


It seems, YES!


I tried, and it didn't work :(

Any other suggestiojns

#4 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,392
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 04 November 2012 - 12:59 PM

Please attach your Autounattend.xml file for your Windows 8 x64!

This post has been edited by myselfidem: 04 November 2012 - 03:33 PM


#5 User is offline   WizardOfWoz 

  • Newbie
  • Group: Members
  • Posts: 26
  • Joined: 19-April 09

Posted 04 November 2012 - 06:43 PM

View Postmyselfidem, on 04 November 2012 - 12:59 PM, said:

Please attach your Autounattend.xml file for your Windows 8 x64!


File attached. Name and product key removed.

Attached File(s)



#6 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,392
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 05 November 2012 - 01:55 AM

Inside your Autounattend.xml file, you can change all values: To: &quot;

Change To:
<Path>reg add &quot;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\OOBE&quot; /v MediaBootInstall /d 0 /t REG_DWORD /f</Path>


More help:

http://technet.micro...WindowsSettings

Quote

Microsoft-Windows-Security-SPP\SkipRearm

For most deployment scenarios, this setting is no longer needed. In Windows 8, the Windows licensing state can be reset repeatedly.


http://www.msfn.org/...ost__p__1009846

This post has been edited by myselfidem: 05 November 2012 - 02:15 AM


#7 User is offline   maxXPsoft 

  • MSFN Master
  • Group: Developers
  • Posts: 2,748
  • Joined: 14-November 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 05 November 2012 - 10:01 AM

also in windowsPE pass change to <InputLocale>0409:00000409</InputLocale>
You can remove <UserLocale>en-US</UserLocale> from that pass also
Valid Passes oobeSystem specialize

This post has been edited by maxXPsoft: 05 November 2012 - 10:02 AM


#8 User is offline   gotenks98 

  • Member
  • PipPip
  • Group: Members
  • Posts: 141
  • Joined: 02-June 05

Posted 09 November 2012 - 08:07 AM

View Postmyselfidem, on 05 November 2012 - 01:55 AM, said:

Inside your Autounattend.xml file, you can change all values: To: &quot;

Change To:
<Path>reg add &quot;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\OOBE&quot; /v MediaBootInstall /d 0 /t REG_DWORD /f</Path>


More help:

http://technet.micro...WindowsSettings

Quote

Microsoft-Windows-Security-SPP\SkipRearm

For most deployment scenarios, this setting is no longer needed. In Windows 8, the Windows licensing state can be reset repeatedly.


http://www.msfn.org/...ost__p__1009846

That mediabootinstall command is that how you get an upgrade on install with a totally blank drive with an upgrade key? I was needing to know this because I will be changing out my main HD for a SSD so keeping the amount of writes down on the drive helps me a ton. I just need to know what the exact syntax for this needs to be because the forum always butchers it.

#9 User is offline   WizardOfWoz 

  • Newbie
  • Group: Members
  • Posts: 26
  • Joined: 19-April 09

Posted 09 November 2012 - 10:40 PM

Yes. By default on an upgrade disc it's set to 1.

This post has been edited by WizardOfWoz: 09 November 2012 - 10:44 PM


Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy