윈 도 우 윈도우 10 용 Autounattend.xml 관련 질문..
2016.08.27 11:50
원래 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 | - | - |
65337 | 윈 도 우| 추천할만한 윈도10 개인제작자 있나요? [2] | 클라크 | 1363 | 08-28 |
65336 | 윈 도 우| 학교용 LTSB 인증키를 하나 구했는데 인증을 어케하나요? [2] | 마후라 | 1549 | 08-27 |
65335 | 소프트웨어| 창 10의 새 가상 데스크톱 기능이 창 7에서도 가능한지요? [4] | 파풍초 | 808 | 08-27 |
65334 | 윈 도 우| 윈도우 10 boot.wim으로 PE 부팅할 때? [1] | 럭키보이 | 1122 | 08-27 |
65333 | 기 타| 크롬에서 기상청 홈페이지 접속이 안됩니다. [1] | 붕어고집 | 666 | 08-27 |
65332 | 윈 도 우| 윈도우 10 업데이트 이후 파일 속성 등 확인하려고 오른쪽 ... [1] | 윤아짱 | 864 | 08-27 |
65331 | 소프트웨어| 바이두 클라우드 [1] | 비전맨 | 1104 | 08-27 |
65330 | 윈 도 우| 마운트된 이미지[꺼내기]하면 탐색기가 종료되는것 막을수 ... [1] | 바이두매니 | 811 | 08-27 |
65329 | 윈 도 우| 폴더 용량 차지 문제 [4] | 전저당께요 | 813 | 08-27 |
65328 | 윈 도 우| 윈10가장 저렴하게 구입하는 방법이나 경로? [6] | 이탈 | 1449 | 08-27 |
65327 | 하드웨어| 컴퓨터 부팅이 잘 안됩니다. 도움 부탁드립니다. [4] | iNote | 925 | 08-27 |
65326 | 서버 / IT| exagear-desktop-rpi3.tar.gz 구할수 있을까요 | Morning_Le | 723 | 08-27 |
» | 윈 도 우| 윈도우 10 용 Autounattend.xml 관련 질문.. [2] | Waffen-SS | 930 | 08-27 |
65324 | 윈 도 우| 윈10에서 VHD생성 어떻게 하나요? [3] | 이탈 | 671 | 08-27 |
65323 | 하드웨어| 동적디스크??? [4] | mac21 | 3289 | 08-27 |
65322 | 서버 / IT| 인터넷 사용 PC갯수 제한에 대하여.. [4] | Bess | 1555 | 08-27 |
65321 | 윈 도 우| 엣지 브라우저, 유저 에이전트 변경 불가능한가요? [1] | [동물농장] | 636 | 08-27 |
65320 | 소프트웨어| 리눅스 계열 프로그램 구합니다 [1] | Morning_Le | 586 | 08-26 |
65319 | 윈 도 우| 윈도우10 날씨 라이브 타일 [2] | 가드리아 | 1868 | 08-26 |
65318 | 윈 도 우| 윈도우가 자꾸 디바이스가 어쩌고 저쩌고 [4] | 심돌이 | 797 | 08-26 |
<settings pass="windowsPE">
<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>
<ProductKey>
<Key></Key>
</ProductKey>
<AcceptEula>true</AcceptEula>
</UserData>
</component>
-------------------------------------------------------
<settings pass="oobeSystem">
<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">
<Name>USER</Name>
<Group>Administrators</Group>
<Password>
<PlainText>true</PlainText>
<Value />
</Password>
</LocalAccount>
</LocalAccounts>
</UserAccounts>
<AutoLogon>
<Password><Value /></Password>
<Enabled>true</Enabled>
<LogonCount>999999</LogonCount>
<Username>USER</Username>
</AutoLogon>
-------------------------------------------------------
제품키 부분은 공백으로 두면 알아서 건너띄더군요.