A powershell script that I run locally uses the WinSCP dll from the same directory. But when I put that script into an Azure Runbook, I need to access WinSCP from there. Do I need to install it on a cloud service to access it there?
Locally I just use this line...
Add-Type -Path "WinSCPnet.dll"
Thanks!