Dynamic Distribution Groups in bulk using powershell

Here is a small script written by me for creating  Dynamic Distribution Groups in bulk using powershell #import csv file (script.ps1  csv file) $data = import-csv $args[0] #create a vriable for holding condition  $str = new-object System.Text.Stringbuilder foreach ($i in $data) { # reagd filter (office value from csv file) $dgp = $i.filter $str = {(office -eq…

Moving an R&R database from one server to another

Taken From IBM Site: 1. Pull a new replica of the R&R database from the old server to the new server. 2. Open the access control list (ACL) of the R&R database on the new server. a) Change the Server ACL to the new server.  b) Set the Manager and [Create Resource] (if needed) ACL…

Lotus Domino Clustering Over Private LAN

Lotus Domino Clustering (Active /Active) All nodes have active copies of each database(.nsf files) High Level steps: Pre-requisites: Both server should have two NICs installed, one is Public network & other is Private Network. Configure TCPIP for both adapters 1. Install & configure Lotus Domino servers (Same Domino Domain) 2. Use Domino administrator Create a…

Excel macro for Changing the Email address in Lotus Domino

This macro when run can read the Excel file & replace the old email address in person record with new email address.   Excel Format: Macro:   Sub ModifyForwardingaddress() s.Initialize Dim extendedaddressbook As NotesDatabase Dim view As NotesView Dim result As NotesDocumentCollection Dim entry As NotesDocument Set extendedaddressbook = s.GetDatabase(“”, “xdir.nsf”, False) For i = 2…