April 2017
Intermediate to advanced
564 pages
24h 7m
English
To download logs using Azure PowerShell, we first have to install Azure PowerShell from the PowerShell gallery. Run PowerShell from your machine using administrative rights.
Run the following command, which will install the Azure Resource Manager modules from the PowerShell gallery:
Install-Module AzureRM
Then run another command that installs the Azure Service Management module from the PowerShell gallery, as follows:
Install-Module Azure
Once these modules are installed, you can connect to your Azure account by executing the following command:
Add-AzureAccount
This command asks you to provide your credentials and, once added, you have to set your subscription to where your website is running. Subscription ...
Read now
Unlock full access