EasyWinSetup 드라이버 자동 설치 옵션을 추가 하여 윈도우10에서 윈도우11 자동 설치 과정을 녹화해 보았습니다. 참고하여 원격 설치에 활용하면 좋은 방안이 될 것 같습니다.
set "driveLetter="
set "ImageFile="
set "OemPath="
set "XmlFile="
set "DriversPath="
set "EasyWinSetup="
rem 드라이브 목록에서 "sources" 폴더 확인
for %%D in (A B C D E F G H I J K L M N O P Q R S T U V W) do (
if exist "%%D:\sources" (
set "driveLetter=%%D"
if exist "%%D:\sources\install.wim" (
set "ImageFile=/ImageFile:%%D:\sources\install.wim"
) else if exist "%%D:\sources\install.esd" (
set "ImageFile=/ImageFile:%%D:\sources\install.esd"
)
set "OemPath=/OemPath:%%D:\sources\$OEM$"
set "XmlFile=/XmlFile:%%D:\sources\$OEM$\$$\Panther\unattend.xml"
set "DriversPath=/DriversPath:%%D:\sources\AutoInstall\Drivers"
set "EasyWinSetup=%%D:\sources\AutoInstall\EWS_x64.exe"
goto :FoundDrive
)
)
:FoundDrive
if not "%driveLetter%"=="" (
echo. "sources" 폴더를 찾은 드라이브: %driveLetter%
echo. EasyWinSetupGPT 자동 설치 옵션 설정 중...
%EasyWinSetup% /ApplyStart %ImageFile% /Index:2 /ApplyDrv:C: %OemPath% %XmlFile% %DriversPath% /after:Reboot /d
) else (
echo. "sources" 폴더를 찾은 드라이브가 없습니다.
)