Re: Powershell module - Authentication Failure
That is so cool! This application is the most well documented and user-friendly I have ever seen.
# Setup session options
$sessionOptions = New-Object WinSCP.SessionOptions -Property @{
Protocol = [WinSCP.Protocol]::Ftp
HostName = "ftp-xxxx.com"
UserName = 'xxx'
Password = "xxx"
PortNumber = 21
FtpSecure = [WinSCP.FtpSecure]::Explicit
}
SshHostKeyFingerprint
because it didn't seem necessary (where do I even find this information?) but it may be the source of my connection problems.