diff options
author | breadcat | 2020-07-05 18:17:57 +0100 |
---|---|---|
committer | breadcat | 2020-07-05 18:17:57 +0100 |
commit | 004961c0a812dca3bb4327e5970845b138994db4 (patch) | |
tree | 2fbf2a4ac02a0f3e81a7500cabb88bf71e419099 /0-win10prep.bat | |
parent | 06ca1b2a3d7f98b1a147d7d11a0585bcd00f538b (diff) | |
download | win10-prep-004961c0a812dca3bb4327e5970845b138994db4.tar.gz win10-prep-004961c0a812dca3bb4327e5970845b138994db4.tar.bz2 win10-prep-004961c0a812dca3bb4327e5970845b138994db4.zip |
Tidied unused local server sections
No longer use local server, so removed sections relating to it, also
removed activation as no longer running that server
Diffstat (limited to '0-win10prep.bat')
-rw-r--r-- | 0-win10prep.bat | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/0-win10prep.bat b/0-win10prep.bat index 671fbd5..a4b7c4e 100644 --- a/0-win10prep.bat +++ b/0-win10prep.bat @@ -25,29 +25,20 @@ if %errorLevel% == 0 ( ) rem Process -<NUL set /p=:: Activating Windows... -call "1-activation.bat" > nul -echo done <NUL set /p=:: System Tweaks... -call "2-tweaks.bat" > nul +call "1-tweaks.bat" > nul echo done <NUL set /p=:: Registry Tweaks... -call "3-registry.bat" > nul +call "2-registry.bat" > nul echo done <NUL set /p=:: Removing Programs... -call "4-remove.bat" > nul +call "3-remove.bat" > nul echo done <NUL set /p=:: Install Programs... -call "5-install.bat" > nul -echo done -<NUL set /p=:: Mounting Network... -call "6-network.bat" > nul -echo done -<NUL set /p=:: Windows Updates... -call "7-install.bat" > nul +call "4-install.bat" > nul echo done <NUL set /p=:: Clean Up... -call "8-clean.bat" > nul +call "5-clean.bat" > nul echo done rem complete |