Windows – There is any way to run processes in the background in Windows? nohup equivalent for windows

background-processnohupwindows

nohup runs a process in the background. There is any equivalent for Windows?

Best Answer

You can use the start command to run a process in the background of the command window.

command1
command2
start command3
command4

command2 waits until command1 finish but command4 don't wait that command3 finishes.

and if you need to run independently of the user logged on, you need to start the process as a service and you can use anysrv.exe