Linux – n analog of Bash’s Ctrl+Z & fg in Powershell

bashlinuxpowershellwindows

I find the combination of Ctrl+Z with subsequent fg on Bash very handy, it's like a command line analog of alt+tab, so I can switch from viewing one file to the output of a running process etc.

Is there an analog for Windows Powershell? I can't google anything but the "pause" which just stops the current running process but doesn't let me switch to the command line and then back.

Best Answer

Yes, sort of - using the psjob commands (requires Powershell 2)

http://richardspowershellblog.wordpress.com/2007/12/03/background-jobs/

Edit: The site has the names wrong. It's 'start-job' instead of 'start-psjob'

See 'help start-job' for the complete (and correct) information.