Difference between revisions of "Start vsigns srv.vbs"

From Vital Soft Wiki
Jump to: navigation, search
>Jeremyb
(Created page with "== Script that launches the Vital signs listener == Example of a modified listener path to Vital Signs : <pre> ' Start the Vital Signs Server ' (c) Copyright 2007-2009, Vita...")
 
>Johno
Line 1: Line 1:
 
== Script that launches the Vital signs listener ==
 
== Script that launches the Vital signs listener ==
  
 +
Vital Signs jobs communicate with the Vital Signs Windows server via a custom listener program that is started using a script called '''start_vsigns_srv.vbs'''.
 +
 +
In version 1.7 of Vital Signs, this file was moved from the <u>vitalsigns/bin</u> directory to <u>vitalsigns/CUNAME/bin</u> and the config file was also moved from <u>data/config</u> to the local bin directory.
 +
 +
This script should be started automatically.  Click here for instructions.
  
 
Example of a modified listener path to Vital Signs :
 
Example of a modified listener path to Vital Signs :
 
<pre>
 
<pre>
 
' Start the Vital Signs Server
 
' Start the Vital Signs Server
' (c) Copyright 2007-2009, Vital Soft, Inc.
+
' (c) Copyright 2007-2015, Vital Soft, Inc.
 +
' Version 1.7
 
Dim oShell
 
Dim oShell
 
Set oShell = CreateObject ("WScript.shell")
 
Set oShell = CreateObject ("WScript.shell")
oShell.run "cmd /K C:\Python25\python E:\vitalsigns\bin\vsigns_srv.py E:\vitalsigns\CU1\data\config\vsigns_srv.ini > E:\vitalsigns\CU1\data\config\vsigns_srv.log"
+
oShell.run "cmd /K C:\Python27\python E:\vitalsigns\bin\vsigns_srv.py E:\vitalsigns\CUNAME\bin\vsigns_srv.ini > E:\vitalsigns\CUNAME\bin\vsigns_srv.log"
 
Set oShell = Nothing
 
Set oShell = Nothing
 
</pre>
 
</pre>

Revision as of 00:44, 2 December 2015

Script that launches the Vital signs listener

Vital Signs jobs communicate with the Vital Signs Windows server via a custom listener program that is started using a script called start_vsigns_srv.vbs.

In version 1.7 of Vital Signs, this file was moved from the vitalsigns/bin directory to vitalsigns/CUNAME/bin and the config file was also moved from data/config to the local bin directory.

This script should be started automatically. Click here for instructions.

Example of a modified listener path to Vital Signs :

' Start the Vital Signs Server
' (c) Copyright 2007-2015, Vital Soft, Inc.
' Version 1.7
Dim oShell
Set oShell = CreateObject ("WScript.shell")
oShell.run "cmd /K C:\Python27\python E:\vitalsigns\bin\vsigns_srv.py E:\vitalsigns\CUNAME\bin\vsigns_srv.ini > E:\vitalsigns\CUNAME\bin\vsigns_srv.log"
Set oShell = Nothing