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”…

Sharepoint Content Database Size Report

Hi Readers, Today I am sharing a script which we have used to extract content database size report across multiple farms. First of all enable ps remoting on sharepoint farms so that script can be executed remotely, follow below article. Enable Powershell Re-moting for SharePoint 2010 Now next step is download & extract the zip…