There is BOTH a traditional Win32 application and Universal Installer for version 4.6. There is ONLY a Universal Installer for version 4.7. Installing the 32-bit 4.6 version will install the application into: "%ProgramFiles(x86)%\Dell\CommandUpdate\" Installing the Universal 4.6/4.7 version will install the application into: "%ProgramFiles%\Dell\CommandUpdate\" At the time of this post, the 4.7 version appears to have been pulled by Dell. Use the Universal 4.6 application for now. Answer from St0nywall on reddit.com
🌐
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.
🌐
Dell
dell.com › home › support home › product support › driver details
Dell Command | Update Application | Driver Details | Dell US
July 29, 2021 - This package contains the Dell Command Update application that supports Win32. Dell Command Update is a stand-alone application for client systems, that provides updates for system software that is released by Dell. This application simplifies the BIOS, firmware, driver, and application update ...
Discussions

Difference in Dell Command Update Application & Dell Command Update Windows Universal Application?
There is BOTH a traditional Win32 application and Universal Installer for version 4.6. There is ONLY a Universal Installer for version 4.7. Installing the 32-bit 4.6 version will install the application into: "%ProgramFiles(x86)%\Dell\CommandUpdate\" Installing the Universal 4.6/4.7 version will install the application into: "%ProgramFiles%\Dell\CommandUpdate\" At the time of this post, the 4.7 version appears to have been pulled by Dell. Use the Universal 4.6 application for now. More on reddit.com
🌐 r/sysadmin
9
4
November 17, 2022
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 - is it needed?
All applications have exploits, but to be fair, the version you are referencing (4.3) is very old. As long as you stay on top of patching, which is a must these days, its not a problem. More on reddit.com
🌐 r/sysadmin
26
15
September 14, 2022
Dell Command Update Issues
"Enshittification death spiral" has successfully been installed into my vocabulary. More on reddit.com
🌐 r/sysadmin
60
41
August 29, 2025
🌐
Dell
dell.com › home › support home › product support › driver details
Dell Command | Update Windows Universal Application | Driver Details | Dell US
This package contains the Dell Command | Update Windows Universal application. Dell Command Update is a stand-alone application for systems, that provides updates for system software that is released by Dell. This application simplifies the BIOS, firmware, driver, and application update experience ...
🌐
Arcadia University
helpdesk.arcadia.edu › hc › en-us › articles › 12352640166285-How-to-Run-a-Dell-Command-Update
How to Run a Dell Command Update – Arcadia University
June 6, 2023 - Here's instructions on how to run a Dell Command Update. We recommend users perform this update at least once a week to keep your device up to date. Performing an update: Hit Windows...
🌐
Dell
dell.com › home › support home › product support › driver details
Dell Update Application | Driver Details | Dell US
This package provides the Dell Update Application and is supported on Inspiron, Vostro, XPS and Alienware Windows 10, > = RS1+ (build 14393) systems.
Find elsewhere
🌐
Dell
dell.com › home › support home › product support › driver details
Dell Command | Update Application | Driver Details | Dell UK
March 25, 2022 - This package contains the Dell Command | Update application. Dell Command Update is a stand-alone application for client systems, that provides updates for system software that is released by Dell. This application simplifies the BIOS, firmware, driver, and application update experience for ...
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
🌐
GARYTOWN
garytown.com › dell-command-update-install-manage-via-powershell
Dell Command Update – Install & Manage via PowerShell – GARYTOWN ConfigMgr Blog
Sorry, not sure what happened there. https://github.com/gwblok/garytown/blob/master/hardware/Dell/CommandUpdate/EMPS/Dell-EMPS.ps1 is correct and I just confirmed it is there · Wonderful solution, works perfectly, do you know if one day in your developments you could integrate the possibility of inserting the bios password for updates?
🌐
Dell
dell.com › support › kbdoc › en-us › 000108963 › how-to-use-and-troubleshoot-dell-command-update-to-update-all-drivers-bios-and-firmware-for-your-system
How to Use Dell Command Update to Update All Drivers, BIOS, and Firmware For Your Computer | Dell US
Dell Command Update (DCU) is a Dell utility that allows you to automate driver, BIOS, and firmware updates on your computer. The Dell Command Update tool allows you to keep your computer up to date without you having to know every driver or update needed.
🌐
Dell
dell.com › home › support home › product support › driver details
Dell Command | Update Application for Windows 10 | Driver Details | Dell US
This Universal Windows Platform (UWP) package contains the Dell Command Update for systems running the Windows 10 build 14393 (Redstone 1) or later. Dell Command Update is a stand-alone application for client systems, that provides updates for system software that is released by Dell. This ...
🌐
Reddit
reddit.com › r/sysadmin › dell command update - is it needed?
r/sysadmin on Reddit: Dell Command Update - is it needed?
September 14, 2022 -

Given the recent exploits for Dell Command I'd like to uninstall it from our computers if I can.

DSA-2021-154: Dell Command | Update, Dell Update, Alienware Update, and Alienware Command Center Application Security Update for Improper Verification of Cryptographic Signature Vulnerability | Dell US

However my concern is that I think Dell Command updates firmware and drivers that Windows update may not? Am I incorrect in that? Can't find much info online, but if someone knows off the top of their head it would be appreciated.

🌐
Pittsburgh University
services.pitt.edu › TDClient › 33 › Portal › KB › ArticleDet
Running Updates with Dell Command | Update
Dell Command | Update is a standalone application that provides updates for system software that is released by Dell. This application enables you to update Dell client systems with the latest drivers, BIOS, applications, and firmware.
🌐
Zoom
support.zoom.com › hc › en › article
VDI releases and downloads
2 weeks ago - Compatible plugins for this VDI release are listed below. Click the appropriate link for your environment
🌐
Dell
dell.com › home › support home › product support › driver details
Dell Command | Update | Driver Details | Dell Canada
This package contains the Dell Command | Update application. Dell Command Update is a stand-alone application for client systems, that provides updates for system software that is released by Dell. This application simplifies the BIOS, firmware, driver, and application update experience for ...
🌐
WPS Office
wps.com › blog › dell-command-update-download-your-setup-features-and-real-world-guide
Dell Command Update Download: Your 2026 Setup, Features & Real-World Guide
The installer is about 50–60MB and sets up in under 3 minutes, making it a quick fix for sluggish systems or routine maintenance. Step 1: Go to the official Dell support page. Enter the model number or your service tag and select the latest matching version of the drivers.
🌐
Dell
dell.com › support › kbdoc › en-us › 000177292 › how-to-create-a-dell-command-update-msi-installer-package
How to Obtain the MSI Installer Package for Dell Command Update | Dell US
Dell-Command-Update-Application_[VERSION].exe /passthrough /X /B”[EXTRACTION PATH]” Example: C:\Dell>Dell-Command-Update-Application_5CR1Y_WIN64_5.6.0_A00.exe /passthrough /X /B”C:\Dell\DCU_Extracted”