uipath-cli
latest
false
UiPath CLI user guide
- Overview
- Get started
- Concepts
- Using UiPath CLI
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- uip codedagent
- uip coder
- uip context-grounding
- uip docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- create-project
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-library-object-repository
- get-object-repository
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- pack
- publish
- remote
- restore
- run, debug & execution
- run-file
- search-templates
- start-studio
- stop-execution
- tm
- uia
- uip tasks
- uip traces
- uip traces feedback
- Migration
- Reference & support
Syntax and options for `uip solution download`, which downloads and extracts a Studio Web solution.
uip solution download downloads (exports) a solution from Studio Web as a .uis archive. Pass --extract to also unpack it into a directory.
Synopsis
uip solution download <solution-id> [-d <destination>] [-n <name>] [--extract]
uip solution download <solution-id> [-d <destination>] [-n <name>] [--extract]
Arguments
| Name | Required | Purpose |
|---|---|---|
<solution-id> | yes | Studio Web solution UUID. Find it with uip solution list. |
Options
| Short | Long | Value | Default | Description |
|---|---|---|---|---|
-d | --destination | dir | current dir | Destination directory for the downloaded file. |
-n | --name | text | the solution ID | Output filename, without extension. Existing files are overwritten; --extract uses this name for the extracted directory too. Must be a plain filename — no path separators or ... |
| — | --extract | flag | off | Extract the downloaded .uis archive into a directory, and write AGENTS.md / CLAUDE.md briefing files there if the archive didn't already carry them. |
Examples
uip solution download a1b2c3d4-0000-0000-0000-000000000001 \
--destination ./downloads --extract
uip solution download a1b2c3d4-0000-0000-0000-000000000001 \
--destination ./downloads --extract
Data shape (--output json)
{
"Code": "SolutionDownload",
"Data": {
"Status": "Solution exported successfully",
"SolutionId": "a1b2c3d4-0000-0000-0000-000000000001",
"Output": "./downloads/a1b2c3d4-0000-0000-0000-000000000001.uis",
"ExtractedTo": "./downloads/a1b2c3d4-0000-0000-0000-000000000001",
"BriefingFiles": [
"./downloads/a1b2c3d4-0000-0000-0000-000000000001/AGENTS.md",
"./downloads/a1b2c3d4-0000-0000-0000-000000000001/CLAUDE.md"
]
}
}
{
"Code": "SolutionDownload",
"Data": {
"Status": "Solution exported successfully",
"SolutionId": "a1b2c3d4-0000-0000-0000-000000000001",
"Output": "./downloads/a1b2c3d4-0000-0000-0000-000000000001.uis",
"ExtractedTo": "./downloads/a1b2c3d4-0000-0000-0000-000000000001",
"BriefingFiles": [
"./downloads/a1b2c3d4-0000-0000-0000-000000000001/AGENTS.md",
"./downloads/a1b2c3d4-0000-0000-0000-000000000001/CLAUDE.md"
]
}
}
ExtractedTo and BriefingFiles are only present when --extract is passed. BriefingFiles lists only the files this command wrote — if the archive already had AGENTS.md/CLAUDE.md, the field is omitted.
Exit codes
See Exit codes for the shared contract.
Related commands
uip solution list— find a solution's ID.uip solution delete— delete a Studio Web solution by ID.
See also
- Global options and Exit codes — contracts shared by every verb.