Skip to content

Instantly share code, notes, and snippets.

@naviat
Forked from mlapida/azureVMAgentCheck.ps1
Created December 7, 2017 08:01
Show Gist options
  • Save naviat/e731fcbf8ec0bcaddead61b6a9cd4892 to your computer and use it in GitHub Desktop.
Save naviat/e731fcbf8ec0bcaddead61b6a9cd4892 to your computer and use it in GitHub Desktop.
Azure: Check VM Agent Health
param (
# Define Parameters
[parameter(Mandatory=$true)]
[string]$sub,
[parameter(Mandatory=$true)]
[string]$vm,
[parameter(Mandatory=$true)]
[string]$service
)
Select-AzureSubscription -SubscriptionName $sub
#Check the communication status of the Agent
(Get-AzureVM -ServiceName $service -Name $vm).GuestAgentStatus | Format-List GuestAgentVersion,Status
#Update Agent config to allow connections
Get-AzureVM -ServiceName $service -Name $sub | Set-AzureVMAccessExtension | Update-AzureVM
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment