sftp

There are 3 entries for the tag sftp

NetCmdlets SFTP - Public Key Authentication in PowerShell

In the past I gave examples of using the get-ftp and send-ftp cmdlets for PowerShell, but recently a user pointed out that I didn’t show any examples of public key authentication using the cmdlets. Of course the –ssh flag tells the get-ftp and send-ftp cmdlets to use SSH (instead of plain text FTP, or an SSL connection which is turned on with the –ssl flag). For SSH connections, the AuthMode parameter determines what type of SSH authentication to perform – in this case that will be “publickey”. The...

Posted On Wednesday, June 25, 2008 10:29 AM | Feedback (0)

NetCmdlets Part 1: PowerShell cmdlet for FTP (plus FTPS and SFTP)

Some examples of using NetCmdlets in PowerShell. The FTP NetCmdlet supports plain and secure (both SSL and SSH) FTP connections right from the PowerShell console. List files on a remote server: PS C:\> get-ftp -server myserver -user lancer -password mypass The same, but using SSL (auth-tls): PS C:\> get-ftp -server myserver -user lancer -password mypass -ssl explicit And again, but using SSH 2.0: PS C:\> get-ftp -server myserver -user lancer -password mypass -ssh Find the files on a remote...

Posted On Thursday, November 09, 2006 11:37 AM | Feedback (11)

SFTP BizTalk Adapter How-To

Vamsi Krishna has posted a new article about the nsoftware SFTP BizTalk Adapter: Secure Shell SSH Enabled FTP Adapter for BizTalk. Technorati tags: biztalk sftp

Posted On Monday, March 27, 2006 9:48 AM | Feedback (0)

Copyright © Lance Robinson

Design by Bartosz Brzezinski

Design by Phil Haack Based On A Design By Bartosz Brzezinski