PowerShell - Suppress stderr output 2 February 2018·27 words·1 min· loading · loading · Like · powershell powershell standard error standard output stderr stdout Author Luke Taylor I like a lot of things stderr to null # @ $commandWithArgs 2>&1 | out-null or @ $commandWithArgs --quiet --no-verbose > $null 2>&1 all output to null # @ $commandWithArgs *> | $null