如何在Windows EC2实例中下载文件?

时间:2012-07-31 15:51:25

标签: amazon-ec2 windows-server-2008-r2

我已将RDP加入实例,但当我尝试下载文件时,会显示一条错误消息:“您当前的设置不允许下载此文件。”

1 个答案:

答案 0 :(得分:0)

如果您知道要下载的文件的确切网址,可以使用PowerShell作为解决方法:

$client = New-Object System.Net.WebClient
$client.DownloadFile("http://example.com/path/to/file", "path/to/destination/file.zip")