- 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 stop-execution`, which halts the workflow execution currently running under Studio.
uip rpa stop-execution stops the workflow execution currently running under Studio — the one started by uip rpa run-file. Use it when a run is hanging, taking longer than expected, or producing wrong output and you need to halt it from a script.
It is the standalone equivalent of uip rpa run-file --command Stop, packaged as its own verb so callers that did not start the run themselves do not need to know the original --file-path. Studio drives the stop, so the verb requires a Windows runner.
stop-execution is now a hidden legacy alias. Current source registers the same operation as the visible uip rpa execution cancel — works for both a plain run and a debug session — so new scripts should prefer that form; this page's examples still work via the hidden alias.
Synopsis
uip rpa stop-execution [options]
uip rpa stop-execution [options]
Options
This verb takes no per-command options. Use the parent-level options shared by every uip rpa verb — see RPA tool overview.
For the complete option list on your installed tool version, run:
uip rpa stop-execution --help
uip rpa stop-execution --help
Examples
# Halt whatever run is currently active
uip rpa stop-execution
# Verbose stop, useful when diagnosing why a graceful stop hangs
uip rpa stop-execution --log-level debug
# Halt whatever run is currently active
uip rpa stop-execution
# Verbose stop, useful when diagnosing why a graceful stop hangs
uip rpa stop-execution --log-level debug
Related
uip rpa run-file— start, pause, step, or stop a run; this verb covers the stop case as a standalone command.