Index: trunk/bin/mkunifiedloggerzip.sh
===================================================================
--- trunk/bin/mkunifiedloggerzip.sh	(revision 514)
+++ trunk/bin/mkunifiedloggerzip.sh	(revision 514)
@@ -0,0 +1,7 @@
+#!/bin/bash
+# Package the unified logger service for deployment
+# Execute this script from the bin folder
+
+zip -r -j ../webapps/unifiedlogger.zip ../src/python/unifiedlogger/*.py
+chmod +x ../webapps/unifiedlogger.zip
+echo "Packaging completed"
Index: trunk/bin/systemstart_dev_full_session.bat
===================================================================
--- trunk/bin/systemstart_dev_full_session.bat	(revision 410)
+++ trunk/bin/systemstart_dev_full_session.bat	(revision 514)
@@ -1,3 +1,6 @@
 REM Start the Simulator System with the full incident script
+
+# Delete any existing CADcomments.log
+del ../webapps/dynamicdata/CADcomments.log
 
 REM Start the webserver
@@ -5,11 +8,8 @@
 cd webapps & start C:\Python27\python -m CGIHTTPServer 80
 
-REM Copy the desired incident script to the web directory so it
-REM is available for the EInotebook.  
-cd ..
-copy /y scripts\full_script_2016.xml webapps\dynamicdata\incident_script.xml
 
 REM Start the CAD server
-start java -jar deploy\CADserver.jar
+cd ..
+start java -DCONFIG_DIR=config/dev -jar deploy\CADserver.jar
 
 REM sleep for 5 seconds
@@ -19,3 +19,16 @@
 start java -jar deploy\SimManager.jar full_script_2016.xml 
 
+REM sleep for 5 seconds
+TIMEOUT /T 5
 
+REM Start Unified Logger Service
+start C:\Python27\python deploy\unifiedlogger.zip
+
+REM Launch a browser with our webapps
+"C:\Program Files\Mozilla Firefox\firefox.exe" localhost:80/einotebook  localhost:80/cptms localhost:80/unifiedlogmonitor.html
+
+REM sleep for 5 seconds
+TIMEOUT /T 5
+
+REM Start the CAD client
+start java -jar deploy\CADclient.jar
Index: trunk/bin/systemstart_production_practice_session.bat
===================================================================
--- trunk/bin/systemstart_production_practice_session.bat	(revision 410)
+++ trunk/bin/systemstart_production_practice_session.bat	(revision 514)
@@ -1,14 +1,10 @@
 REM Start the Simulator System with the practice script
+REM Assumes Apache webserver is running on mapped drive W:
 
-REM Start the webserver
-REM cd ..\webapps
-REM start C:\Python27\python -m CGIHTTPServer 80
-
-REM Copy the desired incident script to the web directory so it
-REM is available for the EInotebook.  
-cd ..
-copy /y scripts\practice_script_2016.xml w:\\webapps\\dynamicdata\\incident_script.xml
+REM Delete any existing CADcomments.log
+del w:\webapps\dynamicdata\CADcomments.log
 
 REM Start the CAD server
+cd ..
 start java -DPROP_FILE=cad_simulator_practice.properties -jar deploy/CADserver.jar
 
@@ -19,3 +15,7 @@
 start java -jar deploy/SimManager.jar practice_script_2016.xml
 
+REM sleep for 5 seconds
+TIMEOUT /T 5
 
+REM Launch a browser with our webapps
+"C:\Program Files (x86)\Mozilla Firefox\firefox.exe" webapps.tmcsim/einotebook  webapps.tmcsim/cptms webapps.tmcsim/unifiedlogmonitor.html
Index: trunk/bin/systemstart_dev_full_session.sh
===================================================================
--- trunk/bin/systemstart_dev_full_session.sh	(revision 410)
+++ trunk/bin/systemstart_dev_full_session.sh	(revision 514)
@@ -1,5 +1,9 @@
 #!/bin/sh
 # Start the Simulator System with the full incident script
+
 cd ../webapps
+# Delete any existing CADcomments.log
+del dynamicdata/CADcomments.log
+# Delete start the local webserver
 echo "Starting webserver in folder" `pwd`
 python -m CGIHTTPServer 8080 &
@@ -9,7 +13,9 @@
 sleep 10
 java -jar deploy/SimManager.jar full_script_2016.xml &
-# Manual step for now, until it's integrated into Sim Mgr
-cp scripts/full_script_2016.xml webapps/dynamicdata/incident_script.xml
+sleep 10
 # Start a browser and run the web applications
-# firefox localhost:8080 &
+firefox localhost:8080 &
+sleep 10
+java -jar deploy/CADclient.jar &
+sleep 5
 
Index: trunk/bin/systemstart_dev_practice_session.bat
===================================================================
--- trunk/bin/systemstart_dev_practice_session.bat	(revision 410)
+++ trunk/bin/systemstart_dev_practice_session.bat	(revision 514)
@@ -1,21 +1,34 @@
 REM Start the Simulator System with the practice script
 
+# Delete any existing CADcomments.log
+del ..\webapps\dynamicdata\CADcomments.log
+
 REM Start the webserver
-cd ..\webapps
-start C:\Python27\python -m CGIHTTPServer 80
+cd ..
+cd webapps & start C:\Python27\python -m CGIHTTPServer 80
 
-REM Copy the desired incident script to the web directory so it
-REM is available for the EInotebook.  
-cd ..
-copy /y scripts\practice_script_2016.xml webapps\dynamicdata\incident_script.xml
 
 REM Start the CAD server
-start java -DPROP_FILE=cad_simulator_practice.properties -jar deploy/CADserver.jar
+cd ..
+start java -DCONFIG_DIR=config/dev -DPROP_FILE=cad_simulator_practice.properties -jar deploy\CADserver.jar
 
 REM sleep for 5 seconds
 TIMEOUT /T 5
 
-REM Start the Simulation Manager
-start java -jar deploy/SimManager.jar practice_script_2016.xml
+REM Start the Simulation Manager and load the practice script
+start java -jar deploy\SimManager.jar practice_script_2016.xml 
 
+REM sleep for 5 seconds
+TIMEOUT /T 5
 
+REM Start Unified Logger Service
+start C:\Python27\python deploy\unifiedlogger.zip
+
+REM Launch a browser with our webapps
+"C:\Program Files\Mozilla Firefox\firefox.exe" localhost:80/einotebook  localhost:80/cptms localhost:80/unifiedlogmonitor.html
+
+REM sleep for 5 seconds
+TIMEOUT /T 5
+
+REM Start the CAD client
+start java -jar deploy\CADclient.jar
Index: trunk/bin/systemstart_production_full_session.bat
===================================================================
--- trunk/bin/systemstart_production_full_session.bat	(revision 410)
+++ trunk/bin/systemstart_production_full_session.bat	(revision 514)
@@ -1,14 +1,10 @@
 REM Start the Simulator System with the full incident script
+REM Assumes Apache webserver is running on mapped drive W:
 
-REM Start the webserver
-rem cd ..
-rem cd webapps & start C:\Python27\python -m CGIHTTPServer 80
-
-REM Copy the desired incident script to the web directory so it
-REM is available for the EInotebook.  
-cd ..
-copy /y scripts\full_script_2016.xml w:\\webapps\\dynamicdata\\incident_script.xml
+REM Delete any existing CADcomments.log
+del w:\webapps\dynamicdata\CADcomments.log
 
 REM Start the CAD server
+cd ..
 start java -jar deploy\CADserver.jar
 
@@ -19,3 +15,7 @@
 start java -jar deploy\SimManager.jar full_script_2016.xml 
 
+REM sleep for 5 seconds
+TIMEOUT /T 5
 
+REM Launch a browser with our webapps
+"C:\Program Files (x86)\Mozilla Firefox\firefox.exe" webapps.tmcsim/einotebook  webapps.tmcsim/cptms webapps.tmcsim/unifiedlogmonitor.html
