윈 도 우 autounattend.xml 실행에러
2021.03.24 23:28
고수님들 제가 인터넷 검색해서 한번 autounattend.xml파일을 제작후 실행해봐는데... EasyDrv, K-Driver 실행 런처 이 부분만 실행되고
나머지는 실행이 안되는데...조언부탁드려요!!!
autounattend.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">
<!-- x64 관리자계정 활성화 -->
<Order>1</Order>
<Path>cmd /c net user administrator /active:yes</Path>
<Description>Enable Admin</Description>
</RunSynchronousCommand>
<RunSynchronousCommand wcm:action="add">
<Order>2</Order>
<!-- EasyDrv, K-Driver 실행 런처 -->
<Path>%Windir%\Setup\Scripts\EK Launcher.exe</Path>
<Description>Auto Driver Launcher</Description>
</RunSynchronousCommand>
<RunSynchronousCommand wcm:action="add">
<Order>3</Order>
<!-- Windows10 드라이버 자동설치 막는법 -->
<Path>%Windir%\Setup\Scripts\specialize.cmd</Path>
<Description>specialize cmd</Description>
</RunSynchronousCommand>
</RunSynchronous>
</component>
<component name="Microsoft-Windows-Deployment" processorArchitecture="x86" 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">
<!-- x86 관리자계정 활성화 -->
<Order>1</Order>
<Path>cmd /c net user administrator /active:yes</Path>
<Description>Enable Admin</Description>
</RunSynchronousCommand>
<RunSynchronousCommand wcm:action="add">
<Order>2</Order>
<!-- EasyDrv, K-Driver 실행 런처 -->
<Path>%Windir%\Setup\Scripts\EK Launcher.exe</Path>
<Description>Auto Driver Launcher</Description>
</RunSynchronousCommand>
<RunSynchronousCommand wcm:action="add">
<Order>3</Order>
<!-- Windows10 드라이버 자동설치 막는법 -->
<Path>%Windir%\Setup\Scripts\specialize.cmd</Path>
<Description>specialize cmd</Description>
</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">
<FirstLogonCommands>
<SynchronousCommand wcm:action="add">
<Order>1</Order>
<Description>FirstLogonCommands</Description>
<CommandLine>%WINDIR%\Setup\Scripts\SetupComplete.cmd</CommandLine>
</SynchronousCommand>
</FirstLogonCommands>
</component>
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<FirstLogonCommands>
<SynchronousCommand wcm:action="add">
<Order>1</Order>
<Description>FirstLogonCommands</Description>
<CommandLine>%WINDIR%\Setup\Scripts\clr.cmd</CommandLine>
</SynchronousCommand>
</FirstLogonCommands>
</component>
</settings>
<cpi:offlineImage cpi:source="" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>