Hi,
maybe I'm too stupid but I looked through the web for two days now and I can't find a solution.
I created a PSobject and added some properties and values. it looks like this:
$script:resultall = new-Object PSobject
Add-Member -InputObject $resultall -memberType NoteProperty -Name DisplayName -Value "Test1"
Add-Member -InputObject $resultall -memberType NoteProperty -Name Status -Value "Status1"
Now I want to add a second line with similar values to my object but it doesn't work in any way.
Every hint is welcome...
Sven