ironmansoftware / universal-automation

Universal Automation is the PowerShell-first automation platform.
https://ironmansoftware.com/universal-automation/
MIT License
24 stars 4 forks source link

Pipeline output tab has blank rows #140

Closed leeberg closed 4 years ago

leeberg commented 4 years ago

Describe the Issue

The Pipeline output seems to populate the correct number of rows / pages when outputting a variety of objects - however the content of the row is blank!

To Reproduce

See Script - Output Service to Pipeline (have not attempted a wide variety of types yet)

Screenshots

UAD/UA UI image

Note, I do have the correct details in the Database image

Script Sample


$Services = Get-Service
$Services | ForEach-Object {
     Write-Output $_
}

Version Information

adamdriscoll commented 4 years ago

Looks like PS 7 XML is slightly different than PS 5.1. Looking into it.

adamdriscoll commented 4 years ago

Even more strange...the CliXml returned within UA is different than when I run on the command line.