I know that if you want to run a program in the background from a unix command line, you simply add & to the end of the command, but is there an equivalent in windows in order to run something in the background?
|
feedback
|
|
You can:
I don't really know of a way to manually start something and have it run in the background like you can do in Unix. | |||
|
feedback
|
|
A low-budget way of doing this is:
This starts the program in a minimised console window, and doesn't wait for the second program to finish. | |||
|
feedback
|
|
Although not a definitive answer to your question there was a similar question on serverfault here: http://serverfault.com/questions/121979/tools-to-run-a-background-process-command-line-in-windows The closest thing in windows to the Linux & is described here from what I can tell: http://blog.commandlinekungfu.com/2009/04/episode-23-job-control.html | |||
|
feedback
|
cmd.exe, or powershell? – Matt Ball Nov 11 '10 at 1:13