Index: trunk/bin/systemstart_dev_practice_session.sh
===================================================================
--- trunk/bin/systemstart_dev_practice_session.sh	(revision 410)
+++ trunk/bin/systemstart_dev_practice_session.sh	(revision 410)
@@ -0,0 +1,12 @@
+#!/bin/sh
+# Start the Simulator System with the practice script
+cd ../webapps
+python -m CGIHTTPServer 8080 &
+sleep 1
+cd ..
+java -DPROP_FILE=cad_simulator_practice.properties -jar deploy/CADserver.jar &
+sleep 7
+java -jar deploy/SimManager.jar practice_script_2016.xml &
+# Manual step for now, until it's integrated into Sim Mgr
+cp scripts/practice_script_2016.xml webapps/dynamicdata/incident_script.xml
+
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 410)
@@ -0,0 +1,21 @@
+REM Start the Simulator System with the full incident script
+
+REM Start the webserver
+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\full_script_2016.xml webapps\dynamicdata\incident_script.xml
+
+REM Start the CAD server
+start java -jar deploy\CADserver.jar
+
+REM sleep for 5 seconds
+TIMEOUT /T 5
+
+REM Start the Simulation Manager and load the full script
+start java -jar deploy\SimManager.jar full_script_2016.xml 
+
+
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 410)
@@ -0,0 +1,21 @@
+REM Start the Simulator System with the practice script
+
+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 Start the CAD server
+start java -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
+
+
Index: trunk/bin/renamejars.bat
===================================================================
--- trunk/bin/renamejars.bat	(revision 384)
+++ trunk/bin/renamejars.bat	(revision 410)
@@ -3,3 +3,3 @@
 rename CADserver_* CADserver.jar
 rename SimManager_* SimManager.jar
-rename CADClient_* CADClient.jar
+rename CADclient_* CADclient.jar
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 410)
@@ -0,0 +1,15 @@
+#!/bin/sh
+# Start the Simulator System with the full incident script
+cd ../webapps
+echo "Starting webserver in folder" `pwd`
+python -m CGIHTTPServer 8080 &
+sleep 1
+cd ..
+java -jar deploy/CADserver.jar &
+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
+# Start a browser and run the web applications
+# firefox localhost:8080 &
+
Index: trunk/bin/renamejars.sh
===================================================================
--- trunk/bin/renamejars.sh	(revision 382)
+++ trunk/bin/renamejars.sh	(revision 410)
@@ -2,5 +2,5 @@
 # Rename deployed Jar files to production names
 cd ../deploy
-mv -i CADClient_* CADclient.jar
+mv -i CADclient_* CADclient.jar
 mv -i CADserver_* CADserver.jar
 mv -i SimManager_* SimManager.jar
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 410)
@@ -0,0 +1,21 @@
+REM Start the Simulator System with the practice script
+
+REM Start the webserver
+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
+
+REM sleep for 5 seconds
+TIMEOUT /T 5
+
+REM Start the Simulation Manager
+start java -jar deploy/SimManager.jar practice_script_2016.xml
+
+
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 410)
@@ -0,0 +1,21 @@
+REM Start the Simulator System with the full incident script
+
+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 Start the CAD server
+start java -jar deploy\CADserver.jar
+
+REM sleep for 5 seconds
+TIMEOUT /T 5
+
+REM Start the Simulation Manager and load the full script
+start java -jar deploy\SimManager.jar full_script_2016.xml 
+
+
Index: trunk/bin/systemstart_full_session.sh
===================================================================
--- trunk/bin/systemstart_full_session.sh	(revision 384)
+++ 	(revision )
@@ -1,15 +1,0 @@
-#!/bin/sh
-# Start the Simulator System with the full incident script
-cd ../webapps
-echo "Starting webserver in folder" `pwd`
-python -m CGIHTTPServer 8080 &
-sleep 1
-cd ..
-java -jar deploy/CADserver.jar &
-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
-# Start a browser and run the web applications
-# firefox localhost:8080 &
-
Index: trunk/bin/systemstart_practice_session.bat
===================================================================
--- trunk/bin/systemstart_practice_session.bat	(revision 384)
+++ 	(revision )
@@ -1,21 +1,0 @@
-REM Start the Simulator System with the practice script
-
-REM Start the webserver
-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
-
-REM sleep for 5 seconds
-TIMEOUT /T 5
-
-REM Start the Simulation Manager
-start java -jar deploy/SimManager.jar practice_script_2016.xml
-
-
Index: trunk/bin/systemstart_practice_session.sh
===================================================================
--- trunk/bin/systemstart_practice_session.sh	(revision 384)
+++ 	(revision )
@@ -1,12 +1,0 @@
-#!/bin/sh
-# Start the Simulator System with the practice script
-cd ../webapps
-python -m CGIHTTPServer 8080 &
-sleep 1
-cd ..
-java -DPROP_FILE=cad_simulator_practice.properties -jar deploy/CADserver.jar &
-sleep 7
-java -jar deploy/SimManager.jar practice_script_2016.xml &
-# Manual step for now, until it's integrated into Sim Mgr
-cp scripts/practice_script_2016.xml webapps/dynamicdata/incident_script.xml
-
Index: trunk/bin/systemstart_full_session.bat
===================================================================
--- trunk/bin/systemstart_full_session.bat	(revision 384)
+++ 	(revision )
@@ -1,21 +1,0 @@
-REM Start the Simulator System with the full incident script
-
-REM Start the webserver
-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\full_script_2016.xml webapps\dynamicdata\incident_script.xml
-
-REM Start the CAD server
-start java -jar deploy\CADserver.jar
-
-REM sleep for 5 seconds
-TIMEOUT /T 5
-
-REM Start the Simulation Manager and load the full script
-start java -jar deploy\SimManager.jar full_script_2016.xml 
-
-
