New simplified installation procedure on Windows

I’m just driving-by, I haven’t actually tried running this, but I think that comment might be mistaken, from looking at some docs

It sounds like “| Out-Null” is the equivalent of “> /dev/null”.

I think powershell commands wait for the previous command to finish (I don’t believe powershell executes commands automatically in parallel - how would ‘cd’ work if it does?).

I think perhaps when running

./graphviz-install.exe /S /D=$env:graphviz_install_dir | Out-Null;

I think the Out-Null just makes it so the console output of graphviz-install.exe doesn’t show up on screen?

1 Like