Open Source Your Knowledge, Become a Contributor

Technology knowledge has to be shared and made accessible for free. Join the movement.

Create Content

Processes in Windows

rem Example: start a new window to run a command
start cmd /c "echo poof"

rem Example: start a new window to run a command and pause
start cmd /c "echo poof && pause"

rem Example: start a command without creating a new window
start /b powershell "sleep 1; echo done"

rem Example: query the currently running processes
tasklist /FI "PID eq 4"
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content