When I use Get-Volume
$Volume = Get-Volume
$Volume
I get the results
DriveLetter FriendlyName FileSystemType DriveType HealthStatus OperationalStatus SizeRemaining Size
----------- ------------ -------------- --------- ------------ ----------------- ------------- ----
R Recovery NTFS Fixed Healthy OK 482.8 MB 499 MB
When I call the property Size I get
$Volume.Size
I get the results
523235328
How can the property Size display the 499MB when I call the object but when I call the property directly It shows the int of bytes.
I have looked for a script property or alias, I do not see those in the $Volume.PSObject.Properties or $Volume.PSObject.Methods