Powershell ftps upload to box.com using passive mode
问题 The problem: A client requires that we upload extracted data from our system to their box.com platform, rather than our normal SFTP utility. I have box.com credentials, and am aware they require FTPS not SFTP, and require passive mode. I've cribbed a fragment from ThomasMaurer's Powershell FTP Upload and Download script. Powershell version on my server is 4.0 Code fragment is: #config $Username = "username@host.com" $Password = "redactedpassword" $LocalFile = "C:\path\to\my\file.csv"