Unattend.xml 사용자 이름

Unattend.xml 사용자 이름

내 WDS에서 Unatend.xml을 사용하고 있는데 사용자 이름에 문제가 있습니다.

이것은 나의 무인입니다:

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="windowsPE">
    </settings>
    <settings pass="specialize">
        <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>net user administrator /active:yes</Path>
                </RunSynchronousCommand>
            </RunSynchronous>
        </component>
        <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">
            <ShowWindowsLive>false</ShowWindowsLive>
            <TimeZone>Romance Standard Time</TimeZone>
            <CopyProfile>true</CopyProfile>
        </component>
    </settings>
    <settings pass="oobeSystem">
        <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>es-ES</InputLocale>
            <SystemLocale>es-ES</SystemLocale>
            <UILanguage>en-UK</UILanguage>
            <UserLocale>es-ES</UserLocale>
        </component>
        <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">
            <AutoLogon>
                <Enabled>false</Enabled>
            </AutoLogon>
            <OOBE>
                <HideEULAPage>true</HideEULAPage>
                <NetworkLocation>Work</NetworkLocation>
                <ProtectYourPC>1</ProtectYourPC>
                <SkipMachineOOBE>false</SkipMachineOOBE>
                <SkipUserOOBE>true</SkipUserOOBE>
            </OOBE>
            <TimeZone>Romance Standard Time</TimeZone>
            <UserAccounts>
                <AdministratorPassword>
                    <Value>password123</Value>
                    <PlainText>true</PlainText>
                </AdministratorPassword>
            </UserAccounts>
        </component>
    </settings>
    <settings pass="generalize"></settings>
    <cpi:offlineImage cpi:source="wim:e:/images/w7_user/sources/install.wim#Windows 7 Enterprise x64" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

<SkipUserOOBE>true</SkipUserOOBE>사용자 생성 양식을 건너뛰고 싶고 컴퓨터 <SkipMachineOOBE>false</SkipMachineOOBE>이름을 강제로 지정하고 싶습니다.

문제는 이 구성을 사용하면 다음과 같은 형식이 나타난다는 것입니다.

여기에 이미지 설명을 입력하세요

그리고 나는 이것을 찾고 있습니다 :

여기에 이미지 설명을 입력하세요

왜? 사용자 관리자가 활성화된 컴퓨터만 원하고 더 이상은 원하지 않기 때문입니다.

오류가 어디에 있는지 아는 사람이 있나요?

관련 정보