mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2026-05-05 01:00:33 +00:00
34ccd57769
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 ```