Log Files

J

joe

Is there a way for me to log everything that happens in a
batch file from start to finish?

Thanks,

Joe
 
J

Jonathan de Boyne Pollard

j> Is there a way for me to log everything that happens
j> in a batch file from start to finish?

Yes. There are several, in fact.
 
T

Tim Hill

Run the fil eunder it's own CMD.EXE and redirect stdout & stderr:

cmd /c "foo.bat" >foo.log 2>&1

You can also tinker with various options for running the file via START.

-Tim
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top