Question

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?

Was it helpful?

Solution

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

Get-AzureWebsiteLog websitename -Tail 

OTHER TIPS

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top