In a situation where a webserver is serving >100 websites, that machine being migrated to new hardware using imaging, the new machine brought up running at a new IP address, dns changed from old to new, and a few days later the old hardware was stopped; you end up with web server log files that have duplicates (first day up to image creation moment) and unique values over 2 different files.
Removing duplicates seems theoretically possible by using sql distinct: logparser.exe -i:iisw3c "select distinct * into combo.log from fileone.log, filetwo.log" -o:iisw3c
Question: is there a shortcut command for walking down all directories, and combining identical named files? In our situation we could use something like: logparser.exe -i:iisw3c "select distinct * into e:\inetpub\logs\*as input*\ex*as input*.log from e:\inetpub\logs2\*input*\ex*input*.log, e:\inetpub\logs\*as input*\ex*as input*.log" -o:iisw3c