This must be run from an hcitcl prompt on your Cloverleaf server.
The path to $env(HCIROOT)/bin must be in your “PATH” environment variable to execute hciprocstatus without a full path to the executable.
On a Unix/Linux, you can list the elements of the PATH environment variable like this:
foreach p [split $env(PATH) “:”] { puts “p= $p” }
On Windows, just change the colon to semicolon like this:
foreach p [split $env(PATH) “;”] { puts “p= $p” }
Assuming you’re running some sort of Unix/Linux variant, you can check existence of the executable from an hcitcl prompt (on your Cloverleaf server) like this:
file exists “[file join $env(HCIROOT) bin hciprocstatus]”
I’m not running Cloverleaf on Windows, but I assume the command file has a .exe extension. So, the following will probably work on Windows.
file exists “[file join $env(HCIROOT) bin hciprocstatus.exe]”
Jeff Dinsmore
Chesapeake Regional Healthcare