Azure in the Enterprise- Penny Pinching?

Being a consultant today when you are doing cloud, puts new requirements and expectations on you, previously we talked about solutions, projects and budgeted hardware according solution architecture and the went off building the solution. Today that process looks different when using clouds. We, the tech consultants need to factor in the cost in every … 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