<?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: Runtime Resources with multiple Run time resources in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Runtime-Resources-with-multiple-Run-time-resources/m-p/93364#M42958</link>
    <description>Hi, &lt;BR /&gt;&lt;BR /&gt;You can create simple code action which returns the process you start ID for later usage in attach action (there's an option to attach by process ID):&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Input parameters:&lt;BR /&gt;Process Name (text)&lt;BR /&gt;Arguments (text)&lt;BR /&gt;&lt;BR /&gt;Output:&lt;BR /&gt;Process Id (number)&lt;BR /&gt;&lt;BR /&gt;Code (adjust if you need):&lt;BR /&gt;Dim myProcess As System.Diagnostics.Process&lt;BR /&gt;myProcess = new Process()&lt;BR /&gt;myProcess.StartInfo.FileName = Process_Name&lt;BR /&gt;&lt;BR /&gt;If Arguments&amp;lt;&amp;gt;"" Then&lt;BR /&gt;myProcess.StartInfo.Arguments = Arguments&lt;BR /&gt;End If&lt;BR /&gt;myProcess.Start&lt;BR /&gt;myProcess.WaitForInputIdle()&lt;BR /&gt;Process_Id = myProcess.ID&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;It might require&lt;BR /&gt;System.Diagnostics&lt;BR /&gt;In the namespace imports in initialize page object properties&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mindaugas Breskus&lt;BR /&gt;Software engineer&lt;BR /&gt;Swedbank&lt;BR /&gt;Europe/Vilnius&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Tue, 19 Jan 2021 14:38:00 GMT</pubDate>
    <dc:creator>MindaugasBresku</dc:creator>
    <dc:date>2021-01-19T14:38:00Z</dc:date>
    <item>
      <title>Runtime Resources with multiple Run time resources</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Runtime-Resources-with-multiple-Run-time-resources/m-p/93362#M42956</link>
      <description>&lt;P&gt;Hi, I was&amp;nbsp; reading the&amp;nbsp; infrastructure reference guide&amp;nbsp; version 6.3.&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;One of the section "Runtime Resources with multiple Runtime Resources" it was mentioned:&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;"Each process that runs simultaneously on a single Runtime Resource must be able to successfully identify the application&lt;/P&gt;
&lt;P&gt;(s) that were launched for its use. (E.g. if there are 5 processes each using Internet Explorer, each process must be able to&lt;/P&gt;
&lt;P&gt;successfully identify which is the appropriate one to use)."&lt;BR /&gt;&lt;BR /&gt;I know we can identify the Process id&amp;nbsp; or child index in Launch action but does it work if we use global send keys ?&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Harish&lt;BR /&gt;RPA Developer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Jan 2021 21:25:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Runtime-Resources-with-multiple-Run-time-resources/m-p/93362#M42956</guid>
      <dc:creator>HarishM2</dc:creator>
      <dc:date>2021-01-18T21:25:00Z</dc:date>
    </item>
    <item>
      <title>RE: Runtime Resources with multiple Run time resources</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Runtime-Resources-with-multiple-Run-time-resources/m-p/93363#M42957</link>
      <description>I think you'd have to make sure the target window was in focus for GSK to work, otherwise the keys could hit the wrong window. Think of GSK as typing on the keyboard with your eyes shut - if the cursor is in the right place it will work, but if the cursor is elsewhere, your typing will go astray.&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, 19 Jan 2021 10:45:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Runtime-Resources-with-multiple-Run-time-resources/m-p/93363#M42957</guid>
      <dc:creator>John__Carter</dc:creator>
      <dc:date>2021-01-19T10:45:00Z</dc:date>
    </item>
    <item>
      <title>RE: Runtime Resources with multiple Run time resources</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Runtime-Resources-with-multiple-Run-time-resources/m-p/93364#M42958</link>
      <description>Hi, &lt;BR /&gt;&lt;BR /&gt;You can create simple code action which returns the process you start ID for later usage in attach action (there's an option to attach by process ID):&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Input parameters:&lt;BR /&gt;Process Name (text)&lt;BR /&gt;Arguments (text)&lt;BR /&gt;&lt;BR /&gt;Output:&lt;BR /&gt;Process Id (number)&lt;BR /&gt;&lt;BR /&gt;Code (adjust if you need):&lt;BR /&gt;Dim myProcess As System.Diagnostics.Process&lt;BR /&gt;myProcess = new Process()&lt;BR /&gt;myProcess.StartInfo.FileName = Process_Name&lt;BR /&gt;&lt;BR /&gt;If Arguments&amp;lt;&amp;gt;"" Then&lt;BR /&gt;myProcess.StartInfo.Arguments = Arguments&lt;BR /&gt;End If&lt;BR /&gt;myProcess.Start&lt;BR /&gt;myProcess.WaitForInputIdle()&lt;BR /&gt;Process_Id = myProcess.ID&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;It might require&lt;BR /&gt;System.Diagnostics&lt;BR /&gt;In the namespace imports in initialize page object properties&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mindaugas Breskus&lt;BR /&gt;Software engineer&lt;BR /&gt;Swedbank&lt;BR /&gt;Europe/Vilnius&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 19 Jan 2021 14:38:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Runtime-Resources-with-multiple-Run-time-resources/m-p/93364#M42958</guid>
      <dc:creator>MindaugasBresku</dc:creator>
      <dc:date>2021-01-19T14:38:00Z</dc:date>
    </item>
  </channel>
</rss>

