Tuesday 9 December 2014

What needs an Agent update in VMM?

When you apply an Update Rollup to System Center 2012 R2 Virtual Machine Manager (VMM), if you're not using plain WSUS, ConfigMgr SUS, or even the built in Update Management features of VMM, you may notice that you will see "Needs Attention" under your host status column view in the Fabric Node.



Nothing to worry about, it just means there is an agent update to push.

However, you will need to work through the fabric in the GUI, checking the Library Servers, PXE Servers, Update Servers etc etc.

You'll probably want to add the extra columns to each view of the console as you go to make it easier to check. Add these columns:
  • Agent Version
  • Agent Version Status
  • Updated Date



Or alternatively, you could always drop to a PowerShell Prompt and run this to check your entire estate very quickly:

Get-SCVMMManagedComputer | FT ComputerName,Role,VersionStateString,AgentVersion,UpdatedDate -AutoSize

This will show you the current state of your VMM Agent deployment status.




If you wanted to just see those servers requiring an update, add a filter:

Get-SCVMMManagedComputer | Where VersionState -eq UpgradeAvailable | FT ComputerName,Role,VersionStateString,AgentVersion,UpdatedDate -AutoSize

And just to finish, you "could" (I wouldn't to this on mass!!) update all of those pending agents with a couple of lines:

$Credential = Get-SCRunAsAccount | Out-GridView -PassThru

Get-SCVMMManagedComputer | Where VersionState -eq UpgradeAvailable | Update-SCVMMManagedComputer -Credential $credential -RunAsynchronously



 
Once run, you should see all the jobs running and then hopefully complete inside the VMM console:


See the failed one? That's the Cluster Object Name of my library file server cluster and VMM (although it shows as having an Agent Status etc) won't allow direct update of that, only the nodes that are part of the cluster.

No comments: