How to run ’Load Convert’ command to replace the design of mail database via Lotus Script Agent?
- 29 Jan, 2012
-
Launch IBM Lotus Domino Designer
-
Create an agent
-
Specify the trigger set as: Action Menu Selection
-
Specify the Target as: None
-
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