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

Redirect SharePoint Page to different url

Hi Readers, Today I am sharing a Tip that can be used to redirect one share-point site url to other. First create text file with below content <meta http-equiv=”Refresh” content=”5; url=Site url”> Note:– Url is the site page url to which you want to redirect. Now upload this text file in document library of the site…

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