This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Choose the best response to each question.
How would you find all members of a response starting with "F"?
Get-Process 'name of process' | Get-Member -Name F*
Get-Process 'name of process' | Get-Member -Name F
Get-Process 'name of process' | Get-Members -Name F*
What will this command answer with Get-Process 'some process' | Format-Table Name, CPU | Select-Object Name, CPU"?
Get-Process 'some process' | Format-Table Name, CPU | Select-Object Name, CPU
The Name and CPU for the process in question.
Empty response
It will throw an error
Which statement is the best choice for filtering left?
Get-Process | Select-Object Name | Where-Object Name -eq 'name-of-process'
Get-Process | Where-Object Name -eq name-of-process | Select-Object name-of-process
Get-Process -Name name-of-process | Select-Object Name
You must answer all questions before checking your work.
Was this page helpful?
Need help with this topic?
Want to try using Ask Learn to clarify or guide you through this topic?