Carlos Alloatti Posted October 26, 2011 Posted October 26, 2011 Found this:My linkUnattend for Regional and Language Options in VistaWindows Vista Command Line Configuration of International SettingsWorks in Windows 7, I implemented it in setupcomplete.cmd to fix the nasty bug since Windows 98, the time format for my country is wrong, we use 24 hs format and not am/pmAlso used it to add keyboards. The remove feature did not work for me, tried to remove the default us-US keyboard that WIndows 7 insists on installing, but it did not work.This is my international.xml<?xml version="1.0" encoding="utf-8" ?><gs:GlobalizationServices xmlns:gs="urn:longhornGlobalizationUnattend"> <!-- user list --> <gs:UserList> <gs:User UserID="Current" CopySettingsToDefaultUserAcct="true" CopySettingsToSystemAcct="true"/> </gs:UserList> <!-- GeoID --> <gs:LocationPreferences> <gs:GeoID Value="11"/> </gs:LocationPreferences> <!-- UI Language Prefernces --> <gs:MUILanguagePreferences> <gs:MUILanguage Value="es-ES"/> </gs:MUILanguagePreferences> <!-- system locale --> <gs:SystemLocale Name="es-AR"/> <!-- input preferences --> <gs:InputPreferences> <gs:InputLanguageID Action="add" ID="2c0a:0000040a" Default="true"/> <gs:InputLanguageID Action="add" ID="2c0a:0000080a"/> <gs:InputLanguageID Action="add" ID="2c0a:00020409"/> <gs:InputLanguageID Action="remove" ID="0409:00000409"/> </gs:InputPreferences> <!-- user locale --> <gs:UserLocale> <gs:Locale Name="es-AR" SetAsCurrent="true" ResetAllSettings="false"> <gs:Win32> <gs:sTimeFormat>HH:mm:ss</gs:sTimeFormat> <gs:sShortTime>HH:mm</gs:sShortTime> </gs:Win32> </gs:Locale> </gs:UserLocale></gs:GlobalizationServices>
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now