Morpheus Posted June 12, 2013 Report post Posted June 12, 2013 Hello, I've built a Task Sequence to deploy Windows 7. The hole process works fine. Only that this Screen appears and i've to select a language. After selecting a language the process proceeds and finishes well. How to disable this screen? Regards Quote Share this post Link to post Share on other sites More sharing options...
Iroqouiz Posted June 13, 2013 Report post Posted June 13, 2013 You need to create an answer file (unattend.xml) in either WAIK (if SCCM 2012 RTM) or ADK (if SCCM 2012 SP1). The application where you create the answer file is called Windows System Image Manager. There are guides in this forum. Quote Share this post Link to post Share on other sites More sharing options...
Peter van der Woude Posted June 13, 2013 Report post Posted June 13, 2013 Or just configure the Apply Windows Settings -step in the task sequence. Quote Share this post Link to post Share on other sites More sharing options...
Morpheus Posted June 14, 2013 Report post Posted June 14, 2013 Or just configure the Apply Windows Settings -step in the task sequence. Do you mean the Step where the Admin Account, Product key, Timezone and so on? This step is fully filled out and works fine. What I've to do additionally at this step? Quote Share this post Link to post Share on other sites More sharing options...
Morpheus Posted July 17, 2013 Report post Posted July 17, 2013 I've still this Problem with the "Set up Windows" Screen. I created an unattended.xml File with the following content: <?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="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"> <SetupUILanguage> <UILanguage>de-CH</UILanguage> <WillShowUI>Never</WillShowUI> </SetupUILanguage> <InputLocale>de-CH</InputLocale> <SystemLocale>de-CH</SystemLocale> <UILanguage>de-CH</UILanguage> <UILanguageFallback>de-CH</UILanguageFallback> <UserLocale>de-CH</UserLocale> </component> </settings> <settings pass="oobeSystem"> <component name="Microsoft-Windows-International-Core" 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"> <InputLocale>de-CH</InputLocale> <SystemLocale>de-CH</SystemLocale> <UILanguage>de-CH</UILanguage> <UILanguageFallback>de-CH</UILanguageFallback> <UserLocale>de-CH</UserLocale> </component> </settings> <cpi:offlineImage cpi:source="catalog:xyz.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend> What is still missing to pass this screen automatically? Quote Share this post Link to post Share on other sites More sharing options...
Morpheus Posted July 25, 2013 Report post Posted July 25, 2013 I found the problem. Turns out I had to use generell language code in the UILanguage instead of regional variant.As example for german: <UILanguage>de-DE</UILanguage> instead of <UILanguage>de-CH</UILanguage> same for English <UILanguage>en-US</UILanguage> instead of <UILanguage>en-AU</UILanguage> <SystemLocale>, <UserLocale> and so on can be set to regional variant. Quote Share this post Link to post Share on other sites More sharing options...