Pergunta

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?

Foi útil?

Solução

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

Get-AzureWebsiteLog websitename -Tail 

Outras dicas

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.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top