- 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 rpa list-instances` (alias uip rpa instances list), which lists running UiPath Studio instances and their status.
uip rpa list-instances lists running UiPath Studio instances and reports each one's status. Also reachable as uip rpa instances list — both names invoke the same command; instances list is the canonical, visible form per the current CLI naming convention, and list-instances is kept as a hidden top-level alias for compatibility.
Synopsis
uip rpa list-instances
uip rpa instances list
uip rpa list-instances
uip rpa instances list
No options on either form.
Example
uip rpa list-instances
uip rpa list-instances
Data shape (--output json)
{
"Code": "InstanceList",
"Data": [
{ "ProcessId": 12345, "ProjectDirectory": "/work/MyProject", "ExecutionStatus": "Idle" }
]
}
{
"Code": "InstanceList",
"Data": [
{ "ProcessId": 12345, "ProjectDirectory": "/work/MyProject", "ExecutionStatus": "Idle" }
]
}
ProjectDirectory is "(none)" when the instance has no project open. ExecutionStatus is "(unknown)" when it couldn't be read. An Error field is added per-item when that instance's status read itself failed. When no instances are running, the command prints a plain No running Studio instances found. message instead of an empty Data array.