질문과 답변

윈 도 우 윈도우 10 용 Autounattend.xml 관련 질문..

2016.08.27 11:50

Waffen-SS 조회:897

원래 Autounattend.xml 쓰는 경우는 과거 7 이나 8 쓸 때 관리자 계정(Administrator)으로 설치할 때 쓰다가..


요번에 1607 ADK 도 나온 겸해서 윈도우 에디션 선택, 파티션 선택 제외하고 무인설치로 만들어 보려고 합니다.


대충 이것저것 눌러서 만들어봤는데 뭔가 빠진 것 같은 느낌...;


어디를 더 수정해줘야 딱 에디션, 파티션 선택 이외에 일반계정(계정명 : User) 무인설치로 될까요?


제품키 부분도 스킵해야 되는데 어느부분을 손봐야 할지... 흠;


일단 현재까지 손대본 내용은 다음과 같습니다.




<?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="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="https://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
            <SetupUILanguage>
                <UILanguage>ko-KR</UILanguage>
            </SetupUILanguage>
            <UILanguage>ko-KR</UILanguage>
        </component>
        <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="https://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
            <SetupUILanguage>
                <UILanguage>ko-KR</UILanguage>
            </SetupUILanguage>
            <UILanguage>ko-KR</UILanguage>
        </component>
        <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="https://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
            <UserData>
                <AcceptEula>true</AcceptEula>
            </UserData>
        </component>
        <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="https://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
            <UserData>
                <AcceptEula>true</AcceptEula>
            </UserData>
        </component>
    </settings>
    <settings pass="oobeSystem">
        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="https://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
            <UserAccounts>
                <LocalAccounts>
                    <LocalAccount wcm:action="add">
                        <Password>
                            <Value>UABhAHMAcwB3AG8AcgBkAA==</Value>
                            <PlainText>false</PlainText>
                        </Password>
                        <DisplayName>User</DisplayName>
                        <Group>Administrators</Group>
                        <Name>User</Name>
                    </LocalAccount>
                </LocalAccounts>
            </UserAccounts>
            <AutoLogon>
                <Password>
                    <Value>UABhAHMAcwB3AG8AcgBkAA==</Value>
                    <PlainText>false</PlainText>
                </Password>
                <Enabled>true</Enabled>
                <LogonCount>1</LogonCount>
                <Username>User</Username>
            </AutoLogon>
            <OOBE>
                <HideEULAPage>true</HideEULAPage>
                <HideLocalAccountScreen>true</HideLocalAccountScreen>
                <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
                <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
                <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
                <NetworkLocation>Other</NetworkLocation>
                <ProtectYourPC>1</ProtectYourPC>
            </OOBE>
        </component>
        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="https://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
            <UserAccounts>
                <LocalAccounts>
                    <LocalAccount wcm:action="add">
                        <Password>
                            <Value>UABhAHMAcwB3AG8AcgBkAA==</Value>
                            <PlainText>false</PlainText>
                        </Password>
                        <DisplayName>User</DisplayName>
                        <Group>Administrators</Group>
                        <Name>User</Name>
                    </LocalAccount>
                </LocalAccounts>
            </UserAccounts>
            <AutoLogon>
                <Password>
                    <Value>UABhAHMAcwB3AG8AcgBkAA==</Value>
                    <PlainText>false</PlainText>
                </Password>
                <Enabled>true</Enabled>
                <LogonCount>1</LogonCount>
                <Username>User</Username>
            </AutoLogon>
            <OOBE>
                <HideEULAPage>true</HideEULAPage>
                <HideLocalAccountScreen>true</HideLocalAccountScreen>
                <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
                <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
                <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
                <NetworkLocation>Other</NetworkLocation>
                <ProtectYourPC>1</ProtectYourPC>
            </OOBE>
        </component>
    </settings>
    <settings pass="specialize">
        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="https://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
            <RegisteredOrganization>Microsoft</RegisteredOrganization>
            <RegisteredOwner>User</RegisteredOwner>
            <TimeZone>Korea Standard Time</TimeZone>
        </component>
        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="https://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
            <RegisteredOrganization>Microsoft</RegisteredOrganization>
            <RegisteredOwner>User</RegisteredOwner>
            <TimeZone>Korea Standard Time</TimeZone>
        </component>
    </settings>
    <cpi:offlineImage cpi:source="catalog:c:/install_windows 10 home.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

번호 제목 글쓴이 조회 등록일
[공지] 질문과 답변 게시판 이용간 유의사항 gooddew - -
65335 기 타| 크롬에서 기상청 홈페이지 접속이 안됩니다. [1] 붕어고집 647 08-27
65334 윈 도 우| 윈도우 10 업데이트 이후 파일 속성 등 확인하려고 오른쪽 ... [1] 윤아짱 836 08-27
65333 소프트웨어| 바이두 클라우드 [1] 비전맨 1071 08-27
65332 윈 도 우| 마운트된 이미지[꺼내기]하면 탐색기가 종료되는것 막을수 ... [1] 바이두매니 793 08-27
65331 윈 도 우| 폴더 용량 차지 문제 [4] 전저당께요 788 08-27
65330 윈 도 우| 윈10가장 저렴하게 구입하는 방법이나 경로? [6] 이탈 1411 08-27
65329 하드웨어| 컴퓨터 부팅이 잘 안됩니다. 도움 부탁드립니다. [4] iNote 902 08-27
65328 서버 / IT| exagear-desktop-rpi3.tar.gz 구할수 있을까요 Morning_Le 697 08-27
» 윈 도 우| 윈도우 10 용 Autounattend.xml 관련 질문.. [2] Waffen-SS 897 08-27
65326 윈 도 우| 윈10에서 VHD생성 어떻게 하나요? [3] 이탈 651 08-27
65325 하드웨어| 동적디스크??? [4] mac21 3268 08-27
65324 서버 / IT| 인터넷 사용 PC갯수 제한에 대하여.. [4] Bess 1531 08-27
65323 윈 도 우| 엣지 브라우저, 유저 에이전트 변경 불가능한가요? [1] [동물농장] 594 08-27
65322 소프트웨어| 리눅스 계열 프로그램 구합니다 [1] Morning_Le 560 08-26
65321 윈 도 우| 윈도우10 날씨 라이브 타일 [2] 가드리아 1844 08-26
65320 윈 도 우| 윈도우가 자꾸 디바이스가 어쩌고 저쩌고 [4] 심돌이 768 08-26
65319 윈 도 우| 레*쯔 윈도우 설치 후 오류 문의 [2] solcom 770 08-26
65318 윈 도 우| 백업 유틸 종류가 많네요. [2] 톰과제리 1129 08-26
65317 소프트웨어| 동영상 파일 dvd로 굽는 프로그램 추천 부탁합니다. [2] 신사맨 702 08-26
65316 윈 도 우| 와이파이에서 인터넷 없음이라고 뜨면서 연결이 안됩니다. [2] 한스 2958 08-26
XE1.11.6 Layout1.4.8