Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我 RDP 进入了一个实例,但是当我尝试下载文件时,会出现一条错误消息:“您的当前设置不允许下载此文件。”
如果您知道要下载的文件的确切 URL,则可以使用 PowerShell 作为解决方法:
$client = New-Object System.Net.WebClient $client.DownloadFile("http://example.com/path/to/file", "path/to/destination/file.zip")