How to translate this powershell command in uipath

Hi

I am trying to execute this powershell command in UiPath

Set-Location -Path “C:\Program Files (x86)\Proxifier”; .\Proxifier.exe proxy-disabled.ppx silent-load

I managed to take care of the first part

but dont know how to deal with the second part

; .\Proxifier.exe proxy-disabled.ppx silent-load

How should I go about it

Thank you

Hi @kaiji_San

May be you could try this

=> Drag and drop the “Invoke PowerShell” activity from the “Core” activities section onto your workflow.

=> In the “Properties” panel on the right side of the screen, find the “Script” property under the “Input” section for the “Invoke PowerShell” activity.

=> In the “Script” property, paste the following PowerShell command:

Set-Location -Path "C:\Program Files (x86)\Proxifier"; Start-Process -FilePath ".\Proxifier.exe" -ArgumentList "proxy-disabled.ppx", "silent-load"

Make sure the command is enclosed in double-quotes as a single string.

Hope it helps

1 Like