uipath-cli
latest
false
- Überblick
- Erste Schritte
- Konzepte
- Using UiPath CLI
- Anleitungen
- CI/CD recipes
- Befehlsreferenz
- Überblick
- Exitcodes
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- Ein Projekt erstellen
- 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
Letzte Aktualisierung 7. Mai 2026
uip vss add registers a process (or, eventually, a connection) in the current vertical solution. It rewrites vss.json to include the new entry. The optional positional [path] selects which project directory to add; it defaults to the current working directory.
Synopsis
uip vss add <type> [path]
uip vss add <type> [path]
<type>—processorconnection.[path]— Project directory. Defaults to the current directory.
Optionen
add takes no options beyond --help.
Beispiele
# Add a process from the current directory
uip vss add process
# Add a process from an explicit path
uip vss add process ./processes/onboarding
# Add a process from the current directory
uip vss add process
# Add a process from an explicit path
uip vss add process ./processes/onboarding
Data shape (--output json)
{
"Code": "ProcessesAdded",
"Data": {
"Status": "1 processes added successfully",
"Path": "/Users/alice/my-app"
}
}
{
"Code": "ProcessesAdded",
"Data": {
"Status": "1 processes added successfully",
"Path": "/Users/alice/my-app"
}
}
Hinweis:
connection is not yet implemented. Running uip vss add connection fails with Failure: "Connections are not supported yet". Use process for now.
Related
- uip vss init / scaffold — produce the
vss.jsonthataddrewrites. - uip vss sync — reconcile the registered processes with UiPath Cloud.
- uip vss generate — refresh TypeScript types after adding processes.