I am trying to build a command line for installing Studio and Assistance which is directly connected to orchestrator Automation Suite by default so that the user just needs to login for connection. I tried below code, But it is not working
Windows Installer installed the product. Product Name: UiPath Studio. Product Version: 23.10.6.0. Product Language : 1033 Installation Success or Error Status as 1603.
but the software is not getting installed even though it is showing as above
I got the solution. Details are as provided below for any future reference
Open CMD as administrator
Navigate to the folder where msi file is downloaded using the command CD “Path of the masi file”
For uninstalling the studio - use below command
msiexec /x “UiPathStudio.msi” /quiet
For installing the studio - use below command.
msiexec /i UiPathStudio.msi /qn ADDLOCAL=DesktopFeature,Studio,Robot,ExcelAddin,JavaScriptAddOn,EdgeExtension,Packages ENABLE_PIP=1 NUGET_OPTIONS=DisableOnlineFeeds ORCHESTRATOR_URL=https://uipath-dev..com/D/C*/orchestrator_/?tid=9 ORCHESTRATOR_AUTO_SIGNIN=1 EDGE_INSTALL_TYPE=POLICYOFFLINE TELEMETRY_ENABLED=0
Both are working fine
For more details on the available parameters - kindly refer below link