You are not logged in.

  • "Master123" started this thread

Posts: 11

Date of registration: Apr 13th 2011

  • Send private message

1

Thursday, May 5th 2011, 12:56pm

Tastatur in Autoattend.xml auf deutsch umstellen

Hallo zusammen,

ich würde gerne Windows 7 in englisch installieren. Das klappt auch soweit. Ich möchte jedoch, dass die Tastatur automatisch auf deutsch umstellt wird.

Ich weiss das man dies nachträglich in der regedit ändern kann. Gibt es allerdings einen Weg dies Vorab in der autoattend.xml zu ändern?

Hier mal die autoattend:

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="utf-8"?> 
<unattend xmlns="urn:schemas-microsoft-com:unattend"> 
<servicing> 
</servicing> 
<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://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
<ComputerName>Maschine</ComputerName> 
<TimeZone>W.Europe Standard Time</TimeZone> 
</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>cmd /c "FOR %i IN (C D E F G H I J K L N M O P Q R S T U V W X Y Z) DO IF EXIST %i:\Spezial1.txt SETX SOURCE %i: -m"</Path> 
</RunSynchronousCommand> 
</RunSynchronous> 
</component> 

</settings> 
<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> 
<HideEULAPage>true</HideEULAPage> 
<SkipMachineOOBE>true</SkipMachineOOBE> 
<SkipUserOOBE>true</SkipUserOOBE> 
<ProtectYourPC>1</ProtectYourPC> 
<NetworkLocation>Home</NetworkLocation> 
</OOBE> 
<AutoLogon> 
<Password> 
<PlainText>true</PlainText> 
<Value></Value> 
</Password> 
<LogonCount>5</LogonCount> 
<Enabled>true</Enabled> 
<Username>Administrator</Username> 
</AutoLogon> 
<FirstLogonCommands> 
<SynchronousCommand wcm:action="add"> 
<RequiresUserInput>false</RequiresUserInput> 
<CommandLine>%SOURCE%\Addons\Spezial.cmd</CommandLine> 
<Order>1</Order> 
</SynchronousCommand> 
</FirstLogonCommands> 
<VisualEffects> 
<FontSmoothing>ClearType</FontSmoothing> 
</VisualEffects> 
<Display> 
<HorizontalResolution>1024</HorizontalResolution> 
<RefreshRate>72</RefreshRate> 
<VerticalResolution>768</VerticalResolution> 
<ColorDepth>32</ColorDepth> 
</Display> 
<UserAccounts> 
<AdministratorPassword> 
<Value></Value> 
<PlainText>true</PlainText> 
</AdministratorPassword> 
<LocalAccounts> 
<LocalAccount wcm:action="add"> 
<Password> 
<Value></Value> 
<PlainText>true</PlainText> 
</Password> 
<Group>Administrators</Group> 
<Name>test</Name> 
</LocalAccount> 
</LocalAccounts> 
</UserAccounts> 
</component> 
</settings> 
</unattend>


EDIT: obwohl ich bei Timezone "W. Europe Standard time" eingestellt habe , bekomme ich nicht die richtige Uhrzeit

lg Master123

This post has been edited 1 times, last edit by "Master123" (May 5th 2011, 1:29pm)


peterpan

Ahnungsloser

Posts: 481

Date of registration: Sep 23rd 2008

Thanks: 0 / 21

  • Send private message

2

Thursday, May 5th 2011, 2:06pm

Tastatut hier:

Source code

1
2
3
4
<settings pass="windowsPE">
    	<component name="Microsoft-Windows-International-Core-WinPE"......
        	<InputLocale>de-DE</InputLocale>
    	</component>

Zeitzone hier:

Source code

1
2
3
4
<settings pass="specialize">
    	<component name="Microsoft-Windows-Shell-Setup"......
        	<TimeZone>W.Europe Standard Time</TimeZone>
    	</component>

  • "Master123" started this thread

Posts: 11

Date of registration: Apr 13th 2011

  • Send private message

3

Thursday, May 5th 2011, 2:14pm

ok super danke : ) ich teste es mal aus.

lg