All,We want to write an agent that tell us what are the tasks running on the server?
any idea.
Mike
All,We want to write an agent that tell us what are the tasks running on the server?
any idea.
Mike
Subject: Server Tasks
I think this will do the trick:
consoleReturn$ = notesSession.SendConsoleCommand( serverName$, consoleCommand$ )
Dim ses as New NotesSession
Dim strServerResponse as String
strServerResponse = ses.SendConsoleCommand(“Server1”, “show tasks”)
Subject: RE: Server Tasks
Thanks Cesar Mugnatto .