Multiple choice technology

Which command is used to get the paged output from a CmdLet?

  1. Out-Host –Paging

  2. Out-String –Paging

  3. Out-Null –Paging

  4. Out-buffer –Paging

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Out-Host with the -Paging parameter displays output one page at a time, similar to how more or less work in traditional command shells. Out-String converts output to a string. Out-Null discards output completely. Out-buffer is not a valid PowerShell cmdlet (should be Out-Buffer, but it doesn't support paging).