Related Articles
SCOM – Class Hierarchy & Management Pack Details
If you have been working with SCOM for some time, you want to know more what is going on under the hood. You might want to know, how classes relate to each other or maybe what the management pack contains what kind of elements like monitors, rules, tasks, views and so on. In other terms […]
SCOM 2012 – Example Agent Health Check Dashboard Using PowerShell Grid Widgets
In this post I would like to show you what the benefit is of having PowerShell integration in dashboards. The days before having the PowerShell widgets you mostly needed to export your PowerShell queries / results into some sort of text file / Excel sheet etc. to display the result. For example a common request […]
PowerShell – Create a Credential Object with NULL Password
In one of my automation tasks I had the need to create a credential object with a $null password – an empty / NULL password. One easy way to do is, create just instantiate a new secure string object using the new() constructor from the .Net class like this: or using New-Object cmdlet like this […]