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.
我想从 URL 下载 blob,而不是提供 blob 名称。
但是Get-AzureStorageBlobContent没有 URL 的参数。
Get-AzureStorageBlobContent
我想使用一个命令行开关,我不需要指定 blob 名称和容器名称,只需指定 URL。
$Source = "http://yoursite.com/file.xml" $Destination = "c:\application\data\newdata.xml" Invoke-WebRequest -Uri $Source -OutFile $Destination