patrick-it
Goto Top

SYSPREP Unattend Datei

Hallo zusammen,

ich versuche ein Image für Windows 10 mit Sysprep zu erstellen, an sich funktioniert es auch, doch die Einstellungen für die Schweizer Formate werden nicht übernommen.

Hier ist meine unattend.xml Datei:
<?xml version="1.0" encoding="utf-8"?>  
<unattend xmlns="urn:schemas-microsoft-com:unattend">  
    <settings pass="windowsPE">  
        <component name="Microsoft-Windows-International-Core-WinPE" proces-sorArchitecture="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>de-CH</InputLocale>
                <SystemLocale>de-CH</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>de-CH</UserLocale>
        </component>
    </settings>
    <settings pass="oobeSystem">  
        <component name="Microsoft-Windows-Shell-Setup" processorArchitec-ture="AMD64" publicKeyToken="31bf3856ad364e35" language="neutral" ver-sionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
            <OOBE>
                <HideEULAPage>true</HideEULAPage>
                <HideLocalAccountScreen>true</HideLocalAccountScreen>
                <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
                <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
                <SkipMachineOOBE>true</SkipMachineOOBE>
                <SkipUserOOBE>true</SkipUserOOBE>
            </OOBE>     
            <FirstLogonCommands>
                <SynchronousCommand wcm:action="add">  
                    <Order>1</Order>
                    <Command-Line>"C:\Windows\System32\Sysprep\DisableSpy.cmd"</CommandLine>  
                </SynchronousCommand>
                <SynchronousCommand wcm:action="add">  
                    <Order>2</Order>
                    <Command-Line>"C:\Windows\System32\Sysprep\WindowsFunctions.cmd"</CommandLine>  
                </SynchronousCommand>
            </FirstLogonCommands>           
        </component>
    </settings>
    <cpi:offlineImage cpi:source="" xmlns:cpi="urn:schemas-microsoft-com:cpi" />  
</unattend>

Ich habe schon überprüft, die .cmd Dateien werden aufgerufen und funktionieren, doch die Kalendereinstellungen mit Datum, Zeit etc. sind auf Englisch (US).

Content-Key: 320317

Url: https://administrator.de/contentid/320317

Printed on: April 18, 2024 at 06:04 o'clock

Mitglied: 131381
131381 Nov 08, 2016 at 22:47:47 (UTC)
Goto Top
Logisch weil das im falschen Abschnitt liegt .... Das gilt hier ja nur für den Windows PE Abschnitt.
<settings pass="windowsPE"> 

Gruß