From dcadfaeedb42826335171338f366896722d0cc70 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Sun, 7 Mar 2021 17:33:31 +0100 Subject: [PATCH] added settings file --- scripts/autoconfig-all.cmd | 12 ++++++++++-- scripts/settings.cmd | 2 ++ 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 scripts/settings.cmd diff --git a/scripts/autoconfig-all.cmd b/scripts/autoconfig-all.cmd index f4b319d..c6b1bb0 100644 --- a/scripts/autoconfig-all.cmd +++ b/scripts/autoconfig-all.cmd @@ -15,6 +15,12 @@ date /t time /t echo. +echo loading settings ... +call settings.cmd +echo windows_updates=%windows_updates% +echo. +echo ++++++++++++++++++ + echo creating %T% ... mkdir %T% 1>nul 2>nul @@ -44,8 +50,10 @@ call copy-exefiles.cmd echo. rem this must be done EARLY! -call disable-updates.cmd -echo. +if %windows_updates% == 0 ( + call disable-updates.cmd + echo. +) rem allow execution of any powershell script ... powershell -Command "Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine" diff --git a/scripts/settings.cmd b/scripts/settings.cmd new file mode 100644 index 0000000..09ecc08 --- /dev/null +++ b/scripts/settings.cmd @@ -0,0 +1,2 @@ +set windows_updates=1 +