diff --git a/Makefile b/Makefile
index 1cbb5783620adcdfc9150e6f45967f961bede1dc..48abd4c02effedfe418f57e371ebaeb803e62bc7 100644
--- a/Makefile
+++ b/Makefile
@@ -64,6 +64,7 @@ uninstall:
 	rm -rf /etc/${APP}
 	rm -f ${PREFIX}/bin/control
 	rm -f ${PREFIX}/bin/controluser
+	rm -f ${PREFIX}/bin/addremove
 	bash -c "./translate uninstall"
 clean:
 	rm -f \#* \.#* debian/*.substvars debian/*.log src/*~
diff --git a/src/freedombone-addremove b/src/freedombone-addremove
index d2b9c1dd329a5e8b2d804dd8c9c9b5eb0d2f1633..0f38e9b8f1593de848f2a6d773dbfe5d6bafdbf5 100755
--- a/src/freedombone-addremove
+++ b/src/freedombone-addremove
@@ -38,11 +38,13 @@ if [ -f /usr/bin/${PROJECT_NAME} ]; then
     PROJECT_INSTALL_DIR=/usr/bin
 fi
 
-source $PROJECT_INSTALL_DIR/${PROJECT_NAME}-vars
-
 COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
 CONFIGURATION_FILE=$HOME/${PROJECT_NAME}.cfg
 
+# Start including files
+
+source $PROJECT_INSTALL_DIR/${PROJECT_NAME}-vars
+
 UTILS_FILES=/usr/share/${PROJECT_NAME}/utils/${PROJECT_NAME}-utils-*
 for f in $UTILS_FILES
 do
@@ -55,6 +57,8 @@ do
   source $f
 done
 
+# End including files
+
 function mark_unselected_apps_as_removed {
     # Initially mark the apps not chosen on first install as being removed
     # otherwise they may be automatically installed on the next update
diff --git a/src/freedombone-controlpanel b/src/freedombone-controlpanel
index 0eef20e6160fe686ee8346ded707a04321f915d3..0a1df486fd67d61737c4e6a98a3a962e57ea184b 100755
--- a/src/freedombone-controlpanel
+++ b/src/freedombone-controlpanel
@@ -2135,7 +2135,7 @@ function menu_top_level {
             4) show_firewall;;
             5) reset_tripwire;;
             6) menu_app_settings;;
-            7) ${PROJECT_NAME}-addremove
+            7) /usr/local/bin/addremove
                if [ ! "$?" = "0" ]; then
                    any_key
                fi
diff --git a/src/freedombone-prepare-scripts b/src/freedombone-prepare-scripts
index 1c8551a1de9670903e944c45760d659bac118ea3..625ef296f23f87f32549e6d9192623154dafd591 100755
--- a/src/freedombone-prepare-scripts
+++ b/src/freedombone-prepare-scripts
@@ -34,12 +34,15 @@ cat /usr/local/bin/${PROJECT_NAME}-vars /usr/share/${PROJECT_NAME}/utils/${PROJE
 
 cat /tmp/includescripts /usr/local/bin/freedombone-controlpanel > /usr/local/bin/control
 cat /tmp/includescripts /usr/local/bin/freedombone-controlpanel-user > /usr/local/bin/controluser
+cat /tmp/includescripts /usr/local/bin/freedombone-addremove > /usr/local/bin/addremove
 
 sed -i '/# Start including files/,/# End including files/d' /usr/local/bin/control
 sed -i '/# Start including files/,/# End including files/d' /usr/local/bin/controluser
+sed -i '/# Start including files/,/# End including files/d' /usr/local/bin/addremove
 
 chmod +x /usr/local/bin/control
 chmod +x /usr/local/bin/controluser
+chmod +x /usr/local/bin/addremove
 
 rm /tmp/includescripts