uipath-cli
latest
false
- Overview
- Get started
- Concepts
- Using UiPath CLI
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- uip codedagent
- uip docsai
- 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-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
- Migration
- Reference & support
UiPath CLI user guide
Last updated May 7, 2026
uip vss sync fetches the organization's processes from UiPath Cloud and reconciles them with the current solution's vss.json. Updated names are written back, and processes that no longer exist in the cloud are removed from the config. Run it whenever process names or membership change in Orchestrator and your local vss.json needs to catch up.
Synopsis
uip vss sync
uip vss sync
Options
sync takes no options beyond --help. It reads vss.json from the current working directory and uses the uip login session to reach UiPath Cloud.
Examples
# Reconcile vss.json from the project root
uip vss sync
# Just confirm the path that was rewritten
uip vss sync --output-filter 'Data.Path'
# Reconcile vss.json from the project root
uip vss sync
# Just confirm the path that was rewritten
uip vss sync --output-filter 'Data.Path'
Data shape (--output json)
{
"Code": "VerticalSolutionSynced",
"Data": {
"Status": "Synced successfully",
"Path": "/Users/alice/my-app/vss.json"
}
}
{
"Code": "VerticalSolutionSynced",
"Data": {
"Status": "Synced successfully",
"Path": "/Users/alice/my-app/vss.json"
}
}
Related
- uip vss add — register processes locally;
synclater picks up cloud renames. - uip vss init / scaffold — produce the
vss.jsonthatsyncrewrites. uip login— credentials used to reach UiPath Cloud.