Hi,
I'm trying to call one test process from powershell remotely which return the below error 'Database error - The caller was not authenticated by the service.'
If I login to the Blueprism server and call the process in powershell then it is working fine. I'm not able to remotely call the same process via invoke-method
The below run is direclty calling the process in powershell residing in the same server.
PS D:\Program Files\Blue Prism Limited\Blue Prism Automate> cd "D:\Program Files\Blue Prism Limited\Blue Prism Automate";
.\automateC /sso /run test_process_1;
Started process:test_process_1
Resource:test_computer_name
Actual resource:test_computer_name
Session:6baa1276-c2bb-4bc3-b51a-1d2f0ad7532a
If I called the same process remotely with the same credential, it returns below error
PS D:\AutomationBOTs\ServerBuild> Invoke-Command -ComputerName test_computer_name -Credential $credential -ScriptBlock {cd "D:\Program Files\Blue Prism Limited\Blue Prism Automate"; .\AutomateC.exe /sso /run test_process_1;}
Database error - The caller was not authenticated by the service.
------------------------------
Brindha Thangamuthu
------------------------------