I need to start an executable from a parent folder using PowerShell. This is what I have tried:
Start-Process -FilePath ..\Tools\MyTool.exe -ArgumentList "MyArgs" -PassThru -NoNewWindow -Wait
This call fails, because the specified file cannot be found. How must the path to the executable be specified?
PS: It would be great if the actual working directory could remain unchanged.