How can I determine what version of PowerShell is installed on a computer, and indeed if it is installed at all?
Extending the answer with a select operator:
Get-Host | select {$_.Version}