powershell-training-material

Chapter 1 | Know Your PowerShell

PowerShell Version and host version

image

image

Get All Cmd-Lets (Commands) available in your powershell session

image

image

Get-Command | select CommandType -Unique | ft -AutoSize

image

Get All Cmd-Lets available via a specific module

Get-Command -Module <module_name>

image

Alias

Get-Command -CommandType Alias

image

image

Cmd-Let

Get-Command -CommandType CmdLet

image