I have a programm which i usually start like this in powershell:
.\storage\bin\storage.exe -f storage\conf\storage.conf
What is the correct syntax for calling it in the background? I tried many combinations like:
start-job -scriptblock{".\storage\bin\storage.exe -f storage\conf\storage.conf"}
start-job -scriptblock{.\storage\bin\storage.exe} -argumentlist "-f", "storage\conf\storage.conf"
but without success. Also it should run in a powershell script.