<?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: Dynamic Resource Manager in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Dynamic-Resource-Manager/m-p/60731#M14146</link>
    <description>&lt;P&gt;That script is very simple, but could be modified, but it quickly gets more involved. personally i would make the script connect to the bp database, and check the status of the resources, and then act on the resources, based on this information.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;/J&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;jan novak&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Thu, 22 Feb 2024 05:54:00 GMT</pubDate>
    <dc:creator>jan.novak</dc:creator>
    <dc:date>2024-02-22T05:54:00Z</dc:date>
    <item>
      <title>Dynamic Resource Manager</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Dynamic-Resource-Manager/m-p/60727#M14142</link>
      <description>&lt;P&gt;Dear Community,&lt;/P&gt;
&lt;P&gt;We received a question from a customer wondering whether DRM could reboot a Resource, if that Resource has become unresponsive (for technical reasons) - I watched the DRM webinar &amp;amp; read the technical documetation on the DX but I don't find this answer. Would anyone know?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Florina&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Florina Andonie&lt;BR /&gt;Solutions Consultant&lt;BR /&gt;SS&amp;amp;C Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Feb 2024 12:43:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Dynamic-Resource-Manager/m-p/60727#M14142</guid>
      <dc:creator>florina.andonie</dc:creator>
      <dc:date>2024-02-20T12:43:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dynamic Resource Manager</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Dynamic-Resource-Manager/m-p/60728#M14143</link>
      <description>&lt;P&gt;potentially yes.&lt;/P&gt;
&lt;P&gt;assuming there is limited access to the RR automate.exe HTTP API, but still network connection as a minimum. then it would be possible to execute a powershell script that reboots the remote RR. This requires a powershell VBO and credentials with the needed privileges to perform the remote reboot through powershells 'Restart-Computer' cmdlet. here is an example that could be modified for this use, including secure handling of credentials.:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;# Define the hostname of the server you want to reboot
$hostname = "YourServerHostname"

# Credential handling
# Assuming you have a file with the encrypted password. If not, create one as shown below:

# $password = "YourPassword" | ConvertTo-SecureString -AsPlainText -Force
# $username = "DOMAIN\Username"
# $password | ConvertFrom-SecureString | Out-File "C:\Path\To\Your\EncryptedPassword.txt"

# Read the encrypted password from a file and convert it back to a SecureString
$encryptedPasswordPath = "C:\Path\To\Your\EncryptedPassword.txt"
$securePassword = Get-Content $encryptedPasswordPath | ConvertTo-SecureString

# Construct the credential object
$username = "DOMAIN\Username" # Change DOMAIN\Username to your actual credentials
$credential = New-Object System.Management.Automation.PSCredential($username, $securePassword)

# Perform the remote reboot
Restart-Computer -ComputerName $hostname -Credential $credential -Force -ErrorAction Stop
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Another way is to use the windows built in shutdown command, '&lt;SPAN&gt;shutdown /r /m \\remotehostname1'&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;jan novak&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 14:23:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Dynamic-Resource-Manager/m-p/60728#M14143</guid>
      <dc:creator>jan.novak</dc:creator>
      <dc:date>2024-02-20T14:23:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dynamic Resource Manager</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Dynamic-Resource-Manager/m-p/60729#M14144</link>
      <description>&lt;P&gt;Another way would be to use the login agent to do that using the restart action... however, bear in mind that all of these options will work only if the &lt;STRONG&gt;resource pc &lt;/STRONG&gt;(listener) is unresponsive - not the machine itself.&lt;/P&gt;
&lt;P&gt;if the machine itself becomes unresponsive, then usually the only way to fix it is by restarting it from the admin console in the azure portal.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Andrzej Silarow&lt;BR /&gt;Principal Consultant&lt;BR /&gt;RPA Guru&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Feb 2024 19:40:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Dynamic-Resource-Manager/m-p/60729#M14144</guid>
      <dc:creator>asilarow</dc:creator>
      <dc:date>2024-02-20T19:40:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dynamic Resource Manager</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Dynamic-Resource-Manager/m-p/60730#M14145</link>
      <description>&lt;P&gt;Based on the "State" and "Connection" status of the particular BOTs which we can get from Control &amp;gt; Resources.&lt;/P&gt;
&lt;P&gt;For instance, "State- Connection Lost" and "Connection - Not connected".&lt;/P&gt;
&lt;P&gt;Does this Power shell script can able to identify and run a Restart command on particular Machines ?&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Srihari &lt;BR /&gt;RPA Developer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 22 Feb 2024 03:37:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Dynamic-Resource-Manager/m-p/60730#M14145</guid>
      <dc:creator>KodiSrihari</dc:creator>
      <dc:date>2024-02-22T03:37:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dynamic Resource Manager</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Dynamic-Resource-Manager/m-p/60731#M14146</link>
      <description>&lt;P&gt;That script is very simple, but could be modified, but it quickly gets more involved. personally i would make the script connect to the bp database, and check the status of the resources, and then act on the resources, based on this information.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;/J&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;jan novak&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 22 Feb 2024 05:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Dynamic-Resource-Manager/m-p/60731#M14146</guid>
      <dc:creator>jan.novak</dc:creator>
      <dc:date>2024-02-22T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dynamic Resource Manager</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Dynamic-Resource-Manager/m-p/60732#M14147</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/38061"&gt;@jan.novak&lt;/a&gt; for the information.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Srihari &lt;BR /&gt;RPA Developer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Feb 2024 04:18:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Dynamic-Resource-Manager/m-p/60732#M14147</guid>
      <dc:creator>KodiSrihari</dc:creator>
      <dc:date>2024-02-23T04:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: RE: Dynamic Resource Manager</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Dynamic-Resource-Manager/m-p/111872#M50205</link>
      <description>&lt;P&gt;Hi Asilarow,&lt;/P&gt;&lt;P&gt;I didn't manage to find a "restart" action in Login Agent. Screenshot below. Where can that action be found?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="alfredlau_0-1719386818664.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/38759i7CBACB326E60AE2E/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="alfredlau_0-1719386818664.png" alt="alfredlau_0-1719386818664.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Alfred&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2024 07:28:21 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Dynamic-Resource-Manager/m-p/111872#M50205</guid>
      <dc:creator>alfred.lau</dc:creator>
      <dc:date>2024-06-26T07:28:21Z</dc:date>
    </item>
  </channel>
</rss>

