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?

link|improve this question
cmd.exe, or powershell? – Matt Ball Nov 11 '10 at 1:13
feedback

3 Answers

You can:

  1. Use Windows Scheduler.
  2. Run the exe as a Windows service.

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.

link|improve this answer
feedback

A low-budget way of doing this is:

start /min some.exe

This starts the program in a minimised console window, and doesn't wait for the second program to finish.

link|improve this answer
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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.