Share via


Extending Windows Computer class from a CSV file in SCOM

<!--[if lt IE 9]>

<![endif]-->

Comments

  • Anonymous
    December 05, 2016
    Hello Kevin,Wonderful post, as always.Small unrelated suggestion: If your function "Is-ClassMember" would return the boolean $true/$false instead of the string"true"/"false", you can use it immediately in your IF clause: #Check and see if the $FQDN value contains a computer that exists as a Windows Computer in SCOM $IsSCOMComputer = Is-ClassMember $FQDN If ($IsSCOMComputer -eq "True") would then become:If (Is-ClassMember -InstanceDisplayName $FQDN)Thank you for the enormous insight into SCOM
  • Anonymous
    January 04, 2017
    how can we change to what info to be discover by the SCOM you have declared like tier, groupid n owner
  • Anonymous
    December 04, 2017
    The comment has been removed