uipath-cli
latest
false
- 概述
- 开始使用
- 概念
- Using UiPath CLI
- 操作指南
- CI/CD recipes
- 命令参考
- 概述
- 退出代码
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- 创建项目
- 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
- 迁移
- Reference & support
UiPath CLI user guide
上次更新日期 2026年5月7日
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
选项
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.
示例
# 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.