- Información general
- Comience ya
- Conceptos
- Using UiPath CLI
- Guías prácticas
- CI/CD recipes
- Referencia de los comandos
- Información general
- Códigos de salida
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- Crear proyecto
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-workflow-examples
- pack
- restore
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- Migración
- Reference & support
UiPath CLI user guide
uip or settings reads and writes tenant-level Orchestrator settings. Settings are key-value pairs organized by dotted prefix (Abp.Timing.*, Alerts.Email.*, Auth.*, Scalability.*, Triggers.*, etc.). Use settings list to discover keys, settings get/update to read or change a single value, settings execution for the structured execution-settings configuration (display names and allowed values), and settings timezones to list valid timezone IDs.
Synopsis
uip or settings <verb> [options]
uip or settings <verb> [options]
Verbs
| Verb | Propósito |
|---|---|
list | List tenant settings. |
get | Read one setting by key. |
update | Write one setting by key. |
execution | Get the execution-settings configuration (Global or Robot scope). |
timezones | List available timezone IDs. |
All verbs honor the global options (--output, --output-filter, --log-level, --log-file). Exit codes follow the standard contract.
Common setting keys
The categories below are non-exhaustive — use settings list to discover everything.
- General:
Abp.Timing.TimeZone(timezone ID — runsettings timezonesto list valid IDs),Abp.Localization.DefaultLanguageName(for example,en,fr,de). - Email alerts:
Alerts.Email.Enabled,Abp.Net.Mail.Smtp.Host,.Port,.UserName,.Password,.EnableSsl,.UseDefaultCredentials,Abp.Net.Mail.DefaultFromAddress. - Robot security:
Auth.Robot.EnforceAuthenticationToken,Auth.UnattendedRobot.ForceClientCredentials,AttendedRobot.RunDisconnectedHours(integer;0disables). - Deployment:
DeploymentUrl,NuGet.Packages.ApiKey,Deployment.Libraries.Url,NuGet.Activities.ApiKey,Deployment.Processes.AuthenticationType(Secure/apiKey). - Scalability:
Scalability.SignalR.Enabled,Scalability.SignalR.Transport(bitmask:1WebSockets,2SSE,4LongPolling,7all),Scalability.Heartbeat.PeriodSeconds(default30),Scalability.Heartbeat.FailureThreshold(default4). - Triggers:
Triggers.DisableWhenFailedCount(default10),Triggers.DisableWhenFailingSinceDays(default1),Triggers.JobsCountStrategy(PERPROCESS/PERTRIGGER),QueueTrigger.ActivationFrequencyInMinutes(default30),ConnectedTriggers.AutoDisableJobFailuresThreshold(default5). - Queue:
inProgressMaxNumberOfMinutes(default1440= 24 h). - Jobs:
Jobs.TerminatingJobsTimeout(default1440minutes = 24 h).
uip or settings list
List tenant settings. Optionally filter by scope.
Opciones
| Corto | Largo | Valor | Predeterminado | Descripción |
|---|---|---|---|---|
-t | --tenant | name | session default | Override the tenant. |
| — | --scope | ENUM | — | Application, Tenant, User, All. |
-l | --limit | Número | 100 | Page size. |
| — | --offset | Número | 0 | Skip count. |
Ejemplos
uip or settings list
uip or settings list --scope Tenant --limit 200
uip or settings list --output-filter 'Data[].name'
uip or settings list
uip or settings list --scope Tenant --limit 200
uip or settings list --output-filter 'Data[].name'
Data shape (--output json)
{
"Code": "SettingsList",
"Data": [
{ "name": "Abp.Timing.TimeZone", "value": "UTC", "id": "Abp.Timing.TimeZone" },
{ "name": "Alerts.Email.Enabled", "value": "true", "id": "Alerts.Email.Enabled" }
]
}
{
"Code": "SettingsList",
"Data": [
{ "name": "Abp.Timing.TimeZone", "value": "UTC", "id": "Abp.Timing.TimeZone" },
{ "name": "Alerts.Email.Enabled", "value": "true", "id": "Alerts.Email.Enabled" }
]
}
uip or settings get
Read one setting by key.
Argumentos
| Nombre | Obligatorio | Propósito |
|---|---|---|
<key> | Sí | Setting key (for example, Abp.Timing.TimeZone). |
Opciones
| Corto | Largo | Valor | Predeterminado | Descripción |
|---|---|---|---|---|
-t | --tenant | name | session default | Override the tenant. |
Ejemplos
uip or settings get Abp.Timing.TimeZone
uip or settings get Alerts.Email.Enabled --output-filter 'Data.Value'
uip or settings get Abp.Timing.TimeZone
uip or settings get Alerts.Email.Enabled --output-filter 'Data.Value'
Data shape (--output json)
{
"Code": "SettingsGet",
"Data": {
"Key": "Abp.Timing.TimeZone",
"Value": "UTC"
}
}
{
"Code": "SettingsGet",
"Data": {
"Key": "Abp.Timing.TimeZone",
"Value": "UTC"
}
}
uip or settings update
Write one setting by key.
Argumentos
| Nombre | Obligatorio | Propósito |
|---|---|---|
<key> | Sí | Setting key. |
<value> | Sí | New value (string; server-side validation applies). |
Opciones
| Corto | Largo | Valor | Predeterminado | Descripción |
|---|---|---|---|---|
-t | --tenant | name | session default | Override the tenant. |
Ejemplos
uip or settings update Abp.Timing.TimeZone Europe/Bucharest
uip or settings update Alerts.Email.Enabled true
uip or settings update Abp.Timing.TimeZone Europe/Bucharest
uip or settings update Alerts.Email.Enabled true
Data shape (--output json)
{
"Code": "SettingsUpdated",
"Data": {
"Key": "Abp.Timing.TimeZone",
"Value": "Europe/Bucharest",
"Status": "Updated successfully"
}
}
{
"Code": "SettingsUpdated",
"Data": {
"Key": "Abp.Timing.TimeZone",
"Value": "Europe/Bucharest",
"Status": "Updated successfully"
}
}
uip or settings execution
Get the structured execution-settings configuration for Global (0) or Robot (1) scope. Each entry includes a display name, value type (Boolean, MultipleChoice, etc.), default value, and — for choice types — the list of allowed values.
Opciones
| Corto | Largo | Valor | Predeterminado | Descripción |
|---|---|---|---|---|
-t | --tenant | name | session default | Override the tenant. |
| — | --scope | 0 o 1 | 0 | Settings scope: Global (0) or Robot (1). |
Ejemplos
# Global execution settings
uip or settings execution
# Robot-scoped execution settings
uip or settings execution --scope 1
# Just the keys and their allowed values
uip or settings execution \
--output-filter 'Data._configuration[].{k:key, vals:possibleValues}'
# Global execution settings
uip or settings execution
# Robot-scoped execution settings
uip or settings execution --scope 1
# Just the keys and their allowed values
uip or settings execution \
--output-filter 'Data._configuration[].{k:key, vals:possibleValues}'
Data shape (--output json)
{
"Code": "ExecutionSettings",
"Data": {
"scope": "Global",
"_configuration": [
{
"key": "TracingLevel",
"displayName": "Logging Level",
"valueType": "MultipleChoice",
"defaultValue": "Information",
"possibleValues": [
"Verbose", "Trace", "Information", "Warning", "Error", "Critical", "Off"
]
},
{
"key": "LoginToConsole",
"displayName": "Login To Console",
"valueType": "Boolean",
"defaultValue": "true",
"possibleValues": []
}
]
}
}
{
"Code": "ExecutionSettings",
"Data": {
"scope": "Global",
"_configuration": [
{
"key": "TracingLevel",
"displayName": "Logging Level",
"valueType": "MultipleChoice",
"defaultValue": "Information",
"possibleValues": [
"Verbose", "Trace", "Information", "Warning", "Error", "Critical", "Off"
]
},
{
"key": "LoginToConsole",
"displayName": "Login To Console",
"valueType": "Boolean",
"defaultValue": "true",
"possibleValues": []
}
]
}
}
uip or settings timezones
List the timezone IDs recognized by Orchestrator. These are the valid values for Abp.Timing.TimeZone and for --time-zone in uip or calendars.
Opciones
| Corto | Largo | Valor | Predeterminado | Descripción |
|---|---|---|---|---|
-t | --tenant | name | session default | Override the tenant. |
Ejemplos
uip or settings timezones
uip or settings timezones --output-filter 'Data[].value'
uip or settings timezones
uip or settings timezones --output-filter 'Data[].value'
Data shape (--output json)
{
"Code": "TimezoneList",
"Data": [
{ "name": "(UTC) Coordinated Universal Time", "value": "UTC" },
{ "name": "(UTC+02:00) Bucharest", "value": "GTB Standard Time" }
]
}
{
"Code": "TimezoneList",
"Data": [
{ "name": "(UTC) Coordinated Universal Time", "value": "UTC" },
{ "name": "(UTC+02:00) Bucharest", "value": "GTB Standard Time" }
]
}
Related commands
uip or calendars—--time-zonevalues come fromsettings timezones.uip or audit-logs— filter with--component Settingsto see setting changes.
Ver también
- Global options —
--output,--output-filter,--log-level,--log-file. - Exit codes — standard exit-code contract.
- Synopsis
- Verbs
- Common setting keys
- uip or settings list
- Opciones
- Ejemplos
- Data shape (--output json)
- uip or settings get
- Argumentos
- Opciones
- Ejemplos
- Data shape (--output json)
- uip or settings update
- Argumentos
- Opciones
- Ejemplos
- Data shape (--output json)
- uip or settings execution
- Opciones
- Ejemplos
- Data shape (--output json)
- uip or settings timezones
- Opciones
- Ejemplos
- Data shape (--output json)
- Related commands
- Ver también