diff --git a/06_Copy2Stick.cmd b/06_Copy2Stick.cmd
index afaf912..5f4e741 100644
--- a/06_Copy2Stick.cmd
+++ b/06_Copy2Stick.cmd
@@ -95,8 +95,8 @@ if EXIST %SOURCES%\%IMAGE% (
 )
 
 :CONT
-echo.
 if EXIST tools (
+  echo.
   echo copying folder [ tools ] to drive %USBDRIVE% ...
   robocopy tools %USBDRIVE%\tools /COPY:DT /FFT /XO /256 /NJH /NJS /NDL /XF .gitignore
 )
@@ -116,6 +116,12 @@ for %%P in (scripts source optional personal) do (
   )
 )
 
+if EXIST settings.cmd (
+  echo.
+  echo copying settings file to drive %USBDRIVE% ...
+  copy /Y settings.cmd %USBDRIVE%\tools\scripts
+)
+
 echo.
 echo copying custom setup script to %USBDRIVE% ...
 copy /Y boot\CustomSetup.cmd %USBDRIVE%\
diff --git a/scripts/settings.cmd b/scripts/settings.cmd
deleted file mode 100644
index 245ad33..0000000
--- a/scripts/settings.cmd
+++ /dev/null
@@ -1,4 +0,0 @@
-set windows_updates=1
-set logon_logo=1
-set install_firefox=1
-
diff --git a/settings.cmd b/settings.cmd
index 9382235..c746c66 100644
--- a/settings.cmd
+++ b/settings.cmd
@@ -1,2 +1,5 @@
 set LANG=de-DE
+set windows_updates=1
+set logon_logo=1
+set install_firefox=1