PowerCli can track if an esxi host is using a real or eval license. Has anyone found a way to do this as a property in Aria Operations (v8.18)? It be great to have it as a column on an esxi view. I checked the overall properties and could not find a property.
Get-VMHost | Select-Object Name, @{N="License"; E={$_.LicenseData.Name}}, @{N="EvalMode"; E={$_.LicenseData.IsEval}} | Export-Csv -Path "C:\temp\HostLicenses.csv" -NoTypeInformation
-------------------------------------------