通过powershell v3.0启用ssl连接filezilla

时间:2015-02-17 10:11:18

标签: windows ssl ftp iis-7.5 powershell-v3.0

通过使用power shell脚本,我可以通过正常会话连接我的ftp服务器。但无法通过安全会话进行连接。     每当我尝试通过ssl连接时,它显示错误"需要SSL"。任何人都可以告诉我用于电源外壳的参数。     Ftp服务器:IIS

1 个答案:

答案 0 :(得分:0)

假设您正在使用System.Net.FtpWebRequest,请将EnableSsl属性设置为true:

$ftp = [System.Net.FtpWebRequest]::Create("ftp://ftp.example.com")
$ftp.EnableSsl = $true