--- a
+++ b/Section 3 Simulate DIMSE/launch_orthanc.sh
@@ -0,0 +1,16 @@
+if [[ ! -e /opt/OrthancBuild ]]; then
+	echo "Setting up Orthanc. This may take a moment."
+    # Copy Orthanc Build out of mounted disk to solve Sqlite issues
+    cp -r /opt/aihcnd-applications/OrthancBuild /opt/OrthancBuild &
+    PID=$!
+    i=1
+    sp="/-\|"
+    echo -n ' '
+    while [ -d /proc/$PID ]
+    do
+      printf "\b${sp:i++%${#sp}:1}"
+      sleep 0.5
+    done
+fi
+
+/opt/OrthancBuild/Orthanc /opt/OrthancBuild/Configuration.json
\ No newline at end of file