How use PowerShell to start process

Hello @RR2 sorry I missed the earlier notification.

You should start by first authenticating your PowerShell session with your Orchestrator. For Platform, just run this:
PS:>Get-UiPathAuthtoken -Session

Next, you will need a reference to the Process you want to start. Use Get-UiPathProcess to list all processes. Then find the one you want to start and use the process name to get a reference and assign it to a PowerShell variable. In my case, the process name is QueueHandler_RERUSANU:
PS:>$process = Get-UiPathProcess -Name QueueHandler_RERUSANU
Now simply start the job:
PS:>Start-UiPathJob -RobotCount 1 -Process $process

2 Likes