Here is a quick rundown of how to add the base VM agent to existing Azure VMs: Find all your VMs that currently do not have the agent installed: Get-AzureVM | where { $_.GuestAgentStatus -eq $null } or this variation if you only want to get the VMs that are actually running: Get-AzureVM | where …
Continue reading “Add the Azure VM agent to existing Virtual Machines”