w10install/scripts/install-adk.cmd
Michael H.G. Schmidt be84505362 .
2023-08-13 12:43:07 +02:00

18 lines
362 B
Batchfile

@echo off
set TOOLS=%SystemDrive%\tools
set EXE=..\software\adk-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing Microsoft ADK deployment tools ...
%EXE% /q /ceip off /norestart /features OptionId.DeploymentTools /log %TOOLS%\scripts\install-adk.txt
echo ####### %0 #######