我正在尝试使用Runbook获取Azure的存储文件,并且它会返回此错误消息…
Get-AzureStorageFile:未配置文件端点。
在线:52个字符:11
+ ... $Files = Get-AzureStorageFile –Context $storageAccount.Context -Sh ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [Get-AzureStorageFile], InvalidOperationException
+ FullyQualifiedErrorId :
InvalidOperationException,Microsoft.WindowsAzure.Commands.Storage.File.Cmdlet.GetAzureStorageFile
这是52行:
$Files = Get-AzureStorageFile –Context $storageAccount.Context -ShareName $Container | Where {$_.GetType().Name -ne "CloudFileDirectory"}
我尝试使用Windows Powershell获取文件,但该文件可以运行,但不能与Azure的Runbook一起使用。