66945 Posted October 14, 2015 Report post Posted October 14, 2015 Hi, Using SCCM OSD to deploy Windows 10 - I created a 'dynamic' unattend.xml file to be used during the 'Apply Operating System' task sequence. But somehow the system locale and home location (GEOID) settings are not applied successfully. I had used the same unattend file for W8.1 deployments and it worked fine. Am I supposed to do it differently for Windows 10? Below is the answer file (the %OSD******% variables are declared/set using 'Set Task Sequence Variable' task sequence executed just before the 'Apply Operating System' task sequence. <?xml version="1.0" encoding="utf-8"?><unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="oobeSystem"> <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> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> </OOBE> </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>%OSDInputLocale%</InputLocale><SystemLocale>%OSDSystemLocale%</SystemLocale> <UILanguageFallback>%OSDUILanguageFallback%</UILanguageFallback> <UILanguage>%OSDUILanguage%</UILanguage> <UserLocale>%OSDUserLocale%</UserLocale> </component> </settings><settings> <gs:GlobalizationServices xmlns:gs="urn:longhornGlobalizationUnattend"> <!--User List--> <gs:UserList> <gs:User UserID="Current" CopySettingsToSystemAcct="true" CopySettingsToDefaultUserAcct="true"/> </gs:UserList> <!--Location Preferences--> <gs:LocationPreferences> <gs:GeoID Value="%OSDGeoID%"/> </gs:LocationPreferences> </gs:GlobalizationServices></settings></unattend> Thank you. Quote Share this post Link to post Share on other sites More sharing options...