With the Select-Object cmdlet, like this
Get-VM | Select Name
The Get-VM produces objects which you pass through the pipeline ('|') to the Select-Object cmdlet.
The Select-Object cmdlet allows you to select one or more of the properties of the objects it recieves.