Jump to content

Recommended Posts

Posted

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?


Posted
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...

Posted

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. :)

Posted

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

Posted

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! :)

Guest zippy
Posted
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?

Posted
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.

Posted

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.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

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