<?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 Alternate we can play any… in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Script-for-Keeping-System-Unlocked/m-p/51700#M6708</link>
    <description>Alternate we can play any video with repeat action ,system never lock until&amp;nbsp;you close video.</description>
    <pubDate>Wed, 21 Nov 2018 06:11:00 GMT</pubDate>
    <dc:creator>Murali_MohanKon</dc:creator>
    <dc:date>2018-11-21T06:11:00Z</dc:date>
    <item>
      <title>Script for Keeping System Unlocked</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Script-for-Keeping-System-Unlocked/m-p/51697#M6705</link>
      <description>Hi Team,

&amp;nbsp;

I am trying to run the process in my local machine which involves more excel operations. I need to keep my desktop active or unlocked for more than half an hour. Is there any script for doing the same.

&amp;nbsp;

The basic requirement is to keep the system unlocked until the process completes.</description>
      <pubDate>Tue, 20 Nov 2018 13:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Script-for-Keeping-System-Unlocked/m-p/51697#M6705</guid>
      <dc:creator>AnushaSomasund2</dc:creator>
      <dc:date>2018-11-20T13:58:00Z</dc:date>
    </item>
    <item>
      <title>If you create an object that…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Script-for-Keeping-System-Unlocked/m-p/51698#M6706</link>
      <description>If you create an object that attaches to explorer.exe, you can spy the Windows desktop, start button, system tray etc. It's a hack, but you can keep the lock at bay by, for example, opening and closing the start menu.</description>
      <pubDate>Tue, 20 Nov 2018 17:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Script-for-Keeping-System-Unlocked/m-p/51698#M6706</guid>
      <dc:creator>John__Carter</dc:creator>
      <dc:date>2018-11-20T17:54:00Z</dc:date>
    </item>
    <item>
      <title>We came up with a similar…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Script-for-Keeping-System-Unlocked/m-p/51699#M6707</link>
      <description>We came&amp;nbsp;up with a similar approach, where it opens Notepad and surface automates the File-&amp;gt;Close operation.</description>
      <pubDate>Tue, 20 Nov 2018 20:38:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Script-for-Keeping-System-Unlocked/m-p/51699#M6707</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2018-11-20T20:38:00Z</dc:date>
    </item>
    <item>
      <title>Alternate we can play any…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Script-for-Keeping-System-Unlocked/m-p/51700#M6708</link>
      <description>Alternate we can play any video with repeat action ,system never lock until&amp;nbsp;you close video.</description>
      <pubDate>Wed, 21 Nov 2018 06:11:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Script-for-Keeping-System-Unlocked/m-p/51700#M6708</guid>
      <dc:creator>Murali_MohanKon</dc:creator>
      <dc:date>2018-11-21T06:11:00Z</dc:date>
    </item>
    <item>
      <title>Create a vbscript which will…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Script-for-Keeping-System-Unlocked/m-p/51701#M6709</link>
      <description>Create a vbscript which will keep pressing ""NUMLOCK"" after every 1 min in infinite loop.You can also call this script via BluePrism Process or run it manually one time.</description>
      <pubDate>Thu, 22 Nov 2018 19:18:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Script-for-Keeping-System-Unlocked/m-p/51701#M6709</guid>
      <dc:creator>SachinUpadhyay</dc:creator>
      <dc:date>2018-11-22T19:18:00Z</dc:date>
    </item>
    <item>
      <title>For ours we utilize the ""Is…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Script-for-Keeping-System-Unlocked/m-p/51702#M6710</link>
      <description>For ours we utilize the ""Is Locked"" action from the BP Login Agent VBO to check if the screen is locked periodically. If the ""Is Locked"" returns a true value we then invoke the ""Unlock Screen"" action from login agent to unlock it then resume processing. Attached is a screenshot of the process logic.</description>
      <pubDate>Tue, 27 Nov 2018 01:50:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Script-for-Keeping-System-Unlocked/m-p/51702#M6710</guid>
      <dc:creator>MichaelBrown</dc:creator>
      <dc:date>2018-11-27T01:50:00Z</dc:date>
    </item>
    <item>
      <title>Use the below vb-script code…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Script-for-Keeping-System-Unlocked/m-p/51703#M6711</link>
      <description>Use the below vb-script code to press Numlock every defined minute. It will keep the system awake.
set wsc = CreateObject(""WScript.Shell"")
Do
&amp;nbsp; &amp;nbsp; 'Five minutes
&amp;nbsp; &amp;nbsp; WScript.Sleep(X*60*1000)
&amp;nbsp; &amp;nbsp; wsc.SendKeys(""{NUMLOCK}"")
Loop
Define X as 1 or more.</description>
      <pubDate>Tue, 27 Nov 2018 14:23:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Script-for-Keeping-System-Unlocked/m-p/51703#M6711</guid>
      <dc:creator>HarshalJhingran</dc:creator>
      <dc:date>2018-11-27T14:23:00Z</dc:date>
    </item>
  </channel>
</rss>

