This helped me tremendously in creating a report of what Quest’s Groupwise Migration tool creates. Quest has a great tool to look at the logs after a migration, but no ability to create a simple list of warnings and errors for each user. If you edit their log file, it’s organized by user with line by line description of warnings and errors, but it creates a line for each message that goes accross and I only want the Warnings and Errors. In PowerShell, this creates a new file without the thousands of lines saying “Getting more attributes for message”
(type grp2migrate02.wlog) -notmatch "Getting more attributes for message" | out-file newlog.txt
I could then open log in wordpad and copy and paste each user’s section into an email to send to the client.