996 Posted June 29, 2004 Posted June 29, 2004 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?
GreenMachine Posted June 29, 2004 Posted June 29, 2004 ECHO START BATCH 1 >> %SYSTEMDRIVE%\GM.LOGBATCH1.CMD >> %SYSTEMDRIVE%\GM.LOGECHO START BATCH 2 >> %SYSTEMDRIVE%\GM.LOGBATCH2.CMD >> %SYSTEMDRIVE%\GM.LOGECHO START BATCH 3 >> %SYSTEMDRIVE%\GM.LOGBATCH3.CMD >> %SYSTEMDRIVE%\GM.LOGThat should outta work...
996 Posted June 29, 2004 Author Posted June 29, 2004 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.
gosh Posted June 29, 2004 Posted June 29, 2004 If you want to overwrite the existing file:copy blah.txt > log.txtIf you want to append an existing log file:copy blah.txt >> log.txtThat's all you do.-gosh
sleepnmojo Posted June 29, 2004 Posted June 29, 2004 Do the commands run and the output is just not placed in the log file?Have you also tried redirecting the stderr output as well? I believe it is >&.
996 Posted June 30, 2004 Author Posted June 30, 2004 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.cmdInstead one has to use the old-fashioned command:batch.cmd > logfile.logNow 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 June 30, 2004 Posted June 30, 2004 Apparently, it isn't possible to use the redirect command like this:>logfile.log batch.cmdi'm noob, never find any redirect command like this...where did this syntax came from?
996 Posted June 30, 2004 Author Posted June 30, 2004 Apparently, it isn't possible to use the redirect command like this:>logfile.log batch.cmdi'm noob, never find any redirect command like this...where did this syntax came from? I found that syntax here.
996 Posted June 30, 2004 Author Posted June 30, 2004 thanks for the syntax link...Anytime, zippy. You way also want to check this site for some infos on redirecting batch output.
GreenMachine Posted June 30, 2004 Posted June 30, 2004 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.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now