Multiple choice technology

Which of the below CmdLet deletes the output of a CmdLet after execution instead of sending it back to the console?

  1. Out-Null

  2. Out-Default

  3. Out-Host

  4. Out-Buffer

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

The Out-Null cmdlet discards output generated by a command instead of sending it down the pipeline or to the console. This is commonly used to suppress unwanted output from functions or cmdlets.