PowerShell - Variables and Data Types
You want to list all processes and display their names using
$_. Which script correctly uses $_ to achieve this?$_. Which script correctly uses $_ to achieve this?$_ usage in pipeline$_ refers to the current object, so $_.Name accesses the process name.$Name is undefined, $_ alone outputs full object, and $Process is undefined variable.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions