c# – Azure powershell中无法识别“azure”

我第一次尝试使用Azure Powershell.我选择了我的订阅,并尝试运行以下命令:azure site log tail websitename但是,当我运行该命令时,我收到以下错误:azure : The term azure is not recognized as the name of a ...

我第一次尝试使用Azure Powershell.
我选择了我的订阅,并尝试运行以下命令:
azure site log tail websitename

但是,当我运行该命令时,我收到以下错误:

azure : The term 'azure' is not recognized as the name of a cmdlet...

我在这做错了什么?

解决方法:

您的示例命令是Azure cross-platform command line命令.等效的PowerShell命令是:

Get-AzureWebsiteLog websitename -Tail 

本文标题为:c# – Azure powershell中无法识别“azure”

基础教程推荐