dev.kanngard.net make sure you visit my new blog at: johankanngard.net

Short tip: Server console commands from LotusScript

by Johan Känngård / [LotusScript] / 2002-10-20 / #33


To run a console command, without getting the output from it, you cold use the following lines in a server invoked agent:

Dim cmd As String
cmd = "tell http restart"
Dim i As Integer
i = Shell("nserver -c """ + cmd + """")