17 lines
287 B
Batchfile
17 lines
287 B
Batchfile
@echo off
|
|
|
|
set SERVER=10.0.0.9
|
|
set SHARE=assets
|
|
set SETUP_PATH=windows\win-os\win11
|
|
set UNATTEND_PATH=windows-pe\configs
|
|
|
|
wpeinit
|
|
ping 127.0.0.1 -n 10 > nul
|
|
|
|
ping %SERVER% -n 4
|
|
|
|
net use F: \\%SERVER%\%SHARE%
|
|
F:\%SETUP_PATH%\setup.exe /unattend:F:\%UNATTEND_PATH%\autounattend.xml
|
|
|
|
pause
|