Files
doc.rustdesk.com/content
Robbe Van der Gucht 34ccd57769 Don't create 'null' files on Windows
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
```
2025-02-14 23:34:15 +01:00
..
2025-02-08 12:18:33 +05:45
2025-02-14 14:29:44 +08:00
2024-12-30 16:36:33 +04:00