Doing client settings for all computers

Hello,

I am trying to set _BESClient_Download_NormalStageDiskLimitMB but actually I asking for all client parameters. Is there any way to do settings for all clients?

You can create a task to do settings for all clients of specific site.
IBM examples are listed under BES Console > Fixles and Tasks
For example. Task: BES Client Setting: Enable Auto Relay Selection.

PL

many ways to do this, here’s one. I keep an open action for client settings. an example of a similar one:

relevance -
not exists setting “_BESClient_Download_PreCacheStageDiskLimitMB” of client

action script -
// Set precache staging disk limit to 3gb
setting “_BESClient_Download_PreCacheStageDiskLimitMB”=“3084” on “{now}” for client

important action considerations: set to never expire to keep it open, dynamically target something so that new clients can check in and get the setting (I dynamically target ‘All Computers’ for simple global config options)

1 Like