Let’s start by listing the PowerShell Version
$PSVersionTable

Let’s Specify only the PowerShell Version from the command.
$PSVersionTable.PSVersion

We can specify the version we want to user in powershell
powershell -Version 2.0
The cmdlet in PowerShell is a .NET Classes.
Listing tasks in PowerShell.
tasklist

Another way to list process.
ps

Listing directories in PowerShell
Get-ChildItem

Getting help in PowerShell.