- Visão geral
- Introdução
- Conceitos
- Usando o UiPath CLI
- Guias de instruções
- Receitas de CI/CD
- Referência de comando
- Visão geral
- Códigos de saída
- Opções globais
- Agente de código uip
- uip coder
- uip context-grounding
- Documento da UIP
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- adicionar-tipo-dados-de-teste
- adicionar-dados-de-teste-fila
- adicionar-teste-variação de dados
- Analisar
- Criar
- criar projeto
- Comparação
- encontrar atividades
- obter-analisador-regras
- obter-padrão-atividade-xaml
- obter-erros
- obter-casos-de-teste-manuais
- obter-etapas-de-teste-manual
- get-library-object-repository
- get-object-repository
- Obter versões
- obter-fluxo-de-trabalho-exemplo
- indicar aplicativo
- indicar elemento
- inspecionar pacote
- instalar-data-fabric-entities
- instalar-ou-atualizar pacotes
- listar-data-fabric-entities
- list-instances
- listar-exemplos-de-fluxo-de-trabalho
- Empacotar
- Publicar
- remote
- restore
- run, debug & execution
- arquivo de execução
- modelos-pesquisar
- Iniciar Studio
- interromper a execução
- tm
- UIA
- uip tasks
- Traces da UIP
- uip traces feedback
- Migração
- Referência e suporte
Syntax and options for `uip solution list`, which lists Studio Web solutions or scans a directory for local ones.
uip solution list is a Preview command — it may change without a MAJOR version bump. See Versioning.
uip solution list has two modes. By default, it lists the Studio Web solutions you own or that are shared with you — the SolutionIds it returns are what uip solution download and uip solution delete take. With --local, it instead scans a directory tree for local solutions (.uipx manifests) and flags stale or ambiguous ones.
Resumo
uip solution list [-l <n>] [--offset <n>] [--name <pattern>] [--sort-by <column>] [--sort-order <Ascending|Descending>]
uip solution list --local [directory] [--check-cloud]
uip solution list [-l <n>] [--offset <n>] [--name <pattern>] [--sort-by <column>] [--sort-order <Ascending|Descending>]
uip solution list --local [directory] [--check-cloud]
Cloud mode (default)
Lists Studio Web solutions. Requires an authenticated session with an organization name resolved.
Opções
| Short | Long | Valor | Padrão | Description |
|---|---|---|---|---|
-l | --limit | number (1–100) | 50 | Maximum solutions to return. |
| — | --offset | Número | 0 | Number of solutions to skip. |
| — | --name | text | — | Server-side keyword filter on solution name. |
| — | --sort-by | column | server default | Column to sort by. |
| — | --sort-order | Ascending | Descending | — | Sort direction. |
| — | --login-validity | minutos | 10 | Minimum minutes before token expiration to trigger a refresh. |
The cloud-only options above are rejected with an error if passed together with --local or --check-cloud.
Exemplos
uip solution list --limit 2
uip solution list --limit 2
Formato dos dados (--output json)
{
"Code": "SolutionsList",
"Data": [
{
"Id": "a1b2c3d4-0000-0000-0000-000000000001",
"Name": "Examples",
"LastModifiedTime": "2025-04-15T10:30:00Z",
"PublishStatus": "draft",
"Projects": []
}
]
}
{
"Code": "SolutionsList",
"Data": [
{
"Id": "a1b2c3d4-0000-0000-0000-000000000001",
"Name": "Examples",
"LastModifiedTime": "2025-04-15T10:30:00Z",
"PublishStatus": "draft",
"Projects": []
}
]
}
Local mode (--local)
Scans a directory tree for local solutions by finding .uipx manifests, instead of calling Studio Web.
Opções
| Long | Valor | Padrão | Description |
|---|---|---|---|
--local [directory] | Path | diretório atual | Scan this directory tree for .uipx manifests. Bare --local scans the current directory. |
--check-cloud | Bandeira | desativada | Also resolve each local solution's SolutionId against Studio Web and report OK / NotFound. Implies --local and requires authentication. |
Exemplos
uip solution list --local ./workspace
uip solution list --local ./workspace --check-cloud
uip solution list --local ./workspace
uip solution list --local ./workspace --check-cloud
Formato dos dados (--output json)
{
"Code": "LocalSolutionsList",
"Data": [
{
"Path": "Examples",
"Name": "Examples",
"UipxFile": "Examples.uipx",
"SolutionId": "a1b2c3d4-0000-0000-0000-000000000001",
"ProjectCount": 2,
"Warnings": []
}
]
}
{
"Code": "LocalSolutionsList",
"Data": [
{
"Path": "Examples",
"Name": "Examples",
"UipxFile": "Examples.uipx",
"SolutionId": "a1b2c3d4-0000-0000-0000-000000000001",
"ProjectCount": 2,
"Warnings": []
}
]
}
With --check-cloud, each row adds a CloudStatus field (OK or NotFound). If the scan couldn't enter some subtree, the response's Instructions field names which ones were skipped — the list may be incomplete in that case.
Códigos de saída
Consulte Códigos de saída para o contrato compartilhado.
Comandos relacionados
uip solution download— download a solution found here byId.
Veja também
- Global options, Exit codes, and Versioning — contracts shared by every verb.