SCCM : Dell Driver Automation via SCCM

1)We need to create a package with batch file with below statement.

start /wait “C:\Program Files (x86)\Dell\CommandUpdate\dcu-cli.exe” /import /policy C:\ProgramData\Dell\CommandUpdate\MySettings.xml
if %ERRORLEVEL% == 0 goto RUNDCU
else goto QUITTASK
RUNDCU
“C:\Program Files (x86)\Dell\CommandUpdate\dcu-cli.exe” /log C:\ProgramData\Dell\DCU.log
/silent
:QUITTASK
exit /b %ERRORLEVEL%

2) Create an XML file with below detail

3) Create a Package with standard program and select the RunDCU_2x.cmd in the command line and deploy it .


Leave a comment