Jump to content

how to capture batch file output in log file?


Recommended Posts

For reasons of debugging I would like to capture the output of my installs.cmd and hotfixes.cmd into two logfiles on the desktop ready for inspection after installation finishes. I've tried many ways of doing so but they all have failed :)

I'm using this command to enable the output to a logfile:

>"%AllUsersProfile%\Desktop\installs.log" "%systemdrive%\install\installs.cmd"

Now it works just fine in the lab but not in a virtual machine. I know the cmdlines.txt and the RunOnceEx section of winnt.sif don't like the commands such as the above so I'll have them call a cmd file with the above method but they won't even start. I've checked for spelling mistakes, folders etc. There must be a way to do this...

How can I log the output of my hotfixes.cmd and installs.cmd?

Link to comment
Share on other sites


ECHO START BATCH 1 >> %SYSTEMDRIVE%\GM.LOG
BATCH1.CMD >> %SYSTEMDRIVE%\GM.LOG
ECHO START BATCH 2 >> %SYSTEMDRIVE%\GM.LOG
BATCH2.CMD >> %SYSTEMDRIVE%\GM.LOG
ECHO START BATCH 3 >> %SYSTEMDRIVE%\GM.LOG
BATCH3.CMD >> %SYSTEMDRIVE%\GM.LOG

That should outta work...

Link to comment
Share on other sites

Thanks GreenMachine,

that surely works, but the problem is simply this: It doesn't seem possible to use commands like this:

>"%AllUsersProfile%\Desktop\installs.log" "%systemdrive%\install\installs.cmd"

or the ones you suggested in the [COMMANDS] section of cmdlines.txt and in the [GuiRunOnce] section of winnt.sif. I've tried using batch files in these sections to call the commands but that didn't work either. :)

Link to comment
Share on other sites

If you want to overwrite the existing file:

copy blah.txt > log.txt

If you want to append an existing log file:

copy blah.txt >> log.txt

That's all you do.

-gosh

Link to comment
Share on other sites

I got it to work now. (A nights sleep helps things enormously...)

Apparently, it isn't possible to use the redirect command like this:

>logfile.log batch.cmd

Instead one has to use the old-fashioned command:

batch.cmd > logfile.log

Now that still doesn't work from within winnt.sif and cmdlines.txt so I had them call batch files with the respective commands, turn on @echo in the batch files and abfter fixing some paths it worked like a charm and I am now finding 2 nice log files on my desktop after installation.

Thanks again for the help! :)

Link to comment
Share on other sites

Guest zippy
Apparently, it isn't possible to use the redirect command like this:

>logfile.log batch.cmd

i'm noob, never find any redirect command like this...

where did this syntax came from?

Link to comment
Share on other sites

Apparently, it isn't possible to use the redirect command like this:

>logfile.log batch.cmd

i'm noob, never find any redirect command like this...

where did this syntax came from?

I found that syntax here.

Link to comment
Share on other sites

Attaboy, 996, I figured it was something like a nights sleep that was keeping you from seeing the light! You can use either > or >>, as noted above: just depends how many log files you want, and how many times you need to "call" it.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...