💠 PowerShell Cmdlets Basics

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.

📚 Example Cmdlets

🔍 How Cmdlets Work

Cmdlets return objects you can pipe into other cmdlets for processing:

📝 Test Some Cmdlets:

Cmdlet output will appear here...
💡 Pro Tip: Cmdlets always follow a Verb-Noun structure — Get-Item, Stop-Process, Restart-Service.