I\'m going through an array of objects and I can display the objects fine.
$obj
displays each object in my foreach loop fine. I\'m trying t
Once you iterate over the properties inside the foreach, they become available via $_ (current object symbol). Just like you printed the names of the properties with $_.Name, using $_.Value will print their values:
$_
$_.Name
$_.Value
$obj.psobject.properties | % {$_.Value}