Had this issue with deployment with Dell command update. I use PDQ Deploy. After much online reading found that a bach file is easyer to work with.

my code looks like this

cd C:\Program Files\Dell\CommandUpdate

dcu-cli /version

dcu-cli /scan

dcu-cli /applyUpdates -encryptedPasswordFile="???" -encryptionKey="???"

Also not sure if you are trying to run the scan and the apply in the same code. I found that it is more stable to run them in diffrent steps.

hope this helps

Answer from Killing-me-MicroSoftly on Stack Overflow
🌐
GARYTOWN
garytown.com › dell-command-update-install-manage-via-powershell
Dell Command Update – Install & Manage via PowerShell – GARYTOWN ConfigMgr Blog
This helps to simplify the management of Dell Command Update. In a future post, I’ll cover additional functions around creating DCU offline Repos, setting DCU to use those repos and running DCU with them, all via PowerShell. (If I figure it out). ... PS C:\Users\john> Get-DCUVersion 5.4.0 PS C:\Users\john> Install-DCU New Update available: Installed = Not ...
🌐
Dell
dell.com › support › kbdoc › en-us › 000177240 › dell-command-powershell-provider
Dell Command | PowerShell Provider | Dell US
Dell Command | PowerShell Provider: Is not working properly or cannot be imported into PowerShell correctly
Discussions

intune - How to initiate Dell Command updates remotely with a Powershell script - Stack Overflow
Is there a way to initiate these updates on Dell Command (or Support Assist( 4.8.0 remotely with a Powershell script? I'm utilizing Intune to push Powershell scripts within my environment and it should be noted I could manipulate a GPO to roll out DOS commands to essentially do that same thing, but Powershell is an easier method to access and work ... More on stackoverflow.com
🌐 stackoverflow.com
Automated Download + Install of Dell Command | Update
Show us the code you've tried. More on reddit.com
🌐 r/PowerShell
7
4
January 24, 2024
Dell Command update
in dell command update go to settings and set it up the way you want it to run, download and prompt, notify, etc and choose to filter drivers if you want yada yada, then export the settings. it will export an xml that can be imported in dell command update, or through the dcu-cli utility %programfiles%\Dell\commandupdate\dcu-cli.exe /configure -importsettings="YourExportedXMLFile.xml" More on reddit.com
🌐 r/sysadmin
34
63
April 12, 2023
Help with Dell BIOS updates
If you install Dell Command Update you can then make use of that product's CLI(command line interface) to automate the install of the BIOS on that asset. You then no longer need to keep track of BIOS files per model. You can then send one command to all your various models and they would all go check if the need a new BIOS and then install it and reboot. You can also work with a BIOS that is passworded. More on reddit.com
🌐 r/PowerShell
22
6
February 10, 2026
🌐
Reddit
reddit.com › r/powershell › dell command update
r/PowerShell on Reddit: dell command update
March 14, 2024 -

Good evening everyone.

So, I created a powershell script to update a number of pc's (same model-dell). The issue is that when the script runs dell command update, a black cmd screen pops up on the user's display. Is there a way to prevent this popup from appearing?

This is the code I'm using atm:

# Dell Command Update

# Define paths and options for Dell Command Update

$dellCommandUpdatePath = "C:\Program Files\Dell\CommandUpdate\dcu-cli.exe"

$logFolderPathDCU = "C:\Logs\DellCommandUpdate"

🌐
Dell
dell.com › dell community › enterprise products & services › enterprise software › secure connect gateway
How to initiate Dell Command updates remotely with a Powershell script through Intune | DELL Technologies
January 17, 2025 - In short, I have an environment with ~165 devices requiring firmware updates available through Dell Command/Support Assist. I've tested a few scripts by changing to the Dell Command directory and t...
🌐
Dell
dell.com › support › manuals › en-in › command-powershell-provider › dcpp_2.7 › upgrading-dell-command-powershell-provider-27
Dell Command | PowerShell Provider Version 2.7 User's Guide | Dell India
To upgrade Dell Command | PowerShell Provider, run the following command: For 32-bit systems; update-Module -name DellBIOSProviderX86 · For 64-bit systems; update-Module -name DellBIOSProvider · NOTE The above command only installs the latest version of Dell Command | PowerShell Provider ...
🌐
Automox
community.automox.com › community hub › forum › automox worklets › find & share worklets › basic dell command update worklet
Basic Dell Command Update Worklet | Community
November 29, 2023 - Not sure if this is your issue, but file could not be found on mine because it was in a different folder. I’ve updated since then, so below is how I’m only focused on Applying Dell Updates if they exist. If you want super basic, then here that is. I’ve excluded silent and output log because I’ve never had them work with the apply update switch. $x86 = 'C:\Program Files (x86)\Dell\CommandUpdate\dcu-cli.exe' $x64 = 'C:\Program Files\Dell\CommandUpdate\dcu-cli.exe' IF((Test-Path $x86) -eq $true){$dcucli = $x86} IF((Test-Path $x64) -eq $true){$dcucli = $x64} Start-Process -FilePath $dcucli -ArgumentList "/applyUpdates -reboot=disable" -Wait
Find elsewhere
🌐
GARYTOWN
garytown.com › dell-command-update-pulling-back-the-curtains
Dell Command Update – pulling back the curtains – GARYTOWN ConfigMgr Blog
October 27, 2024 - In my next post, I’ll demo this and show the other Functions for controlling DCU using PowerShell ... I was trying to run the Dell-CSML.ps1 locally, and it outputs that it’s loaded, but the functions don’t work. If I run using the iex (irm dell.garytown.com), it installs fine and the functions work. If I copy the code into a local ISE and run it, it also works. Execution policy has been turned off and I’m running as admin, so it’s not that.
🌐
Dell
dell.com › home › support home › product support › manuals
Dell Command | PowerShell Provider Version 2.3 User's Guide | Dell US
Open Windows PowerShell with administrator privileges. To find the Dell Command | PowerShell Provider module, run the following command: Find-Module DellBIOSProvider.
🌐
Reddit
reddit.com › r/powershell › automated download + install of dell command | update
r/PowerShell on Reddit: Automated Download + Install of Dell Command | Update
January 24, 2024 -

I am attempting to create a set of PowerShell scripts/automations, intended to be used in the NinjaRRM console. I am trying to achieve the following:

  • a script to download and install DCU if it is not already installed

  • a script that scans for and logs any pending/needed updates/installs to custom fields

  • a final script to install all the updates and reboot

However I have yet to find a way to download and install Dell Command | Update as part of an automation, and ninja flags both the .exe file and the download URL as suspicious. I am relatively new to automation and ninja as this is my first position at an msp. Any suggestions or advice welcome

EDIT: I have no successfully gotten this to work. In addition I have created a GitHub repository that contains a few useful scripts for DCU, I have also numbered them in the order they were intended to be run in. https://github.com/nolannash/dcu-scipting

🌐
Reddit
reddit.com › r/powershell › [deleted by user]
[deleted by user] : r/PowerShell
September 4, 2020 - Start-Process "C:\Program Files (x86)\Dell\CommandUpdate\dcu-cli.exe" -ArgumentList "/log \\pathtologs\logs /import /policy ""C:\Program Files (x86)\Dell\CommandUpdate\policy.xml""" ... I had a very similar problem with a script using -argumentlist, the end result was very counter-intuitive and was removing the nested quotes. Just remove the " ", didn't seem to matter that there was a space in "program files". Curious if this works for you. If it doesn't, try moving the file to a place with no space in the name ... PowerShell is a cross-platform (Windows, Linux, and macOS) automation tool and configuration framework optimized for dealing with structured data (e.g.
🌐
Dell
dell.com › support › kbdoc › en-us › 000177325 › dell-command-update
Dell Command | Update | Dell US
May 27, 2026 - The installation of Dell Command Update version 5.7 necessitates the prior installation of a .NET Desktop Runtime version ranging from 8.0.8 to 8.0.25. Note: The links in this table automatically identify your computer.
🌐
Dell
dell.com › support › kbdoc › en-us › 000151982 › dell-command-powershell-provider-is-not-working-properly-or-can-t-be-imported-into-powershell-correctly
Dell Command | PowerShell Provider Does not work properly or cannot import into PowerShell | Dell US
Import Module : The specified module ... char:1 - Import Module DellBIOSProvider – verbose · Resolution: Be sure the folders from the Dell Command | PowerShell Provider ZIP are copied to the correct location....
🌐
Dell
dell.com › support › kbdoc › en-uk › 000177240 › dell-command-powershell-provider
Dell Command | PowerShell Provider | Dell UK
Dell Command | PowerShell Provider: Is not working properly or cannot be imported into PowerShell correctly
🌐
GitHub
github.com › ajh0912 › Useful-PowerShell › blob › main › Install-DellCommandUpdate.ps1
Useful-PowerShell/Install-DellCommandUpdate.ps1 at main · ajh0912/Useful-PowerShell
# Wildcard before 'Update' ensures we match when the pipe character is present, and also when missing · Get-ItemProperty HKLM:\Software\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Where-Object { $_.DisplayName -like 'Dell Command *Update' }
Author   ajh0912
🌐
LinkedIn
linkedin.com › pulse › powershell-automation-install-configure-execute-dell-command-webber
PowerShell Automation: Install, Configure, and Execute Dell Command Update
April 15, 2023 - Now that DCU is installed on the remote computer, DCU needs to be configured to reboot when necessary and then told to start downloading/installing all the driver and BIOS updates. DCU has a command line interface with it's own unique commands. Dell has done a great job of documenting these commands so I didn't have to spend a lot of time researching how to run these commands via Powershell.
🌐
Adam the Automator
adamtheautomator.com › dell-command-update
Master Dell Command Update and Keep Your Dell Apps Current
February 16, 2024 - To utilize the Dell Command Update CLI effectively: 1. Open the command prompt or PowerShell as an administrator.
🌐
Reddit
reddit.com › r/powershell › help with dell bios updates
r/PowerShell on Reddit: Help with Dell BIOS updates
February 10, 2026 -

Do any of you fine folks have experience pushing out Dell BIOS updates remotely using powershell? I banged my head against my keyboard for a couple hours yesterday trying to get this to work.

All the other parts of my script worked just fine, but the invoke-command part doesn't seem to work.

Invoke-Command -ComputerName $PC -Scriptblock {Start-Process C:\Temp\BIOSupdate.exe -ArgumentList '/s /r /p="$password"'}

I can RDP to the system and run this exact command in powershell and it works, but doing it via PSSession or using Invoke-Command fails and I can't seem to get why. Anybody have any insight to what I'm doing wrong?

*Edited for formatting*

🌐
Reddit
reddit.com › r/dellxps › dell command update shows updates, but fails
r/DellXPS on Reddit: Dell Command Update shows updates, but fails
April 10, 2024 -

XPS 15 9500

DCU v. 5.2.0.66

Windows 11 CoPilot Preview

Last successful update 3/19/2024. Don't know what was actually updated.

From the 19th on, DCU shows two updates. When I try to download and install, I get a message that installation failed. No other information on screen. I've tried downloading from the Dell support site. Had to use a private tab, but that says driver detection not available. The list of drivers for my service tag show different versions. I.e. the audio driver on the website is A71.

In the Activity log after Update.Operations.UpdateOperation.Download entries I have:

Failed, deleting Package 'Realtek High Definition Audio Driver' [FOLDER10969327M/2/Realtek-High-Definition-Audio-Driver_7HX49_WIN_6.0.9597.1_A80_01.EXE]

Failed, deleting Package 'Intel Management Engine Components Installer' [FOLDER10938937M/2/Intel-Management-Engine-Components-Installer_7FHFF_WIN64_2345.5.42.0_A13.EXE]

Another relevant (?) activity says:

Package 'Realtek High Definition Audio Driver' has invalid check sum.

I've rebooted a few times and retried w/o success.

I'll try reaching Dell support, but any suggestions would be welcome.