I'm trying to put together an expression that returns a bare value, without a table or name of the expression included.
For example, I have this line from another solution:
gwmi win32_logicaldisk -Filter "DeviceID = 'C:'" |
Format-Table @{n="Size";e={[math]::Round($_.Size/1GB,2)}}
This returns:
Size
----
475.33
How can I grab just the 475.33?