Exchange DAG Backup Reporting

Hi Readers, We have written a nice script that will report backup status of Exchange Dag databases , this can be scheduled via task scheduler. Extract the Zip file from below link, change below parameters as per your environment & run the batch file. https://github.com/VikasSukhija/Downloads/blob/master/Exchangedbbkfreporting.zip —————————————————————— $SMTPServer = “smtpserver” $emailFrom = “backupstatus@labtest.com” $emailTo = “vikassukhija@labtest.com”…

Search and Delete Messages from User Mailboxes – Exchange 2010

Hi Readers, Today I am sharing the method to remove messages from exchange mailboxes. Note:- Indexing should be working fine otherwise there would be issues in removing messages from mailboxes. Create a CSV file for user mailboxes on which you want to take action: Just logging:  import-csv c:\tmp\Messagesubject.csv | foreach {Search-Mailbox $_.alias -SearchQuery subject:“Vikas Sukhija Schedule”…

Message Tracking Multiple users

Hi Readers, Today I am sharing a script that reads list of users from CSV file & extract message tracking logs based on the dates mentioned in CSV. Here is the example CSV file: & here are the results in log folder that will be received after script execution Download & extract the zip file from…

Outlook/Exchange Meeting Reminder Bug

Hello Readers, Sharing a issue which is common in almost all current versions of exchange(2007,2010 & 2013). When user sends a meeting invite to other people ( We faced in case of all day event) with reminder set as none. On invitees end, after accepting the meeting reminder, it is set to default 15 minutes…