<?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: If you absolutely have to… in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81603#M33159</link>
    <description>The script is meant as a shotgun-blast approach. Even if it hits the correct session number, it will still continue through. 20 was an extreme case that I've seen useful in exactly one deployment. Pretty much every other time only required the first one or two sessions before it had a successful flip.&lt;BR /&gt;&lt;BR /&gt;I was messing around with the VB solution, and was not able to get it to hide the child windows as-is. I found a way to make it hide the child windows in powershell, but it won't hide the main window.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;This got me poking around it some more. When I had first built this bat file against some Server 2012r2 VMs, there was a technical need to spawn each tsdiscon in a new window. Seems something's changed along the way, so you can remove the "start """ from each line and contain it into a single window. So yay, no more child windows to mess with. I was then able to fix the VBS file to get the desired effect.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;PowerShell:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;
&lt;PRE class="language-csharp"&gt;PowerShell&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;exe &lt;SPAN class="token operator"&gt;-&lt;/SPAN&gt;windowstyle hidden &lt;SPAN class="token punctuation"&gt;{&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"-command unlockMe.bat"&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;}&lt;/SPAN&gt;​&lt;/PRE&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;VB:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;1) Create file: unlockme.vbs (or whatever you want to call it), and modify the path to the bat file:&lt;/P&gt;
&lt;PRE class="language-csharp"&gt;&lt;SPAN class="token function"&gt;CreateObject&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"Wscript.Shell"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;Run &lt;SPAN class="token string"&gt;"c:\tools\unlockme.bat"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;False&lt;/PRE&gt;
&lt;P&gt;2) Modify unlockme.bat&lt;/P&gt;
&lt;PRE class="language-csharp"&gt;@ECHO off

setlocal EnableDelayedExpansion

&lt;SPAN class="token keyword"&gt;for&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;f &lt;SPAN class="token string"&gt;"tokens=2,4"&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;a &lt;SPAN class="token keyword"&gt;in&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'QUERY USER ^| FINDSTR "&amp;gt;"'&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt; DO &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;
 &lt;SPAN class="token keyword"&gt;set&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"consoleTemp=%%a"&lt;/SPAN&gt;
 &lt;SPAN class="token keyword"&gt;set&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"connectionState=%%b"&lt;/SPAN&gt;
 &lt;SPAN class="token keyword"&gt;set&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"consoleType=!consoleTemp:~0,7!"&lt;/SPAN&gt;
&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;

SET consoleTypeCorrect&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;

IF &lt;SPAN class="token string"&gt;"!consoleType!"&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;==&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"rdp-tcp"&lt;/SPAN&gt; SET consoleTypeCorrect&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt;
SET connectionStateCorrect&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt;

IF &lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;connectionState&lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;==&lt;/SPAN&gt;Active SET connectionStateCorrect&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;set&lt;/SPAN&gt; TRUE&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;connectionStateCorrect&lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;consoleTypeCorrect&lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;

IF &lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;TRUE&lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;==&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;11&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;
 endlocal
&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;else&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;
  tscon &lt;SPAN class="token number"&gt;1&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;2&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;3&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;4&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;5&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;6&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;7&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;8&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;9&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;10&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;consol
  tscon &lt;SPAN class="token number"&gt;11&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;12&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;13&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;14&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;15&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;16&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;17&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;18&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;19&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;20&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;​&lt;/PRE&gt;&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>Mon, 27 Apr 2020 21:45:00 GMT</pubDate>
    <dc:creator>AmiBarrett</dc:creator>
    <dc:date>2020-04-27T21:45:00Z</dc:date>
    <item>
      <title>Control Room suddenly useless - Can start any process on any machine whether it's logged in or not - obvious error and swiftly  terminates</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81587#M33143</link>
      <description>Hi,

In BP Control room, whole system became suddenly useless today.

We have 10 resources, have multiple schedules that run and occaisionally kick off process manually when required.

Suddenly today, control room stopped workign normally.&amp;nbsp; Now all process permanently show as logged out.
-Using LoginAgent I can login to any resource however, while the session marks itself as a success and completes.&amp;nbsp; The machine is NOT logged into.
-Can do this over and over, always a success but the machines status never changes.
-Likewise I can manually kick off processes on any machine.&amp;nbsp; Normally, if the machine is not logged into, the process will always terminate immeadiately as it's not on the windows home screen.&amp;nbsp; However now, all process will allow the process to "start".&amp;nbsp; This morning&amp;nbsp;I could not run a process on a machine that wasn't logged into.&amp;nbsp; Then process fails because obviously the machine is not logged into.

Have tried
- Rebooting all the machines, problem persists
- With IT, remoting into resources.&amp;nbsp; This allows the BP listern to start workign normally so i can run processes.&amp;nbsp; But as soon as the machine logs out.&amp;nbsp; The same behavior outlined abvoe resumed.
- With the machine remoted into, terminating the BP Listener service and restartign it, then logging out.&amp;nbsp; Does not work.

Only way we can currently run our BAU is to have a PC remote int othe Run Time Resource so that the Listener starts working, run processes manually while moving the mouse.

Naturally this is completely unacceptable and cannot continue.

Been trying to solve the problem all day and have gotten nowhere.

Open to any and all suggestions.

Thanks in advance.</description>
      <pubDate>Fri, 05 Apr 2019 23:07:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81587#M33143</guid>
      <dc:creator>BenKirimlidis</dc:creator>
      <dc:date>2019-04-05T23:07:00Z</dc:date>
    </item>
    <item>
      <title>In reality all the login…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81588#M33144</link>
      <description>In reality all the login process does is pass the credentials to Windows, it&amp;nbsp;does not wait for Windows to complete the user log in. So it would be worth double checking that 1) the Windows user/password are&amp;nbsp;valid, 2) the user/password in the BP credential store are OK, 3) after logging into Windows the resource PC starts automatically, 4) the event log on the resource machine.</description>
      <pubDate>Mon, 08 Apr 2019 18:11:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81588#M33144</guid>
      <dc:creator>John__Carter</dc:creator>
      <dc:date>2019-04-08T18:11:00Z</dc:date>
    </item>
    <item>
      <title>I'm curious about your usage…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81589#M33145</link>
      <description>I'm curious about your usage of wording when you say ""the machine logs out"". Do you actually mean that the user account is logged out, or that the workstation simply goes to the lock screen? If the former, try setting up to just lock instead of logging the account out entirely. (Though if these are VMs, it seems silly to require it to lock to begin with.) Theoretically, you should only need to use Login Agent to enter the credentials while the VM is locked, rather than entirely logged out. This should save time and create additional stability. Just make sure that the VM is configured through Windows to automatically login the proper account on reboot (hint: check out netplwiz ).
Likewise, how are you remoting into the system? If it's RDP, that's known to break Login Agent. Try using something like TeamViewer.
&amp;nbsp;</description>
      <pubDate>Mon, 08 Apr 2019 20:41:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81589#M33145</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2019-04-08T20:41:00Z</dc:date>
    </item>
    <item>
      <title>If you absolutely have to…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81590#M33146</link>
      <description>If you absolutely have to use RDP to connect, I'm attaching a batch script as a txt file that'll unlock the system from an RDP disconnect (Assuming the forum will play nicely - if not, I'll have to make another post). Set this up as a scheduled task to kick off on remote disconnect from the resource,&amp;nbsp;and make sure it runs with elevated privileges.
&amp;nbsp;
I know it may seem excessive to have this many tscon lines - but sometimes there are more sessions than you may be aware of. We had a resource reach 15 once. (Not at all a pretty sight.)
Please note that there is a known bug with this particular scheduled task trigger that may cause the script to kick off on RDP connection, rather than just disconnection. The attached file has some logic included to check for this. In case of failure, you should be able to RDP in as any other account and disable the task.</description>
      <pubDate>Mon, 08 Apr 2019 20:49:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81590#M33146</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2019-04-08T20:49:00Z</dc:date>
    </item>
    <item>
      <title>Thanks @John &amp; @AmiBarrett…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81591#M33147</link>
      <description>Thanks @John &amp;amp; @AmiBarrett&amp;nbsp;for your input.
Issue was resolved yesterday&amp;nbsp;afternoon.
It was a perfect storm of several small human errors which were not caught in time.&amp;nbsp;
- Two environments were not in sync when a developer edited a VBO in our QA environment&amp;nbsp; (all edits should have been done in Dev) (mistake #1)
- The edit broke the object
- The&amp;nbsp;QA object was imported back to our Dev environment which is against our protocols (mistake #2)
- A package was created which included the overwritten object which was then imported into PROD, it should not have included the object (mistake #3)
- The object is used in a few custom VBOs including a modified LoginAgent.
- Package was imported into Production on Friday
- The modified VBO causes LoginAgent to essentially do nothing and always report a success.
- No changes were made at a process level so it took us longer to diagnose the issue (i ll call this mistake #4, i should noticed this sooner)
It was a face palm moment when we figured it out.
@Amibarett
When I said ""the machine logs out"", I meant that when we remoted into the resource, it reported to the control that it was available to run processes so long as the remote desktop session is dispalyed on a monitor.&amp;nbsp;So everything works normally from then.&amp;nbsp; But when we&amp;nbsp;ran a 'LogOut' or a 'MachineRestart' process.&amp;nbsp; We could still not use the LoginAgent's 'Login' function.
The thing that was throwing me off was that when we ran the Login, the it reported successful completion and the Log showed all steps completed successfully.
But once we synced up our environments with the correct version&amp;nbsp;everything returned to normal.
&amp;nbsp;</description>
      <pubDate>Tue, 09 Apr 2019 14:36:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81591#M33147</guid>
      <dc:creator>BenKirimlidis</dc:creator>
      <dc:date>2019-04-09T14:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: If you absolutely have to…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81592#M33148</link>
      <description>Had a request earlier to re-attach the script. (Also, fun fact: Edit won't allow you to attach anything after the fact. &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt; )&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ami Barrett&lt;BR /&gt;Lead RPA Software Developer&lt;BR /&gt;Solai &amp;amp; Cameron&lt;BR /&gt;America/Chicago&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jun 2019 14:32:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81592#M33148</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2019-06-17T14:32:00Z</dc:date>
    </item>
    <item>
      <title>RE: If you absolutely have to…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81593#M33149</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33683"&gt;@AmiBarrett&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;Will this .bat allow me to close RDP and have my processes still running? Sadly RDP is the only tool we have to connect to server and resource PCs.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;​I've configured 2 VMs, one as server and the other as client. I've scheduled 2 different process at different schedules. One uses&amp;nbsp;Login Agent to login, and the other does 'Global Mouse Clic Center' actions on calculator for 2 minutes. &lt;BR /&gt;&lt;BR /&gt;If I connect using RDP to the resource PC while process is running, it will "pause" for a few seconds and then starts clicking buttons again. If I close the RDP session, control room will show the process as "running", but it will not clic on any button, like if it paused forever.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Any friendly suggestion?&amp;nbsp;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;David Vizcaíno&lt;BR /&gt;RPA Programmer&lt;BR /&gt;EY&lt;BR /&gt;America/Bogota&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sat, 25 Apr 2020 01:17:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81593#M33149</guid>
      <dc:creator>DavidVizcaíno</dc:creator>
      <dc:date>2020-04-25T01:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: If you absolutely have to…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81594#M33150</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/36960"&gt;@DavidVizcaíno&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt; That is the intent of the bat file, yes. &lt;BR /&gt;&lt;BR /&gt;Treat a VM like any desktop without an attached monitor. If you RDP into a physical box, the local system will display a lock screen, while the active session is being virtualized. Upon logging out, there is no longer any virtualization, thus the local system has no desktop to interact with. Rather than permenantly pause, this should cause a failure on anything requiring accessibility, UIA, or Region mode access.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Its also worth noting, that because it has no screen attached, the default resolution will be somewhere around 800x600. You can change this via powershell on disconnect, to 1200x800, which I think is the max resolution without an attaches screen. These resolution changes may have an effect on your automation.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The pause you're experiencing may have to do with it reconfiguring the session between the local and remote connections.&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>Sun, 26 Apr 2020 16:46:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81594#M33150</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-04-26T16:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: If you absolutely have to…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81595#M33151</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33683"&gt;@AmiBarrett&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt; ​Hi, I've configured a new task to run a the .bat, triggering on RDP disconnection according to the following event IDs:&lt;BR /&gt;&lt;BR /&gt;
&lt;UL&gt;
&lt;LI&gt;EventID – 24 (&lt;CODE&gt;Remote Desktop Services: Session has been disconnected&lt;/CODE&gt;) – a user has disconnected from the RDP session;&lt;/LI&gt;
&lt;LI&gt;EventID – 25 (&lt;CODE&gt;Remote Desktop Services: Session reconnection succeeded&lt;/CODE&gt;) – a user has reconnected to the existing RDP session on the server;&lt;/LI&gt;
&lt;LI&gt;EventID – 39 (&lt;CODE&gt;Session &amp;lt;A&amp;gt; has been disconnected by session &amp;lt;B&amp;gt;&lt;/CODE&gt;) – a user has disconnected from RDP session by selecting the corresponding menu option (instead of just closing the RDP client window). If the session IDs are different, a user has been disconnected by another user (or an administrator);&lt;/LI&gt;
&lt;LI&gt;EventID – 40 (&lt;CODE&gt;Session &amp;lt;A&amp;gt; has been disconnected, reason code &amp;lt;B&amp;gt;&lt;/CODE&gt;). Here you must view the disconnection reason code in the event description.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;EventID&amp;nbsp;&lt;STRONG&gt;23&lt;/STRONG&gt;&amp;nbsp;(&lt;CODE&gt;Remote Desktop Services: Session logoff succeeded&lt;/CODE&gt;), refers to the user logoff from the system.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
I noticed the bug, as you said the task also triggers on login, so I implemented some logic into a powershell script to check for the session state and only run the .bat when session state is disconnected. When connecting with RDP: session is active, closing RDP: session is dissconected. I also managed to run the powershell script on hidden mode so no interference with the UI is shown.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Your .bat runs OK, only when I close the RDP sessions it brings back the console session. The only problem is that is shows the 20 cmd windows, one for each tscon line you mentioned on previous comments. Therefore my process fails to find the buttons on my application due to all the cmd windows opening and closing.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I noticed the "@ECHO off"​ on first line of the.bat, which will mean everything runs without windows displaying. Am I running an outdated version of the .bat, maybe?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I also tried changing the user account under which the task runs on the task scheduler to SYSTEM, or checking the "Run whether is logged on or not" checkbox. The cmd Windows don't show but the .bat doesn't bring back the session to console.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Do you have any updated version of the .bat? How did you get this to work?&lt;BR /&gt;&lt;BR /&gt;Thank you&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;David Vizcaíno&lt;BR /&gt;RPA Programmer&lt;BR /&gt;EY&lt;BR /&gt;America/Bogota&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Apr 2020 16:59:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81595#M33151</guid>
      <dc:creator>DavidVizcaíno</dc:creator>
      <dc:date>2020-04-27T16:59:00Z</dc:date>
    </item>
    <item>
      <title>RE: If you absolutely have to…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81596#M33152</link>
      <description>&lt;DIV class="uconBody"&gt;&lt;DIV style="page: WordSection1"&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;This solution is pretty amazing and stunning.&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;I would like to understand to source of this problem (not able to see the history conversation).&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;Do you have a control room to start the process to avoid to enter into the Runtime Resource? Or, do you any a special business requirement to do that?&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;Just to know.&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;Best regards.&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;DIV&gt; &lt;TABLE border="0" cellspacing="0" cellpadding="0" width="509" style="width:5.3in;border-collapse:collapse"&gt; &lt;TBODY&gt; &lt;TR style="height:106.65pt"&gt; &lt;TD width="108" valign="bottom" style="width:81.0pt;padding:0in 0in 0in 0in;height:106.65pt"&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN lang="ES-AR" style="color:windowtext"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="15828.jpg"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/15990i9CD109831EACDE2F/image-size/large?v=v2&amp;amp;px=999" role="button" title="15828.jpg" alt="15828.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN lang="SV" style="font-size:11.5pt;color:windowtext"&gt;&lt;/SPAN&gt;&lt;/P&gt; &lt;/TD&gt; &lt;TD width="528" valign="bottom" style="width:5.5in;padding:0in 0in 0in 0in;height:106.65pt"&gt; &lt;/TD&gt; &lt;/TR&gt; &lt;/TBODY&gt; &lt;/TABLE&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;/DIV&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------Original Message------&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33683"&gt;@AmiBarrett&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt; ​Hi, I've configured a new task to run a the .bat, triggering on RDP disconnection according to the following event IDs:&lt;BR /&gt;&lt;BR /&gt;
&lt;UL&gt;
&lt;LI&gt;EventID – 24 (&lt;CODE&gt;Remote Desktop Services: Session has been disconnected&lt;/CODE&gt;) – a user has disconnected from the RDP session;&lt;/LI&gt;
&lt;LI&gt;EventID – 25 (&lt;CODE&gt;Remote Desktop Services: Session reconnection succeeded&lt;/CODE&gt;) – a user has reconnected to the existing RDP session on the server;&lt;/LI&gt;
&lt;LI&gt;EventID – 39 (&lt;CODE&gt;Session &amp;lt;A&amp;gt; has been disconnected by session &amp;lt;B&amp;gt;&lt;/CODE&gt;) – a user has disconnected from RDP session by selecting the corresponding menu option (instead of just closing the RDP client window). If the session IDs are different, a user has been disconnected by another user (or an administrator);&lt;/LI&gt;
&lt;LI&gt;EventID – 40 (&lt;CODE&gt;Session &amp;lt;A&amp;gt; has been disconnected, reason code &amp;lt;B&amp;gt;&lt;/CODE&gt;). Here you must view the disconnection reason code in the event description.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;EventID&amp;nbsp;&lt;STRONG&gt;23&lt;/STRONG&gt;&amp;nbsp;(&lt;CODE&gt;Remote Desktop Services: Session logoff succeeded&lt;/CODE&gt;), refers to the user logoff from the system.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
I noticed the bug, as you said the task also triggers on login, so I implemented some logic into a powershell script to check for the session state and only run the .bat when session state is disconnected. When connecting with RDP: session is active, closing RDP: session is dissconected. I also managed to run the powershell script on hidden mode so no interference with the UI is shown.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Your .bat runs OK, only when I close the RDP sessions it brings back the console session. The only problem is that is shows the 20 cmd windows, one for each tscon line you mentioned on previous comments. Therefore my process fails to find the buttons on my application due to all the cmd windows opening and closing.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I noticed the "@ECHO off"​ on first line of the.bat, which will mean everything runs without windows displaying. Am I running an outdated version of the .bat, maybe?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I also tried changing the user account under which the task runs on the task scheduler to SYSTEM, or checking the "Run whether is logged on or not" checkbox. The cmd Windows don't show but the .bat doesn't bring back the session to console.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Do you have any updated version of the .bat? How did you get this to work?&lt;BR /&gt;&lt;BR /&gt;Thank you&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;David Vizcaíno&lt;BR /&gt;RPA Programmer&lt;BR /&gt;EY&lt;BR /&gt;America/Bogota&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Apr 2020 17:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81596#M33152</guid>
      <dc:creator>RaúlHernández</dc:creator>
      <dc:date>2020-04-27T17:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: If you absolutely have to…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81597#M33153</link>
      <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/36960"&gt;@DavidVizcaíno&lt;/a&gt; - Below is the latest version I have, which includes a session check, as you found might be needed. The 20 windows are expected, unfortunately. In normal cases, you might be able to get away with only using the first one or two tsdiscon lines, though. &lt;BR /&gt;&lt;BR /&gt;The only way I know of to launch something hidden, would be via additional code. For example, VB (also below). You could make a .vbs file to launch the bat file, then tie that into your task. I haven't tested it on this particular bat file, so I don't know if the child windows would also be hidden. "@ECHO&amp;nbsp;off" only specifies that it shouldn't output text to the cmd window.&lt;BR /&gt;&lt;BR /&gt;Have you checked that the task is running as administrator? It's required to use tsdiscon.&lt;/P&gt;
&lt;PRE class="language-csharp"&gt;Dim startInfo As New &lt;SPAN class="token class-name"&gt;ProcessStartInfo&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"unlockme.bat"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;
startInfo&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;WindowStyle &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; ProcessWindowStyle&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;Hidden

Process&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Start&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;startInfo&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;PRE class="language-markup"&gt;@ECHO off

setlocal EnableDelayedExpansion



for /f "tokens=2,4" %%a in ('QUERY USER ^| FINDSTR "&amp;gt;"') DO (

 set "consoleTemp=%%a"

 set "connectionState=%%b"

 set "consoleType=!consoleTemp:~0,7!"

)



SET consoleTypeCorrect=0

IF "!consoleType!"=="rdp-tcp" SET consoleTypeCorrect=1



SET connectionStateCorrect=1

IF %connectionState%==Active SET connectionStateCorrect=1



set TRUE=%connectionStateCorrect%%consoleTypeCorrect%



IF %TRUE%==11 (

 endlocal

) else (

 start "" tscon 1 /dest:console

 start "" tscon 2 /dest:console

 start "" tscon 3 /dest:console

 start "" tscon 4 /dest:console

 start "" tscon 5 /dest:console

 start "" tscon 6 /dest:console

 start "" tscon 7 /dest:console

 start "" tscon 8 /dest:console

 start "" tscon 9 /dest:console

 start "" tscon 10 /dest:console

 start "" tscon 11 /dest:console

 start "" tscon 12 /dest:console

 start "" tscon 13 /dest:console

 start "" tscon 14 /dest:console

 start "" tscon 15 /dest:console

 start "" tscon 16 /dest:console

 start "" tscon 17 /dest:console

 start "" tscon 18 /dest:console

 start "" tscon 19 /dest:console

 start "" tscon 20 /dest:console

)​&lt;/PRE&gt;
​&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>Mon, 27 Apr 2020 17:19:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81597#M33153</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-04-27T17:19:00Z</dc:date>
    </item>
    <item>
      <title>RE: If you absolutely have to…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81598#M33154</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1645"&gt;@RaúlHernández&lt;/a&gt;​ - This is specifically if there is no other method setup to remotely connect to the resource(s) than RDP. Ideally, you'd use something like VNC or TeamViewer.&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>Mon, 27 Apr 2020 17:21:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81598#M33154</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-04-27T17:21:00Z</dc:date>
    </item>
    <item>
      <title>RE: If you absolutely have to…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81599#M33155</link>
      <description>&lt;DIV class="uconBody"&gt;&lt;DIV style="page: WordSection1"&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;Hi, Ami.&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;I understand. So, there is no login agent working here.&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;Best regards.&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;DIV&gt; &lt;TABLE border="0" cellspacing="0" cellpadding="0" width="509" style="width:5.3in;border-collapse:collapse"&gt; &lt;TBODY&gt; &lt;TR style="height:106.65pt"&gt; &lt;TD width="108" valign="bottom" style="width:81.0pt;padding:0in 0in 0in 0in;height:106.65pt"&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN lang="ES-AR" style="color:windowtext"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="15830.jpg"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/15992i8BC172437642F08B/image-size/large?v=v2&amp;amp;px=999" role="button" title="15830.jpg" alt="15830.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN lang="SV" style="font-size:11.5pt;color:windowtext"&gt;&lt;/SPAN&gt;&lt;/P&gt; &lt;/TD&gt; &lt;TD width="528" valign="bottom" style="width:5.5in;padding:0in 0in 0in 0in;height:106.65pt"&gt; &lt;/TD&gt; &lt;/TR&gt; &lt;/TBODY&gt; &lt;/TABLE&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;/DIV&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------Original Message------&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1645"&gt;@RaúlHernández&lt;/a&gt;​ - This is specifically if there is no other method setup to remotely connect to the resource(s) than RDP. Ideally, you'd use something like VNC or TeamViewer.&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>Mon, 27 Apr 2020 17:41:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81599#M33155</guid>
      <dc:creator>RaúlHernández</dc:creator>
      <dc:date>2020-04-27T17:41:00Z</dc:date>
    </item>
    <item>
      <title>RE: If you absolutely have to…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81600#M33156</link>
      <description>The RDP logon would be for manual intervention, not automatic login.&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>Mon, 27 Apr 2020 17:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81600#M33156</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-04-27T17:51:00Z</dc:date>
    </item>
    <item>
      <title>RE: If you absolutely have to…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81601#M33157</link>
      <description>&lt;DIV class="uconBody"&gt;&lt;DIV style="page: WordSection1"&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;Ok, So, is this situation solved now? &lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;Best regards.&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;DIV&gt; &lt;TABLE border="0" cellspacing="0" cellpadding="0" width="509" style="width:5.3in;border-collapse:collapse"&gt; &lt;TBODY&gt; &lt;TR style="height:106.65pt"&gt; &lt;TD width="108" valign="bottom" style="width:81.0pt;padding:0in 0in 0in 0in;height:106.65pt"&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN lang="ES-AR" style="color:windowtext"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="15832.jpg"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/15996i093D154B0650FF39/image-size/large?v=v2&amp;amp;px=999" role="button" title="15832.jpg" alt="15832.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN lang="SV" style="font-size:11.5pt;color:windowtext"&gt;&lt;/SPAN&gt;&lt;/P&gt; &lt;/TD&gt; &lt;TD width="528" valign="bottom" style="width:5.5in;padding:0in 0in 0in 0in;height:106.65pt"&gt; &lt;/TD&gt; &lt;/TR&gt; &lt;/TBODY&gt; &lt;/TABLE&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;/DIV&gt; &lt;P style="margin: 0in;margin-bottom: .0001pt;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #7A7A7A"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------Original Message------&lt;BR /&gt;&lt;BR /&gt;The RDP logon would be for manual intervention, not automatic login.&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>Mon, 27 Apr 2020 20:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81601#M33157</guid>
      <dc:creator>RaúlHernández</dc:creator>
      <dc:date>2020-04-27T20:44:00Z</dc:date>
    </item>
    <item>
      <title>RE: If you absolutely have to…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81602#M33158</link>
      <description>@Ami Barrett&lt;BR /&gt;&lt;BR /&gt;So by now, the .bat shows the windows, right? Does the .bat stop launching cmd windows depending on which tscon line got the correct connection? ​Could you please explain in a more technical way how the .bat actually does the trick?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I've tried your code example with VB with no luck, it throws error&amp;nbsp;800a0401. I tried with this and the windows still popup.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-markup"&gt;command = "powershell.exe -nologo -command unlockMe.bat"

set shell = CreateObject("WScript.Shell")

shell.Run command,0​&lt;/PRE&gt;
&lt;BR /&gt;
&lt;PRE class="language-markup"&gt;Set oShell = CreateObject ("Wscript.Shell") 
Dim strArgs
strArgs = "cmd /c unlockMe.bat"
oShell.Run strArgs, 0, false​&lt;/PRE&gt;
&lt;P&gt;&lt;/P&gt;
&lt;PRE class="language-markup"&gt;CreateObject("Wscript.Shell").Run "unlockMe.bat", 0, True&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;I'm running the task with elevated rights.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Question: When you tried this .bat, the windows flashing up didn't represent a problem??&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;David Vizcaíno&lt;BR /&gt;RPA Programmer&lt;BR /&gt;EY&lt;BR /&gt;America/Bogota&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Apr 2020 20:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81602#M33158</guid>
      <dc:creator>DavidVizcaíno</dc:creator>
      <dc:date>2020-04-27T20:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: If you absolutely have to…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81603#M33159</link>
      <description>The script is meant as a shotgun-blast approach. Even if it hits the correct session number, it will still continue through. 20 was an extreme case that I've seen useful in exactly one deployment. Pretty much every other time only required the first one or two sessions before it had a successful flip.&lt;BR /&gt;&lt;BR /&gt;I was messing around with the VB solution, and was not able to get it to hide the child windows as-is. I found a way to make it hide the child windows in powershell, but it won't hide the main window.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;This got me poking around it some more. When I had first built this bat file against some Server 2012r2 VMs, there was a technical need to spawn each tsdiscon in a new window. Seems something's changed along the way, so you can remove the "start """ from each line and contain it into a single window. So yay, no more child windows to mess with. I was then able to fix the VBS file to get the desired effect.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;PowerShell:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;
&lt;PRE class="language-csharp"&gt;PowerShell&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;exe &lt;SPAN class="token operator"&gt;-&lt;/SPAN&gt;windowstyle hidden &lt;SPAN class="token punctuation"&gt;{&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"-command unlockMe.bat"&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;}&lt;/SPAN&gt;​&lt;/PRE&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;VB:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;1) Create file: unlockme.vbs (or whatever you want to call it), and modify the path to the bat file:&lt;/P&gt;
&lt;PRE class="language-csharp"&gt;&lt;SPAN class="token function"&gt;CreateObject&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"Wscript.Shell"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;Run &lt;SPAN class="token string"&gt;"c:\tools\unlockme.bat"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;False&lt;/PRE&gt;
&lt;P&gt;2) Modify unlockme.bat&lt;/P&gt;
&lt;PRE class="language-csharp"&gt;@ECHO off

setlocal EnableDelayedExpansion

&lt;SPAN class="token keyword"&gt;for&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;f &lt;SPAN class="token string"&gt;"tokens=2,4"&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;a &lt;SPAN class="token keyword"&gt;in&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'QUERY USER ^| FINDSTR "&amp;gt;"'&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt; DO &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;
 &lt;SPAN class="token keyword"&gt;set&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"consoleTemp=%%a"&lt;/SPAN&gt;
 &lt;SPAN class="token keyword"&gt;set&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"connectionState=%%b"&lt;/SPAN&gt;
 &lt;SPAN class="token keyword"&gt;set&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"consoleType=!consoleTemp:~0,7!"&lt;/SPAN&gt;
&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;

SET consoleTypeCorrect&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;

IF &lt;SPAN class="token string"&gt;"!consoleType!"&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;==&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"rdp-tcp"&lt;/SPAN&gt; SET consoleTypeCorrect&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt;
SET connectionStateCorrect&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt;

IF &lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;connectionState&lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;==&lt;/SPAN&gt;Active SET connectionStateCorrect&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;set&lt;/SPAN&gt; TRUE&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;connectionStateCorrect&lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;consoleTypeCorrect&lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;

IF &lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;TRUE&lt;SPAN class="token operator"&gt;%&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;==&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;11&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;
 endlocal
&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;else&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;
  tscon &lt;SPAN class="token number"&gt;1&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;2&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;3&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;4&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;5&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;6&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;7&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;8&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;9&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;10&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;consol
  tscon &lt;SPAN class="token number"&gt;11&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;12&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;13&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;14&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;15&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;16&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;17&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;18&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;19&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
  tscon &lt;SPAN class="token number"&gt;20&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;dest&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;console
&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;​&lt;/PRE&gt;&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>Mon, 27 Apr 2020 21:45:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81603#M33159</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-04-27T21:45:00Z</dc:date>
    </item>
    <item>
      <title>RE: If you absolutely have to…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81604#M33160</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33683"&gt;@AmiBarrett&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt; Thank you so much for your help. For some strange reason the session check you mentioned was not working on my test environment. &lt;SPAN&gt;&amp;nbsp;So I implemented some logic into a powershell script to check for the session state and only run the .bat when session state is disconnected (RDP session is closed). Then I modified the .bat as you mentioned on the previous comment, created the VBS linked to the .bat, and ran the VBS accordingly from the powershell script.&lt;BR /&gt;&lt;BR /&gt;Things are working now, I've done two tests:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;1) Use RDP to login into resource PC, run a process from control room, close RDP session. Process continued running on console and everything succeeded (as long as I did not interfere with Blue Prism pressing buttons while closing the RDP window)&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;2) Use scheduler to Login into a resource PC using Login Agent and run a process, RDP to the resource PC while the process is running (process will seem to pause for a few seconds and then starts working again), closed the RDP session to let the process finish.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Neither the powershell script I created for session check, nor the cmd windows popped up.&lt;BR /&gt;&lt;BR /&gt;Thank you again.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;David Vizcaíno&lt;BR /&gt;RPA Programmer&lt;BR /&gt;EY&lt;BR /&gt;America/Bogota&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Apr 2020 18:47:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81604#M33160</guid>
      <dc:creator>DavidVizcaíno</dc:creator>
      <dc:date>2020-04-28T18:47:00Z</dc:date>
    </item>
    <item>
      <title>RE: If you absolutely have to…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81605#M33161</link>
      <description>Awesome! Glad you got it working!&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>Tue, 28 Apr 2020 18:50:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Control-Room-suddenly-useless-Can-start-any-process-on-any/m-p/81605#M33161</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-04-28T18:50:00Z</dc:date>
    </item>
  </channel>
</rss>

