spec1re
Goto Top

Windows 10, WDS Unattended und System-reserviert Partition

Hallo,

kriege es einfach nicht hin, dass die Windows 10 Installation mit dem WDS die System-reserviert Partition erstellt.

wds1

Hier die Config:
<?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="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>de-DE</UILanguage>
            </SetupUILanguage>
            <InputLocale>de-DE</InputLocale>
            <SystemLocale>de-DE</SystemLocale>
            <UILanguage>de-DE</UILanguage>
            <UILanguageFallback>de-DE</UILanguageFallback>
            <UserLocale>de-DE</UserLocale>
        </component>
        <component name="Microsoft-Windows-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">  
            <DiskConfiguration>
                <Disk wcm:action="add">  
                    <CreatePartitions>
                        <CreatePartition wcm:action="add">  
                            <Order>1</Order>
                            <Size>512</Size>
                            <Type>Primary</Type>
                        </CreatePartition>					
                        <CreatePartition wcm:action="add">  
                            <Order>2</Order>
                            <Extend>true</Extend>
                            <Type>Primary</Type>
                        </CreatePartition>
                    </CreatePartitions>
                    <ModifyPartitions>
                        <ModifyPartition wcm:action="add">  
                            <Order>1</Order>
                            <PartitionID>1</PartitionID>
                            <Label>System Reserved</Label>
                            <Format>NTFS</Format>
                            <TypeID>0x27</TypeID>
                        </ModifyPartition>
                        <ModifyPartition wcm:action="add">  
                            <Order>2</Order>
                            <PartitionID>2</PartitionID>
                            <Label>OS</Label>
                            <Format>NTFS</Format>
                            <Letter>C</Letter>
                        </ModifyPartition>						
                    </ModifyPartitions>
                    <DiskID>0</DiskID>
                    <WillWipeDisk>true</WillWipeDisk>
                </Disk>
		<WillShowUI>OnError</WillShowUI>
            </DiskConfiguration>
            <WindowsDeploymentServices>
                <Login>
                    <Credentials>
                        <Domain>TEST</Domain>
                        <Password>PASSWORT</Password>
                        <Username>Administrator</Username>
                    </Credentials>
                </Login>
                <ImageSelection>
                    <InstallTo>
                        <DiskID>0</DiskID>
                        <PartitionID>2</PartitionID>
                    </InstallTo>
		<WillShowUI>OnError</WillShowUI>
                </ImageSelection>
            </WindowsDeploymentServices>
        </component>
    </settings>
	<cpi:offlineImage cpi:source="wim:d:/images/w10x64/1709/sources/install.wim#Windows 10 Pro" xmlns:cpi="urn:schemas-microsoft-com:cpi" />  
</unattend>

Ohne die System-reserviert Partition läuft die Installation, ohne Probleme durch.

Jemand eine Idee woran es liegen könnte?

Danke.

Content-Key: 356899

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

Ausgedruckt am: 19.03.2024 um 11:03 Uhr

Mitglied: 134464
Lösung 134464 03.12.2017 aktualisiert um 11:25:06 Uhr
Goto Top
Die Anpassung der Systempartition ist falsch, die TypeID ist inkorrekt und lässt man für die Systempartition weg, und Active zum aktiv setzen der Partition wurde vergessen:
<ModifyPartition wcm:action="add">  
    <Order>1</Order>
    <PartitionID>1</PartitionID>
    <Label>System Reserved</Label>
    <Format>NTFS</Format>
    <Active>true</Active>
</ModifyPartition>
https://technet.microsoft.com/en-us/library/ff715563.aspx

-edit- typo korrigiert.
Mitglied: spec1re
spec1re 03.12.2017 um 11:44:01 Uhr
Goto Top
Danke!

wds2