Unsolved

1 Rookie

 • 

1 Message

52

November 3rd, 2025 19:36

Need Guidance, enforcing dell command | update auto updates through Intune

I already have the Dell Command | Update package ready in Intune, but I want a script that, after the Dell Command utility installation, enforces automatic updates for all dell drivers and BIOS.

2 Intern

 • 

246 Posts

November 4th, 2025 14:20

@TechUST 

use the command line parameter for DCU

https://www.dell.com/support/manuals/de-de/command-update/dcu_ug/dell-command-update-command-line-interface?guid=guid-c8d5aee8-5523-4d55-a421-1781d3da6f08&lang=en-us

1 Rookie

 • 

2 Posts

November 7th, 2025 06:23

I already have the Dell Command | Update package ready in Intune, but I want a script that, after the Dell Command utility installation, enforces automatic updates for all dell drivers and BIOS.

Hello @TechUST,

You can use a post-install PowerShell script with Dell Command | Update to enforce auto updates. Example:

```powershell
Start-Process -FilePath "C:\Program Files (x86)\Dell\CommandUpdate\dcu-cli.exe" -ArgumentList "/configure -autoSuspend=enable /schedule=weekly /silent" -Wait
Start-Process -FilePath "C:\Program Files (x86)\Dell\CommandUpdate\dcu-cli.exe" -ArgumentList "/applyUpdates -silent" -Wait
```

Deploy via Intune as part of your Win32 app install or remediation script. Ensure proper permissions and test on target models.

Best Regards,
Jill Muncy

No Events found!

Top