I often find that I have to surround a command in parentheses and then use the property access to operator (dot-syntax) to get the value of a property. This is rather annoying since I have to go back to the beginning of the line when I'd rather just keep typing where I am. It is especially annoying when I am in the middle of a larger set of piped commands.
Example
If I have the following command
Get-PSProvider FileSystem
and I want to get the Drives property, I would have to surround the whole command in parentheses first:
(Get-PSProvider FileSystem).Drives
Is there a faster way to get the value of a single property?