🌐
Dell
dell.com › support › kbdoc › en-us › 000178000 › dell-command-configure
Dell Command Configure | Dell US
This product consists of a Command-Line Interface (CLI) and Graphical User Interface (UI) to configure various BIOS features.
Discussions

Install all available updates via Dell Command Update CLI commands?
Get-Process DellCommandUpdate -ErrorAction SilentlyContinue |Stop-Process -Force cmd /c 'C:\Program Files\Dell\CommandUpdate\dcu-cli.exe' /configure -updatetype='bios,firmware,driver' -maxretry=2 Start-Process -WindowStyle hidden -filepath $DCU_exe -ArgumentList "/applyUpdates -silent -reboot=disable -outputlog=$DCU_report" -Wait cmd /c "C:\Program Files\Dell\CommandUpdate\dcu-cli.exe" /configure -restoreDefaults cmd /c "C:\Program Files\Dell\CommandUpdate\dcu-cli.exe" /configure -updatesNotification=disable this is what i use...we uninstall DCU, reinstall, then run this (DCU used to freeze constantly, reinstall seemed to help not sure if its still a thing.) i push this out with our monthly patches so the reboot should get taken care of...its not perfect but it does the trick and i dont have to maintain up to date drivers I just let DCU handle it. More on reddit.com
🌐 r/sysadmin
16
2
April 10, 2024
Automating Dell Command Update

I run this as an application towards the end of the TS then reboot with MDT and run it again followed by another reboot before finishing up the whole TS.

@echo off
TITLE Running DELL Command Update...
REM Checks for updated DELL Drivers using DELL Command Update CLI

"C:\Program Files\Dell\CommandUpdate\dcu-cli.exe" /configure -silent -autoSuspendBitLocker=enable -userConsent=disable
"C:\Program Files\Dell\CommandUpdate\dcu-cli.exe" /scan -outputLog=C:\dell\logs\scan.log
"C:\Program Files\Dell\CommandUpdate\dcu-cli.exe" /applyUpdates -reboot=disable -outputLog=C:\dell\logs\applyUpdates.log        

It's pretty self explanatory but it configures it first, does a scan, then applies the updates and disables reboot so that MDT can do it instead. I run this against DCU 4.1.

I don't recommend silencing the Apply Updates stage (it isn't in that script above) because sometimes it can take a little while and not being able to see what it's doing can be nerve racking.

More on reddit.com
🌐 r/MDT
27
12
March 12, 2021
Dell Command Update 4.0.0

https://www.dell.com/support/home/en-us/product-support/product/command-update/docs

Under manuals and documents.

More on reddit.com
🌐 r/sysadmin
19
32
November 13, 2020
Dell Command Update 3.1 brings back CLI support
I think I'm more excited about the automatic bitlocker suspension. We've wrecked more than a couple laptops when forgetting to do this. More on reddit.com
🌐 r/sysadmin
34
53
December 2, 2019
🌐
Dell
dell.com › support › kbdoc › en-us › 000177325 › dell-command-update
Dell Command | Update | Dell US
May 27, 2026 - Download Dell Command Update and read release notes and specifications.
🌐
Dell
dell.com › support › manuals › en-us › command-update › dcu_ug › dell-command-update-command-line-interface
Dell Command | Update Version 5.x User's Guide | Dell US
It provides basic options with ... Dell Command | Update. To run the CLI: Launch the command prompt as an Administrator, then go to %Program Files (x86)%\Dell\CommandUpdate and run the dcu-cli.exe command in the command prompt....
🌐
Dell
dell.com › support › manuals › en-us › command-update › dellcommandupdate_311_ug › dell-command-update-command-line-interface
Dell Command | Update Version 3.1.1 User's Guide | Dell US
It provides basic options with ... the CLI: Launch the command prompt as an Administrator, then navigate to %PROGRAMFILES%\Dell\CommandUpdate and run the dcu-cli.exe command in the command prompt....
🌐
Dell
dell.com › home › support home › product support › manuals
Dell Command | Configure Version 3.1 Command Line Interface Reference Guide | Dell US
dell-cmnd-config-v3.1 | Dell Command | Configure Version 3.1 Command Line Interface Reference Guide | using-the-command-prompt
🌐
Dell
dell.com › support › manuals › en-us › command-update › dellcommandupdate_3.1_ug › dell-command-update-command-line-interface
Dell Command | Update Version 3.1 User's Guide | Dell US
At this point, the command line ... the CLI: Launch the command prompt as an Administrator, then navigate to %PROGRAMFILES%\Dell\CommandUpdate and then run the dcu-cli.exe command in command prompt....
🌐
Dell
dell.com › home › support home › product support › manuals
Dell Command | Configure Version 4.3 Command Line Interface Reference Guide | Dell US
You can easily configure client systems using a Graphical User Interface (GUI) or a Command Line Interface (CLI).
Find elsewhere
🌐
Dell
dell.com › support › manuals › en-us › command-configure › dellcommandconfigure_rg_4.x
Dell Command | Configure Version 4.x Command Line Interface Reference Guide | Dell US
command-configure | Dell Command | Configure Version 4.x Command Line Interface Reference Guide | introduction-to-dell-command-configure
🌐
Dell
dl.dell.com › topicspdf › command-configure_reference-guide2_en-us.pdf pdf
Dell Command | Configure Version 4.3 Command Line Interface Reference Guide
Chapter 1: Introduction to Dell Command | Configure 4.3............................................................
🌐
Dell
dell.com › home › support › support videos › how to run dell command | configure as a command line tool
How to run Dell Command | Configure as a Command Line Tool | Dell Panama
Learn how to run Dell Command | Configure as a command line tool and deploy a BIOS policy. For more information and product download visit: https://bit.ly/2UkSl25
Published   August 4, 2022
🌐
Reddit
reddit.com › r/sysadmin › install all available updates via dell command update cli commands?
r/sysadmin on Reddit: Install all available updates via Dell Command Update CLI commands?
April 10, 2024 -

Hi Everyone,

We’re using Dell Command Update to push our Drivers and BIOS updates.

Instead of waiting for the updating to automatically trigger, When I used the /ApplyUpdates option it only really installed a handful of what is available in my catalogue. Skipping among many things the BIOS update.

I was wondering if there is an option to just install everything available in the catalogue?

Thanks everyone!

🌐
Dell
dell.com › home › support home › product support › driver details
Dell Command | Update Windows Universal Application | Driver Details | Dell US
If you have Dell Command Update Classic, Dell Command Update version 4.7 UWP is installed. ... Note: Your system requires a restart after installing the application. The restart can be deferred but must be completed to ensure that the update is installed. Download: 1. Click Download File.
🌐
Manuals+
manuals.plus › home › dell › dell command | update version 4.x reference guide
Dell Command | Update Version 4.x Reference Guide
August 18, 2025 - This reference guide provides detailed information on Dell Command | Update, a utility for managing system updates. It covers the command-line interface (CLI) commands, options, s…
Top answer
1 of 5
6

I run this as an application towards the end of the TS then reboot with MDT and run it again followed by another reboot before finishing up the whole TS.

@echo off
TITLE Running DELL Command Update...
REM Checks for updated DELL Drivers using DELL Command Update CLI

"C:\Program Files\Dell\CommandUpdate\dcu-cli.exe" /configure -silent -autoSuspendBitLocker=enable -userConsent=disable
"C:\Program Files\Dell\CommandUpdate\dcu-cli.exe" /scan -outputLog=C:\dell\logs\scan.log
"C:\Program Files\Dell\CommandUpdate\dcu-cli.exe" /applyUpdates -reboot=disable -outputLog=C:\dell\logs\applyUpdates.log

It's pretty self explanatory but it configures it first, does a scan, then applies the updates and disables reboot so that MDT can do it instead. I run this against DCU 4.1.

I don't recommend silencing the Apply Updates stage (it isn't in that script above) because sometimes it can take a little while and not being able to see what it's doing can be nerve racking.

2 of 5
3

Update: Not sure if this was recent but you must now remove the (x86) out of the Program Files path (maybe they made the app x64 now?)

Here's a script I made that works really well. Of course you can tailor it for a GPO but standalone, it works wonders.

The gist is.. it will check if Dell Command Update is installed and if it is, it will run it and install all available updates. If it's not installed, it will look for the Dell Command Update msi and silently install it and then run it silently. If it cannot find the msi automatically, it will prompt you with an explorer GUI to browse to the .msi and silently install/run it.

Esentially.. a single click to do all Dell updates. It's also turning off Dell automatic update (handy for enterprise/small business) but you can delete/comment that out. In order to get the .msi you can run the Dell Command Update tool and in the middle of it running, you can find it in the Windows temp directory and copy it out of their and put it on a network share or USB stick for mass deployment.

@echo off
cls

tasklist | find /i "DellCommandUpdate.exe" && echo Closing existing Dell Command Update && taskkill /im DellCommandUpdate.exe /F
SET file=S:\Downloads\DellCommandUpdate.msi
if exist "C:\Program Files (x86)\Dell\CommandUpdate\dcu-cli.exe" goto:runDellUpdater
if exist "%file%" goto:installDellUpdater

echo Please navigate to the DellCommandUpdate.msi file
set dialog="about:<input type=file id=FILE><script>FILE.click();new ActiveXObject
set dialog=%dialog%('Scripting.FileSystemObject').GetStandardStream(1).WriteLine(FILE.value);
set dialog=%dialog%close();resizeTo(0,0);</script>"
for /f "tokens=* delims=" %%p in ('mshta.exe %dialog%') do set "file=%%p"

:installDellUpdater
echo Installing Dell Command Update app
"%file%" /quiet

:runDellUpdater
echo Disabling Dell automatic updates
REG ADD "HKLM\SOFTWARE\Dell\UpdateService\Clients\CommandUpdate\Preferences\Settings\Schedule" /v "ScheduleMode" /t REG_SZ /d "ManualUpdates" /f
echo Running the Dell Command Update app
"C:\Program Files (x86)\Dell\CommandUpdate\dcu-cli.exe" /ApplyUpdates
pause
🌐
Elevatetechcommunity
elevatetechcommunity.org › resource › command-explained
Dell Command Explained: Endpoint Management Tools
July 30, 2025 - Download Dell-Command-Update-Application-for-Windows_xxxxx_WIN_y.y.y_A00.EXE where "x" is the software ID and "y" is the version number. Open the .exe file that is downloaded from the Dell support site and click Install.
🌐
Dell
dl.dell.com › manuals › common › powerconnect-3424_reference guide_en-us.pdf pdf
Command Line Interface (CLI) Guide
The first time you use the CLI from the console a Setup Wizard is invoked. The Setup Wizard · guides you in setting up a minimum configuration, so that the device can be managed from the · Web Based Interface. Refer to the Getting Started Guide and User Guide for more information ... The system commands can be broken down into functional groups as shown below.
🌐
Dell
dell.com › support › product-details › en-us › product › command-configure › resources › manuals
Support for Dell Command | Configure | Manuals & Documents | Dell US
Discover manuals and documentation for your Dell Command | Configure. Choose a product or enter your Service Tag for customized content.
🌐
Dell
dell.com › support › manuals › en-uk › dell-comnd-update-v2.1 › dcu_2.1_ug › dell-command-update-command-line-interface-options
Dell Command Update Version 2.1 User's Guide | Dell UK
Dell Command Update CLI provides the return codes after the execution is complete: ... When you run DCU-cli.exe, if no parameters are provided, the default behavior is to check, download, and install the available updates.