🌐
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. Dell Command | Configure supports the following Windows and Linux operating systems:
🌐
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 › 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 ... of 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-configure › dellcommandconfigure_rg_4.x
Dell Command | Configure Version 4.x Command Line Interface Reference Guide | Dell US
IT administrators can configure BIOS settings and create BIOS packages using the Dell Command | Configure User Interface (UI) or Command Line Interface (CLI).
🌐
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 ... of Dell Command | Update. To run 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 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). Dell Command | Configure supports following Windows and Linux operating systems: Windows 7, Windows 8, Windows 8.1, and Windows 10, Windows Preinstallation Environment (Windows ...
Find elsewhere
🌐
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
Dell Command | Update provides a command line version of the application form that can be used for batch and scripting setups. The CLI is fully automatic and has no interactive user prompts. The CLI enables administrators to use automated remote deployment infrastructure for further updates.
🌐
Dell
dell.com › support › manuals › en-us › command-configure › dcc_5.x_ref_guide › introduction-to-dell-command-configure
Dell Command | Configure Version 5.x Command-line Interface Reference Guide | Dell US
IT administrators can configure BIOS settings and create BIOS packages using the Dell Command | Configure User Interface (UI) or Command-line Interface (CLI).
🌐
Dell
dell.com › home › support home › product support › manuals
Dell Command | Update Version 2.4 User's Guide | Dell US
The basic runtime options are provided as command line parameters, such as setting a catalog location, importing a new policy file, and changing the default log location. To run the CLI interface: From the Dell Command | Update installation folder, in command prompt, run the dcu-cli.exe command.
🌐
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 2: Using command-line interface for Dell Command | Configure 4.3................................17
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
🌐
Dell
dell.com › home › support home › product support › manuals
Dell EMC OpenManage Command Line Interface Guide Version 9.5 | Dell US
If you are running the Microsoft Windows operating system, use the 32-bit command prompt to run a Server Administrator CLI command.
🌐
Dell
dl.dell.com › topicspdf › command-configure_users-guide4_en-us.pdf pdf
Dell Command | Configure Version 4.5 User's Guide May 2021 Rev. A00
Dell Command | Configure is a software package that provides BIOS configuration capability for Dell client systems.
🌐
Gainanov
gainanov.pro › eng-blog › sysad › dell-switch-console-commands
DELL. CLI commands - GAINANOV.PRO
August 8, 2020 - Prompt CLI Command Mode Dell> EXEC Dell# EXEC Privilege Dell(conf)# CONFIGURATION
🌐
Dell
dell.com › support › kbdoc › en-us › 000177196 › the-dell-command-configure-power-monitor-update-utilities-software-overview
The Dell Command |Configure |Power | Monitor| Update Utilities Software Overview | Dell US
The tool’s easy-to-use CLI can be used for automating driver installation and updates · The tool provides an easy-to-use Graphical UI, which helps in identifying and applying appropriate drivers and updates for the computer · Note: .NET 4.8.1 or a later version is required to run the Dell Command | Update utility.
🌐
Elevatetechcommunity
elevatetechcommunity.org › resource › command-explained
Dell Command Explained: Endpoint Management Tools
July 30, 2025 - To run these scripts, first navigate to Start > All Programs > Dell > Command Configure, then right-click Dell Command Configure Command Prompt and select Run as administrator.
🌐
Dell
dell.com › support › kbdoc › en-us › 000177325 › dell-command-update
Dell Command | Update | Dell US
May 27, 2026 - Dell Command | Update (DCU) is a standalone application for commercial client computers that provides updates for system software Dell releases. This application simplifies the BIOS, firmware, driver, and application update experience for Dell commercial client hardware.