Suppressing emitted STDOUT from cmdlets is done with by piping to `Out-Null` instead of redirecting to `null`. That last option will create a new file on Windows. ``` # Don't do ❌ mkdir test > null # Do ✅ mkdir test | Out-Null ```