How do I suppress standard error output in PowerShell?
Just in case someone else googles for similar terms as I did:
After I have been banging my forehead against this for hours, of course I found the solution within minutes after posting the question here:
svn info $url 2>&1 | out-null
This works like a charm.
If you want to suppress only standard error, use:
svn info $url 2>$null
One can also do this:
svn info $url *> $null
See Suppress console output in PowerShell
about_Redirection