Hello,
I am using version 2.9.0 of UniversalDashboard.Community.
I am trying to export a PSCustomTable object to the “Out-UDGridData” command, but it gives me an error:
Here is the code I am using :
Thanks for your help.
Thomas.
Hello,
I am using version 2.9.0 of UniversalDashboard.Community.
I am trying to export a PSCustomTable object to the “Out-UDGridData” command, but it gives me an error:
Here is the code I am using :
Thanks for your help.
Thomas.
Hey,
If you go more basic and try the example in the docs:
New-UdGrid -Title "Processes" -Endpoint {
Get-Process | Select Name,ID,WorkingSet,CPU | Out-UDGridData
}
Does this work?
If it does, also try this:
New-UDGrid -Title "Mes dossiers" -Endpoint {
Get-TableAnalyse | %{
[pscustomobject]@{
Id= $_.Id
AnalysePath = $_.AnalysePAth
}
} | Out-UDGridData
}
Does this one work?