我正在尝试使用 powershell 下载特定网站的网站日志:
Save-AzureWebsiteLog -Name website1 -output file.zip
它引发了关于最大消息大小配额的错误,我已经搜索了一个答案,但我能找到的只是在服务器 web.config 上设置它 - 这不是客户端的设置,因为它是制作请求响应?
save-azurewebsitelog : The maximum message size quota for incoming messages (65536) has been exceeded. To increase the
quota, use the MaxReceivedMessageSize property on the appropriate binding element.
At line:1 char:1
+ save-azurewebsitelog -name website1 -output file.zip
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [Save-AzureWebsiteLog], CommunicationException
+ FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.Websites.SaveAzureWebsiteLogCommand
我在问是否有人知道如何将此 MaxRecievedMessageSize 设置为高于 65536 的值,以便我可以下载我的 IIS 日志。