.

HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1 212-599-2048

Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development

Facebook Twitter YouTube
Chat now       
.
ProductsDownloadsNewsAbout usContact


Need a Domino Consultant? Call NotesMail +1 212-599-2048 - HCLSoftware Business Partner

LOTUSSCRIPT/COM/OLE CLASSES


Examples: SendConsoleCommand method
This agent sends a console command to a server.

%INCLUDE "lsxbeerr.lss"

Sub Initialize
 Dim session As New NotesSession
 serverName$ = "mjr"
 consoleCommand$ = Inputbox$("Type command:", _
 "Send console command")
 consoleReturn$ = session.SendConsoleCommand( _
 serverName$, consoleCommand$)
 Messagebox consoleReturn$,, consoleCommand$
End Sub

See Also