Using WinSCP within powershell script on Azure
I'm able to run a script locally with the following script referring to the dll in the same local directory as the script.
Add-Type -Path "WinSCPnet.dll"
If I want to run my script within an Azure Runbook then I need to use WinSCP from Azure. Is it accessible there? Do I need to install it on a web service and refer to that?
Thanks!
Add-Type -Path "WinSCPnet.dll"
If I want to run my script within an Azure Runbook then I need to use WinSCP from Azure. Is it accessible there? Do I need to install it on a web service and refer to that?
Thanks!