Azure Handbook and Architecture resources

This book is useful to get insight and a summation of what Azure is about, what you can use it for and why Azure is the most complete cloud. The book is not detailed about “how to” but most FAQs you have this book should be able to answer, for example. *Limitations *Security *Pricing *Support … Read more

Step-by-Step Documenting your Azure VMs

  The short version Open Azure PowerShell Select the subscription you want to document Run this one-liner   Get-AzureVM | ForEach-Object { $vm = $_.name ; Write-Output “$vm VM Properties” ; Write-Output “—————” ; Format-List -InputObject $_ -Property * ; Write-Output “$vm VM Endpoints” ; Write-Output “—————” ; Get-AzureEndpoint -VM $_ ; Write-Output “$vm Virtual … Read more