1

我 RDP 进入了一个实例,但是当我尝试下载文件时,会出现一条错误消息:“您的当前设置不允许下载此文件。”

4

1 回答 1

0

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

$client = New-Object System.Net.WebClient
$client.DownloadFile("http://example.com/path/to/file", "path/to/destination/file.zip")
于 2012-07-31T16:40:20.400 回答