Questions tagged [uipath]

UiPath produces RPA tools to automate manual and repetitive back office tasks. This tag is for questions about the UiPath activities, its custom components and building workflows within it. Questions regarding .NET specific programming should be asked with their respective tags. Other robot process automation ([tag:rpa]) software specific question and RPA questions in general should be asked within their respective tags as well.

Official site:

https://www.uipath.com/

Documentation:

Training:

UiPath Academy

766 questions
3
votes
1 answer

Robotic Process Automation tags creation on stackoverflow

I am posting this question to create RPA - Robotic Process Automation tags like blueprism, automationnanywhere, roboticprocessautomation, rpa and workfusion. Once all tags are in place then this will help organizing all the questions at one place.…
SK.
  • 4,174
  • 4
  • 30
  • 48
3
votes
1 answer

How Do I Make UiPath Custom Activities Look Good?

Background I'm creating a set of custom activities that perform simple actions that aren't found in UiPath's core activity set. I'm planning on extending these activities to include some of my own image processing and Machine Learning…
Jean Louw
  • 126
  • 8
3
votes
1 answer

How to add an element to queue in UiPath studio?

While exploring the Automation tool UiPath Studio, I tried to add an element to queue. But while executing, it was showing up some error like this: 'Queues service url is not defined. Make sure the robot is connected to UiPath server'. I searched…
Gouthami
  • 31
  • 4
3
votes
1 answer

activate UIPath licence trial

I'me newer in UIPath, I just finish to install it and l would like to start trial. l use the manual activation because automatic activation is blocked by the proxy. However l always have this error when l try to activate it. enter image description…
Syllaba Abou Ndiaye
  • 213
  • 1
  • 7
  • 21
2
votes
1 answer

Regex Ignore text in square brackets

I need help in creating this regex for replacing the text Heres the sample input: [loves] My dog loves dog food Heres the sample output i am expecting: [loves] My dog hates dog food…
2
votes
1 answer

Why does my string containing "é" character gets outputed as "Ú"?

Here's the situation : I have an UiPath process containing an Invoke Power Shell activity In the Invoke Power Shell activity (set as IsScript), here's my script python '/path/to/my/script.py'. The ouput is saved as string When I run my "script.py"…
2
votes
1 answer

Is there any way that I can get Google access tokens only using API?

I am building an RPA process to integrate with Google AI Document and one of the challenges I've encountered is getting the access token and using it during the API call. Most of the time I'm just using powershell by running gcloud auth…
Mirai
  • 55
  • 3
2
votes
1 answer

UiPath Apps deployment and migration to another tenant

Our platform is UiPath Cloud Orchestrator with DEV/Test/Prod tenants. The Robots are hosted on Azure Windows instances for DEV / Test / Prod. I created an UiPath App to upload an Excel file, store it in a storage bucket, then start a unattended…
VC1
  • 1,660
  • 4
  • 25
  • 42
2
votes
1 answer

You are not authenticated! Error code: 0 exception occurred only for UiPath background process

I started a development using the UiPath template called ‘Background Process’ and currently I’m facing an issue when reading orchestrator assets. It throws the error ‘You are not authenticated! Error code: 0’. But when I tried out UiPath…
2
votes
1 answer

How to replace text without losing other formatting below it

I need to delete all text in html of body letter before one word from set of values ("Уважаемый", "Уважаемая", "Уважаемые"). I try to do like this: LetterBody.Replace(Regex.Split(LetterBody, "(?=Уважаемый)|(?=Уважаемая)|(?=Уважаемые)")(0), "") but…
V. Dedovec
  • 21
  • 2
2
votes
0 answers

How can I fix “this command is not available” error message?

I’m taking the “Word Automation with StudioX” course on UiPath. I downloaded the solution of the practice exercise but when I run it I see this screen How can I fix this error?
floyd
  • 1,431
  • 2
  • 12
  • 18
2
votes
2 answers

How to clear chrome browser history in uipath?

Tried using in this way but not working
2
votes
1 answer

In UiPath, using Invoke code activity I am trying to get files in a folder which are updated or modified in last 24hrs

These are the codes that I have tried Dim myDirectory As new.IO.DirectoryInfo("C:\MyFolder") Dim myFiles() As String = myDirectory.GetFiles.OrderByDescending(Function(x) x.LastWriteTime).Select(Function(x)…
mouny
  • 45
  • 1
  • 7
2
votes
1 answer

UiPath - VB Net - Excel - Unlock Specific Column

I am trying to Unlock a Specific Column Range (Column I & J) by using an Invoke Code and I am also running other functions in this same block, like Hiding a specific Column etc. I am able to Unlock all the Columns using "excelWS.Columns.Locked =…
craig157
  • 355
  • 1
  • 3
  • 18
2
votes
2 answers

Regex positive lookbehind after digits

Trying to get the all characters until new line after one/more digits with positive lookbehind from below text with this (?<=below customer.\s.*\n.* )(.*) I order standardinstalation to below customer. Paul Rilley Abbeyroad 55 It works (gives 55)…
HenkkaHH
  • 21
  • 1
1 2
3
50 51