Send Console Commands from LotusScript
This code shows how to send a console command to a Lotus Notes server from Lotus Script using the NSFRemoteConsole function from the C API. The user ID that this runs under needs remote console access which is granted in the Administrator field of the server document. In my example, I force the AdminP process on a server to process all requests, but this can be useful to force replication, logging of statistics, etc.



Download: IT Certifications 101
Inside this exclusive essential guide, our independent experts break down which IT certifications are worth your time and effort, and how to get started obtaining them to further your career— including specific certifications that any cloud or desktop pro should seriously consider.
By submitting your personal information, you agree that TechTarget and its partners may contact you regarding relevant content, products and special offers.
You also agree that your personal information may be transferred and processed in the United States, and that you have read and agree to the Terms of Use and the Privacy Policy.
Code: (Declarations)
Declare Function NSFRemoteConsole Lib "nnotes.dll" _
(Byval ServerName As String, _
Byval ConsoleCommand As String, _
rethBuffer As Long) As Integer
Sub SendConCMD
Dim api_res As Integer
Dim hBuf As Long
'Send the console command TELL ADMINP PROCESS ALL to server SALES01
api_res = NSFRemoteConsole("SALES01", "TELL ADMINP PROCESS ALL", hBuf)
End Sub
Start the conversation
0 comments