Question:medium

What is PowerShell? Describe the function of the following in Windows PowerShell: (a) Command-line shell (b) Scripting language (c) Automation platform

Show Hint

Because PowerShell passes actual structured .NET objects through its pipeline, you can access individual properties directly (e.g., running Get-Process | Where-Object {$_.CPU -gt 10} to instantly isolate high-CPU processes) without writing complex text extraction scripts.
Updated On: Jun 18, 2026
Show Solution

Solution and Explanation

Was this answer helpful?
0