For the first time I'm trying out Azure Powershell. I'm selected my subscription and am trying to run the following command: azure site log tail websitename

However when I run the command I get the following error:

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

What am I doing wrong here?

有帮助吗?

解决方案

Your example command is an Azure cross-platform command line command. The equivalent PowerShell command is:

Get-AzureWebsiteLog websitename -Tail 

其他提示

First you need to install the powershell tool for the azure from azure site. This is another utility which recognise all the cmdlts which is assosicated with azure. After that it's very easy to use powershell ise.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top