I'm using Start-Process
cmdlet as part of a Powershell script being executed by the new scriptable TFS build system.
My issue is that I'm starting some executables from my Powershell script and once the build step ends, it kills started processes.
I've also also tried to use ProcessStartInfo
directly and Start-Job
with no luck.
When I run that script alone it ends, but it leaves the started processes opened.
Is there any way to solve this?