PowerShell uses tiny command-line tools called cmdlets to manage systems and automate tasks — all in a clean Verb-Noun format like Get-Process or Start-Service.
Cmdlets return objects you can pipe into other cmdlets for processing:
Get-Item, Stop-Process, Restart-Service.