Unsolved
1 Rookie
•
3 Posts
0
2165
March 10th, 2021 10:00
Dell Command Update - Update Filter Setting
Deploying Dell Command Update remotely with the following options:
dcu-cli.exe /configure -scheduleWeekly=Wed,15:00 -updateSeverity=recommended,critical,optional,security -updateType=bios,firmware,driver,utility,others -updateDeviceCategory=network,storage,audio,video,input,others -scheduleAction=DownloadInstallAndNotify -autoSuspendBitLocker=enable
However I would also like to configure the top section when you select update filter called "What to Display". It has 2 options, Updates for this system configuration or All Updates for System model.
I cannot find the argument to add to configure that. Any idea on how to configure that setting?
No Events found!



kamorrow12
2 Posts
0
March 10th, 2021 13:00
I was trying to figure out the exact same thing today.
Here's what i found:
It's actually a regkey. When you set one or the other in the GUI, the following REGKEY changes.
KEY_LOCAL_MACHINE\SOFTWARE\Dell\UpdateService\Clients\CommandUpdate\Preferences\Settings\UpdateFilter
String Key: FilterApplicableMode
Possible Values:
1. ShowAllForPlatform
2. ShowOnlyForSystemConfig
Hope it helps.
Kyle A Morrow
kamorrow12
2 Posts
0
March 10th, 2021 13:00
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Dell\UpdateService\Clients\CommandUpdate\Preferences\Settings\UpdateFilter /v FilterApplicableMode /t REG_SZ /d ShowAllForPlatform
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Dell\UpdateService\Clients\CommandUpdate\Preferences\Settings\UpdateFilter /v FilterApplicableMode /t REG_SZ /d ShowOnlyForSystemConfig
dj56
1 Rookie
•
3 Posts
0
March 11th, 2021 05:00
Ill give that a try. Thanks!