Is there anyway to get msiexec to echo to stdout instead of logging to a file
- by mrmrcoleman
As part of a continuous delivery pipeline I'd like to install an msi on a given machine. msiexec plus psexec does this perfectly, but it seems that msiexec can only log to a file and I need it to log to stdout/stderr.
Right now, to get the output back into our CI software I'll have to add a second step to echo the contents of the log, which seems a bit pointless.
Has anybody faced this issue before (and overcome it?)
Thanks in advance for any help here.
Mark