Exchange 2007 Creating new mail.que database

Exchange 2007 Creating new mail.que database: On HUB Servers: 1. Use get-queue command in shell or queue viewer to check that ques are empty. 2. Enter net pause MSExchangeTransport command. To stop the flow of new messages into the queues on the target Exchange transport server and allow the existing messages to be delivered 4. Use…

Filtering Message Tracking Log

Filtering message tracking log on the basis of sender & recipient can be easily achieved thru powershell: For example: you want to find mails where sender or recipents are from specific domain: Run the below powershell command on the hub server & export the results to comma separated file. Get-MessageTrackingLog -Server exchange-hub -EventId receive -Start “May…

Redirect http to https –OWA

Add the below code to index.html in IIS. <html> <head> <title>HTML Redirection to https:</title> <META HTTP-EQUIV=”Refresh” CONTENT=”1; URL=https://outlook.office.com/owa”> </head> <body> </body></html>

MailBox Report -Exchange 2007

Very well formated report in HTML format email to your email address: Taken from some other site but successfully tested. just change email address to your email address & ip address to ipaddress of your SMTP server.  $message = new-object System.Net.Mail.MailMessage(“email@email.com“, “email@email.com“) $message.IsBodyHtml = $True $message.Subject = “Automated E-Mail Quota Report” $smtp = new-object Net.Mail.SmtpClient(“ipaddress“)…