I'm trying to start running an exe from the Windows command line with either PowerShell or CMD that will continue to run after closing the terminal window. I've been able to get the process to start in the background using:
PowerShell:
Start-Process -NoNewWindow [path-to-exe]
CMD:
start /b [path-to-exe]
In both cases the process starts and continues until I close the console, and then the process terminates. Is there a way to bypass the parent/child relationship and keep the process alive?