How to run ’Load Convert’ command to replace the design of mail database via Lotus Script Agent?

Share
  1. Launch IBM Lotus Domino Designer
  2. Create an agent
  3. Specify the trigger set as: Action Menu Selection
  4. Specify the Target as: None
  5. Copy and paste the following script into the Script Area:

    Dim session As New NotesSession

    Dim serverName, consoleCommand, consoleReturn as string                                  
    serverName = “xxxxxxxxxx/xxxxx”                                      
    consoleCommand = (“Load Convert -u mailxxxxx.nsf * xxxxxx.ntf”)    
    consoleReturn = session.SendConsoleCommand(serverName, consoleCommand)        
    Print consoleReturn,, consoleCommand

The information above is from TN 1577402