Hi, I need to get Domino directory and Domino data directory. I used OSGetExecutableDirectory()and OSGetDataDirectory() methods but they return only directories of local server and I need this info for all Domain’s servers. What C API I can use for this? Thanks. Roman
Subject: *Why would any other server or workstation need to know? I think you have to query each.
Subject: you could use remote console with show directory and NotesProgram or statistics values …
There is a C-API call for this and since D6 there is also a script function.
You can also use the new statistics values and query even the location of the notes.ini in D6
– Domino 5 –
Server.Path.Data = e:\notes\dus\02\data
– Domino 6 –
Server.Path.Configfile = e:\domino\data\60\notes.ini
Server.Path.Data = e:\domino\data\60
Server.Path.Executable = D:\Lotus\Domino\60\
And there is much more interesting stuff in the new statistics
– not only the new and enhanced platform stats…
Daniel