<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic RE: Running process on a bot from another bot in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89726#M40071</link>
    <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="bf6edb31-c42f-4040-9e4b-d47f91046c5a" data-tag-text="@John Carter" href="https://community.blueprism.com/network/profile?UserKey=bf6edb31-c42f-4040-9e4b-d47f91046c5a" data-itemmentionkey="624e14ea-fe3a-4d76-a462-664f027c1517"&gt;@John Carter&lt;/A&gt; ​- kindly suggest if it will be possible for blue prism team to release a standard reusable business object that takes process, start up parameters and machine name as input and execute the process if resource is not busy and if busy may be throw appropriate exception. This might be quite useful to lot of users.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Sat, 06 Jun 2020 07:27:00 GMT</pubDate>
    <dc:creator>MayankGoyal2</dc:creator>
    <dc:date>2020-06-06T07:27:00Z</dc:date>
    <item>
      <title>Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89718#M40063</link>
      <description>Hi,&lt;BR /&gt;I have to call a process on a certain bot from a different process on a different bot. the aim is to have a central bot that is running a process and calling process on different bots.&lt;BR /&gt;Is there something available in blue prism to achieve this, also how will the central bot check if other bot is busy running something and in that case pass request to a different available bot.If all bots are busy, queue the request and as soon as next bot is free, it picks up the request.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 13 May 2020 15:35:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89718#M40063</guid>
      <dc:creator>MayankGoyal2</dc:creator>
      <dc:date>2020-05-13T15:35:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89719#M40064</link>
      <description>You can do it but it can be difficult. Essentially the first process employs the command line to run a process on the other machine. If the first process retains the session ID output of the run command, it can enquire about the status of the session. If the target resource is busy or offline, the run command will return an error. Alternatively, the first process can check the machine status prior to trying to run the process, but that requires 2 calls.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://portal.blueprism.com/documents/guide-dynamic-process-execution" target="test_blank"&gt;https://portal.blueprism.com/documents/guide-dynamic-process-execution&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://portal.blueprism.com/documents/blue-prism-dynamic-scheduler-examples" target="test_blank"&gt;https://portal.blueprism.com/documents/blue-prism-dynamic-scheduler-examples&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Carter&lt;BR /&gt;Professional Services&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 13 May 2020 17:11:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89719#M40064</guid>
      <dc:creator>John__Carter</dc:creator>
      <dc:date>2020-05-13T17:11:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89720#M40065</link>
      <description>If you go with AutomateC.exe, make sure the connection you use for the command-line call does not use the same callback-port as the listener on the "master "bot.&lt;BR /&gt;&lt;BR /&gt;If you haven't specified any callback port (set to 0) you don't have to worry &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Espen&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 14 May 2020 10:05:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89720#M40065</guid>
      <dc:creator>Espen</dc:creator>
      <dc:date>2020-05-14T10:05:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89721#M40066</link>
      <description>@&lt;A id="MainCopy_ctl08_ucMessageList_rptMessageList_ProfileImageDisplay_1_NameLink_1" biobubblekey="bf6edb31-c42f-4040-9e4b-d47f91046c5a" href="https://community.blueprism.com/network/profile?UserKey=bf6edb31-c42f-4040-9e4b-d47f91046c5a" target="_blank" rel="noopener"&gt;John Carter&lt;/A&gt;&amp;nbsp;- Thanks a lot for your response, is there any link that shows direct implementation of using commands to run process. Also this will work only on a machine that has blue prism installed?&lt;BR /&gt;Can this be created as a shell script? Within my shell script i want to first check if a system is busy and if not then invoke a process on it.&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/242"&gt;@Espen&lt;/a&gt; - Kindly provide some more details or example, i wasn't able to understand it. If I create a bat file with ​commands, where exactly and how callback port comes in play?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sat, 23 May 2020 23:55:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89721#M40066</guid>
      <dc:creator>MayankGoyal2</dc:creator>
      <dc:date>2020-05-23T23:55:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89722#M40067</link>
      <description>If you have the DB-connection set to a specific callback port on the master bot, the port will be busy.&lt;BR /&gt;&lt;BR /&gt;Eg. DB Connection "Con1" is set to callback port 1234.&lt;BR /&gt;&lt;BR /&gt;When starting a process from AutomateC you have to pass an argument for DB-Connection.&lt;BR /&gt;Assuming the listener is running, you can not use "Con1" as argument for AutomateC when starting the process from the bot. Either set the callback port to 0 or set up a second connection.&lt;BR /&gt;&lt;BR /&gt;I don't know how you guys have your set up, but in our environment we faced this issue.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Espen&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 26 May 2020 08:41:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89722#M40067</guid>
      <dc:creator>Espen</dc:creator>
      <dc:date>2020-05-26T08:41:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89723#M40068</link>
      <description>Try the Help, search for 'command line'. or look at the examples I linked you to. The command line API can be scripted and requires BP to be installed. There's also a HTTP API providing similar functionality to a 3rd party.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Carter&lt;BR /&gt;Professional Services&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 26 May 2020 08:48:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89723#M40068</guid>
      <dc:creator>John__Carter</dc:creator>
      <dc:date>2020-05-26T08:48:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89724#M40069</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="bf6edb31-c42f-4040-9e4b-d47f91046c5a" data-tag-text="@John Carter" href="https://community.blueprism.com/network/profile?UserKey=bf6edb31-c42f-4040-9e4b-d47f91046c5a" data-itemmentionkey="1a761272-ded0-423f-8152-d9ad56d22aa0"&gt;@John Carter&lt;/A&gt; ​- Thanks a lot for your response. Kindly suggest if HTTP API you are referring to is concept of running blue prism process as a web service?&lt;BR /&gt;With command line, if I have a script can I run it from a external application?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 28 May 2020 04:18:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89724#M40069</guid>
      <dc:creator>MayankGoyal2</dc:creator>
      <dc:date>2020-05-28T04:18:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89725#M40070</link>
      <description>Search the Help, in there you'll see the API is not the same as exposing a process as a WS.&lt;BR /&gt;&lt;BR /&gt;And yes the command line is intended to be run from a 3rd party.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Carter&lt;BR /&gt;Professional Services&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 28 May 2020 08:02:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89725#M40070</guid>
      <dc:creator>John__Carter</dc:creator>
      <dc:date>2020-05-28T08:02:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89726#M40071</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="bf6edb31-c42f-4040-9e4b-d47f91046c5a" data-tag-text="@John Carter" href="https://community.blueprism.com/network/profile?UserKey=bf6edb31-c42f-4040-9e4b-d47f91046c5a" data-itemmentionkey="624e14ea-fe3a-4d76-a462-664f027c1517"&gt;@John Carter&lt;/A&gt; ​- kindly suggest if it will be possible for blue prism team to release a standard reusable business object that takes process, start up parameters and machine name as input and execute the process if resource is not busy and if busy may be throw appropriate exception. This might be quite useful to lot of users.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sat, 06 Jun 2020 07:27:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89726#M40071</guid>
      <dc:creator>MayankGoyal2</dc:creator>
      <dc:date>2020-06-06T07:27:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89727#M40072</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="bf6edb31-c42f-4040-9e4b-d47f91046c5a" data-tag-text="@John Carter" href="https://community.blueprism.com/network/profile?UserKey=bf6edb31-c42f-4040-9e4b-d47f91046c5a" data-itemmentionkey="f9c61fa7-13d4-4c3a-8c37-6703bae1ad56"&gt;@John Carter&lt;/A&gt; ​- Hi John, I tried some steps taking help from dynamic process execution guide and examples. It was quite helpful and gave me lots of information.&lt;BR /&gt;1) using&amp;nbsp;command automatec /run "Process Name" /user "id" "Pass" /resource "machine name" - I was able run a process and get session ID&lt;BR /&gt;2) using command&amp;nbsp;automatec /status "session ID" /user "id" "Pass" - I was able to get status of session ID&lt;BR /&gt;&lt;BR /&gt;Few Questions that I still have are -&amp;nbsp;&lt;BR /&gt;1) What is the use of DBname and port, i didn't used it anywhere in my command. Is it used when there are more than 1 DB connections and i want to run process from DB on a resource which is not set as default DB?&lt;BR /&gt;2) Before running actual process, I want to check if my resource PC is up (online) and not busy running another process, what command should I use to achieve this and what all will I have to pass to that command - machine name, credentials?&lt;BR /&gt;3) If my resource PC is offline on that remote machine, is it possible to first start resource PC on different machine like we do it on local machine as -&amp;nbsp;Automate.exe /resourcepc /public&lt;BR /&gt;4) When working with login agent and scheduler, we run the login process of login agent before running the main process and run logout process after main process, so which AutomateC as well we will have to design same chain of process?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 08 Jun 2020 02:13:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89727#M40072</guid>
      <dc:creator>MayankGoyal2</dc:creator>
      <dc:date>2020-06-08T02:13:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89728#M40073</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="bf6edb31-c42f-4040-9e4b-d47f91046c5a" data-tag-text="@John Carter" href="https://community.blueprism.com/network/profile?UserKey=bf6edb31-c42f-4040-9e4b-d47f91046c5a" data-itemmentionkey="b50bcee7-7111-49c0-b4bc-ec6fe0b25d56"&gt;@John Carter&lt;/A&gt; ​, &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33683"&gt;@AmiBarrett&lt;/a&gt;​&amp;nbsp; - Kindly suggest if there is a command available with automatec which we can use on CMD to check if a blue prism VM resource PC is online and not busy and if offline, we can bring it online? I tried looking for such command but was not able to find in help documents.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Jun 2020 16:56:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89728#M40073</guid>
      <dc:creator>MayankGoyal2</dc:creator>
      <dc:date>2020-06-10T16:56:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89729#M40074</link>
      <description>That depends on what you mean by online. Do you mean that Automate.exe is running, or that Windows is up and running? If you mean Automate, you can use the /resourcestatus option with automatec.&lt;BR /&gt;&lt;BR /&gt;You can also (technically) kill two birds with one stone, by using tasklist /s systemName /u domain\user /p password /FI automate.exe&amp;nbsp; .&lt;BR /&gt;&lt;BR /&gt;Edit: Forgot this bit -&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;As for starting a process remotely, the easiest way is to grab &lt;A href="https://docs.microsoft.com/en-us/sysinternals/downloads/psexec" target="_blank" rel="noopener"&gt;PSExec&lt;/A&gt; and invoke that. Alternatively, there are &lt;A href="https://www.business.com/articles/powershell-remotely-invoke-applications/" target="_blank" rel="noopener"&gt;powershell options&lt;/A&gt; you can use.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ami Barrett&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Plano, TX&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Jun 2020 17:04:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89729#M40074</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-06-10T17:04:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89730#M40075</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33683"&gt;@AmiBarrett&lt;/a&gt; ​- Thanks a lot for your response, yes by online I mean automate.exe resource PC is up and running so that blue prism process can be executed on it. What i understand is you have suggested to run automatec /resourcestatus for last 1 minute and that will suggest if there is any ongoing session on it in progress to check if machine is busy. Resource status returns back response even if automate.exe resource PC is offline, just tried it.&lt;BR /&gt;&lt;BR /&gt;To check if resource PC is online - you have suggested to use "&lt;SPAN&gt;tasklist /s systemName /u domain\user /p password /FI automate.exe" as there is no native command for the same&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;To start resource PC if offline, you have suggested to use PSExec and run "Automate.exe /resourcepc /public"&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Jun 2020 17:48:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89730#M40075</guid>
      <dc:creator>MayankGoyal2</dc:creator>
      <dc:date>2020-06-10T17:48:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89731#M40076</link>
      <description>Calling automatec should only tell the instance local to that system to query the db for information on another remote system. I would be more concerned if there was not a response for an offline resource.&lt;BR /&gt;&lt;BR /&gt;To be clear, the tasklist approach is a method to simultaneously verify if automate.exe is up, and if the VM is online. If you only need to verify the latter, you can also just use a ping.&lt;BR /&gt;&lt;BR /&gt;The PSExec command should start Automate.exe, provided the VM is online and has a logged in session.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ami Barrett&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Plano, TX&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Jun 2020 17:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89731#M40076</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-06-10T17:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89732#M40077</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33683"&gt;@AmiBarrett&lt;/a&gt; - Thanks a lot for all your inputs, this gives lots of insight how backend things work. Just one last ques, when our VM is on login agent, i l believe automate.exe will be up and running, so we will use login process of login agent to login a machine on required ID / password, once completed then run main process on that machine. Currently this is how we run login and main process from scheduler today, only difference will be now it will run with CMD.&lt;BR /&gt;&amp;nbsp;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Jun 2020 18:53:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89732#M40077</guid>
      <dc:creator>MayankGoyal2</dc:creator>
      <dc:date>2020-06-10T18:53:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89733#M40078</link>
      <description>That sounds correct, yes. Just bear in mind that it's going to shutdown Automate.exe and restart it again under a different session - it will briefly be inaccessible.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ami Barrett&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Plano, TX&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Jun 2020 18:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89733#M40078</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-06-10T18:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89734#M40079</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33683"&gt;@AmiBarrett&lt;/a&gt; ​- This is why when running with scheduler as well, we have kept a gap of 2-3 minutes after login process is completed and before we run the main process. We will do the same with CMD as well.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Jun 2020 19:04:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89734#M40079</guid>
      <dc:creator>MayankGoyal2</dc:creator>
      <dc:date>2020-06-10T19:04:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89735#M40080</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33683"&gt;@AmiBarrett&lt;/a&gt; - Just a quick question on same post, it seems 'automatec resourcestatus' command is not available in BP 6.4. Is there alternate command with which we can check the status of resource PC is busy or not on a machine. The intent is to check if there is a process already running on machine resource PC before invoking a process with &lt;SPAN&gt;automatec /run.&lt;/SPAN&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sat, 27 Jun 2020 06:46:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89735#M40080</guid>
      <dc:creator>MayankGoyal2</dc:creator>
      <dc:date>2020-06-27T06:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89736#M40081</link>
      <description>&lt;P&gt;&lt;A class="user-content-mention" data-sign="@" data-contactkey="e236af74-2e8c-4ea2-b127-7ef0a242fef4" data-tag-text="@Mayank Goyal" href="https://community.blueprism.com/network/profile?UserKey=e236af74-2e8c-4ea2-b127-7ef0a242fef4" data-itemmentionkey="23570b44-3c1d-4d7a-a2b5-408e17b0a3c2"&gt;@Mayank Goyal&lt;/A&gt; you can query resource PC's directly through their HTTP interface. You can find out more about this interface from the Blue Prism&amp;nbsp;&lt;A href="https://bpdocs.blueprism.com/bp-6-8/en-us/helpHTTPInterface.htm?Highlight=HTTP" target="_blank" rel="noopener" style="-webkit-text-size-adjust: 100%;"&gt;Online Help&lt;/A&gt;&lt;SPAN style="-webkit-text-size-adjust: 100%;"&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Partner Integrations for Digital Exchange&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sun, 28 Jun 2020 13:06:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89736#M40081</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2020-06-28T13:06:00Z</dc:date>
    </item>
    <item>
      <title>RE: Running process on a bot from another bot</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89737#M40082</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt; - Thanks a lot for your response.&amp;nbsp;&lt;SPAN&gt;I went through entire documentation and was able to get good understanding. kindly suggest if environment is on SSO,&amp;nbsp;&lt;SPAN style="background-color: #ffff00;"&gt;&amp;nbsp;​&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="background-color: #ffff00;"&gt;&lt;A href="http://localhost:8181/user" target="_blank" rel="noopener"&gt;http://&lt;STRONG&gt;machinename&lt;/STRONG&gt;:8181/user&lt;/A&gt;%20name&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="background-color: #ffff00;"&gt;%20&lt;STRONG&gt;admin&lt;/STRONG&gt;&amp;amp;password%20&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN style="background-color: #ffff00;"&gt;MyPassword&lt;/SPAN&gt;,&amp;nbsp;&lt;/STRONG&gt;what value should I provide for user name and password in that case. I have a central machine from which I want to check the status of a resource PC on different machines on environment with -&amp;nbsp;&lt;SPAN style="background-color: #ffff00;"&gt;&lt;A href="http://localhost:8181/user" target="_blank" rel="noopener"&gt;http://&lt;STRONG&gt;machinename&lt;/STRONG&gt;:8181/user&lt;/A&gt;%20name%20&lt;STRONG&gt;admin&lt;/STRONG&gt;&amp;amp;password%20&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN style="background-color: #ffff00;"&gt;MyPassword&amp;amp;status.&lt;/SPAN&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&amp;nbsp;​&lt;BR /&gt;&lt;BR /&gt;The documentation just refers to localhost with user and password, it has no reference on remote machine with machinename and SSO.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sun, 28 Jun 2020 21:33:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Running-process-on-a-bot-from-another-bot/m-p/89737#M40082</guid>
      <dc:creator>MayankGoyal2</dc:creator>
      <dc:date>2020-06-28T21:33:00Z</dc:date>
    </item>
  </channel>
</rss>

