Adding disclaimer to Domino R5/6

  Change the design of the Memo form in the MAIL.BOX file on the mail server(s). Warning: In the event that a future IBM Support incident is opened, please be aware that making customizations to the standard Domino templates results in an unsupported configuration. The first step in a Support incident with a customer who…

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“)…

Cluster Management

This script will report the replicas of databases on the cluster node, it uses cluster directory to enumerate information. Administrator can use this report & keep the cluster consistent. Sub Click(Source As Button) Dim session As New notessession Dim db As NotesDatabase Dim doccoll As NotesDocumentCollection Dim Allview As NotesView Dim doc As NotesDocument Dim tempdoc As NotesDocument Dim xlApp…