rediretion and pipes in DOS shell cmd interpreter

Hello,

I am trying to accomplish the following.

Send the output of a command to the screen (this happens by default) as well as capture the output of the screen to a log file.

How can this be achieved in DOS command interpreter syntax.
Any ideas/suggesstions/indicators are greatly appreciated. Thanks.

Windows, AFAIK, doesn't have the capability ... i downloaded and installed Cygwin's tee.exe to get around this problem ... and other stuff ... :slight_smile:

This may be a workaround for anyone looking to do something similar

C:\temp>dir | find "zip" > output.txt | MORE output.txt

I realize this is an old post I'm replying to.