It seems that GraphViz is not aware of PowerShell path constructs such as `~`. ```powershell Graph { Node Foo } | Export-PSGraph -DestinationPath C:\users\jhoek\Desktop\thisworks.png Graph { Node Baz } | Export-PSGraph -DestinationPath ~\Desktop\thisdoesnot.png ```
It seems that GraphViz is not aware of PowerShell path constructs such as
~.Graph { Node Foo } | Export-PSGraph -DestinationPath C:\users\jhoek\Desktop\thisworks.png Graph { Node Baz } | Export-PSGraph -DestinationPath ~\Desktop\thisdoesnot.png