Recent content by tgundhus

  1. tgundhus

    How to use Left Join in Blue Prism?

    Hi, the best way here is actually to make your own object and write the code yourself. As @ewilson mentions, collections are translated into .NET DataTables, so there are multiple ways to do this, here is one article from stackoverflow...
  2. tgundhus

    Resource is going offline when we logout VM's by using Login Agent

    @Enoch_Foul that is incorrect and not the way to do it. When a user logs out, all applications in that session will be terminated, including automate.exe. How it works is that the login agent will start an instance as soon as you log out, and the listener should kick in. The most common issue...
  3. tgundhus

    regex related query

    From your example above, it I guess you would like it to be (\d+)([\s\S]*?)(\d+) adding "+" to mark that it is multiple digits. However, in regards of your issue, from how I understand your request, you could solve it by adding an optional line break at the beginning? ([\r\n]?\d+)([\s\S]*?)(\d+)...
  4. tgundhus

    Power BI integration with BluePrism

    Hi, I would highly avoid fetching logs directly from the database if you don't have any read only instance who can carry the load. This is a fairly common mistake clients do which results in outages for the RPA systems due to unforeseen load and potential database table locks. If you know how...
  5. tgundhus

    Blue Prism Queue Report Generation Framework

    Some content of the Blue Prism portal requires partner ship or being a direct client. But from what I understand you are looking for a process and object template following coding best practices, is that correct?
  6. tgundhus

    Hi,

    I suggest using the "Levenshtein distance" string metric and convert it into a percentage. Let me know if you need help writing the code, or have any questions.
  7. tgundhus

    Solved Date Time in Now() not the actual time

    It's an issue with this, since now will return UTC and your localtime will probably move according to summer/winter time?
  8. tgundhus

    Unable to connect to the remote server

    This is how the issue was solved: Can you try to enable less secure apps: https://www.google.com/settings/security/lesssecureapps And set allowaccess: https://g.co/allowaccess
  9. tgundhus

    How to Trigger a Process while a mail arrives?

    I'll cut out a chunk of the blue prism part an post it here later :)
  10. tgundhus

    How to Trigger a Process while a mail arrives?

    Hello! Sure thing, I'll look drop you some info later, please let me know if there are any issues or questions.
  11. tgundhus

    How to Trigger a Process while a mail arrives?

    Hello, I created a video in order to guide "siddharth", I'll send you the link in a PM, to avoid BP material being shared here in the open :)
  12. tgundhus

    Screen resolution changes while running bot in unattended mode

    @VJR @neel i. the two scripts are not the same, thats why.. :) ii. seems like we both just use two different ways of getting there. Currently the information of your latest post is correct. It will simple launch the file in it's default program. iii. if you wish do launch it using blue...
  13. tgundhus

    Screen resolution changes while running bot in unattended mode

    Thats because the script you guys are looking at is is "incomplete". It creates the function, but the Set-ScreenResolution function is never triggered. What you can do it to add this on the VERY top of the script param ( [Parameter(Mandatory=$true, Position = 0)] [int] $Width...
  14. tgundhus

    How to Trigger a Process while a mail arrives?

    Yes, if not your automatec will tell you that the current resource does not repond on port 8181, but I suggest you keep Blue Prism running as a resource pc. Anyhow, it is possible to make a more dynamic solution for it, but it all comes down to how your environment is set up. You can also...
  15. tgundhus

    Screen resolution changes while running bot in unattended mode

    You can actually use use start process to start any process, it does not have to be a exe. Blue Prism's "Process start" function, is based on system.diagnostics.process.start Yes, it might be! If you read my post a bit further up. To change screen resolution to 1920x1080 it requires 8MB of...
Top