Try this:
Get-WmiObject -Class "Win32_computersystem" | Format-List * Get-WmiObject -Class "Win32_computersystem" | Format-List -Property *
For certain objects, PowerShell provides a set of formatting instructions that can affect the format of a table or list. They are usually intended to limit the display of multiple properties down to only the basic properties. However, there are times when you really want to see everything. In these cases, Format-List * will show all the properties. Please note that in case you are trying to view the PowerShell error record, you need to use "Format-List * -Force" to really see all the error information, for example,
$error[0] | Format-List * -force
Note that the wildcard can be used as a traditional pattern:
Get-WmiObject -Class "Win32_computersystem" | Format-List M*
Keith Hill Aug 31 2018-11-11T00: 00Z
source share