05-02-24 08:56 PM
Currently, whenever we restart our machines, we have to manually bring up resources. How can I automate this process to speed up and improve efficiency? What would be the best practice?
Answered! Go to Answer.
05-02-24 09:02 PM
I faced similar issues before. One suggestion is to use the execution of a script to initialize the RR. You can schedule this in the Windows Scheduler to start along with the system.
You can use the following command in CMD: "C:\Program Files\Blue Prism Limited\Blue Prism Automate\automate.exe" /resourcepc /public /port 8181 /sso
Or a PowerShell script:
echo createobject("shell.application").shellexecute "cmd.exe",,,"runas",1 > runas.vbs & start /wait runas.vbs & del /f runas.vbs "C:\Program Files\Blue Prism Limited\Blue Prism Automate\automate.exe" /resourcepc /public /port 8181 /sso
This will help automate the initialization process, ensuring a smoother transition after server updates and minimizing the need for manual intervention.
05-02-24 09:02 PM
I faced similar issues before. One suggestion is to use the execution of a script to initialize the RR. You can schedule this in the Windows Scheduler to start along with the system.
You can use the following command in CMD: "C:\Program Files\Blue Prism Limited\Blue Prism Automate\automate.exe" /resourcepc /public /port 8181 /sso
Or a PowerShell script:
echo createobject("shell.application").shellexecute "cmd.exe",,,"runas",1 > runas.vbs & start /wait runas.vbs & del /f runas.vbs "C:\Program Files\Blue Prism Limited\Blue Prism Automate\automate.exe" /resourcepc /public /port 8181 /sso
This will help automate the initialization process, ensuring a smoother transition after server updates and minimizing the need for manual intervention.
22-07-24 09:46 PM
Hi,
I tried this command in CMD: "C:\Program Files\Blue Prism Limited\Blue Prism Automate\automate.exe" /resourcepc /public /port 8181 /sso and got below error.
"Active Directory authentication is disabled. Please use a different authentication method, for example /user"
Could you please assist?
23-07-24 09:25 AM
I personally wouldnt use the task scheduler for this and rather embed the listener file in the start up folder so it launches when you sign in. The startup folder is usually something like C:\Users\{username}\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
In here i would save the listener bat file, as for the issue you mentioned @nazia it looks like you are using sso in the script. Try changing it to be a little simpler using the following script "C:\Program Files\Blue Prism Limited\Blue Prism Automate\Automate.exe" /resourcepc /public /dbconname "PROD ENVIRONMENT"
The dbconname should match however the name is configured in the blueprism application example below. Hope this helps 🙂