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")