Get-Command

Get-Help

Get-ExecutionPolicy

Get-Process

Get-Service

Get-ChildItem

Import-CSV

Export-CSV

ConvertTo-HTML

PowerShell

Get-Service -Name WinRM | Select-Object -Property *

Output

Name                : WinRM

RequiredServices    : {NSI, HTTP, RPCSS}

CanPauseAndContinue : False

CanShutdown         : False

CanStop             : False

DisplayName         : Windows Remote Management (WS-Management)

DependentServices   : {}

MachineName         : .

ServiceName         : WinRM

ServicesDependedOn  : {NSI, HTTP, RPCSS}

ServiceHandle       :

Status              : Stopped

ServiceType         : Win32ShareProcess

StartType           : Manual

Site                :

Container           :


PowerShell

Get-Service | Select-Object -First 3

Output

Status   Name               DisplayName

------   ----               -----------

Stopped  AarSvc_14be77      Agent Activation Runtime_14be77

Running  AdobeARMservice    Adobe Acrobat Update Service

Stopped  ALG                Application Layer Gateway Service


PowerShell

Get-Service | Where-Object {$_.Name -like "AL*"}

Output

Status   Name               DisplayName

------   ----               -----------

Stopped  ALG                Application Layer Gateway Service