w10install/scripts/install-adk.cmd

18 lines
362 B
Batchfile
Raw Normal View History

2021-02-03 12:42:10 +01:00
@echo off
2023-08-13 12:43:07 +02:00
set TOOLS=%SystemDrive%\tools
2021-02-03 12:42:10 +01:00
2021-02-27 20:07:28 +01:00
set EXE=..\software\adk-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
2021-02-03 12:42:10 +01:00
echo ####### %0 #######
echo installing Microsoft ADK deployment tools ...
2023-08-13 12:43:07 +02:00
%EXE% /q /ceip off /norestart /features OptionId.DeploymentTools /log %TOOLS%\scripts\install-adk.txt
2021-02-03 12:42:10 +01:00
echo ####### %0 #######