w10install/scripts/install-adk.cmd

17 lines
294 B
Batchfile
Raw Normal View History

2021-02-03 12:42:10 +01:00
@echo off
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 ...
%EXE% /q /ceip off /norestart /features OptionId.DeploymentTools
echo ####### %0 #######