No, CMD.EXE executes the commands in a pipe sequentially instead of concurrently. That means that youi can achieve a similar effect to the Unix tee (echoing to both stderr and stdout) but the tee executable won't run until after the previous executable finishes, so the output won't be displayed while the first program is running.
-PatP