summaryrefslogtreecommitdiffstats
path: root/0-win10prep.bat
diff options
context:
space:
mode:
authorbreadcat2018-07-10 14:22:04 +0100
committerbreadcat2018-07-10 14:22:04 +0100
commitc8b8716bc349173deae7990901182fe8a376faf2 (patch)
tree5e36c7c34180527fedf1145bbf32e402e5e176dd /0-win10prep.bat
parent532a45ee7b68ee4f5606e1649380b3adf5e4d713 (diff)
downloadwin10-prep-c8b8716bc349173deae7990901182fe8a376faf2.tar.gz
win10-prep-c8b8716bc349173deae7990901182fe8a376faf2.tar.bz2
win10-prep-c8b8716bc349173deae7990901182fe8a376faf2.zip
Initial commit
Diffstat (limited to '0-win10prep.bat')
-rw-r--r--0-win10prep.bat34
1 files changed, 34 insertions, 0 deletions
diff --git a/0-win10prep.bat b/0-win10prep.bat
new file mode 100644
index 0000000..f9fd015
--- /dev/null
+++ b/0-win10prep.bat
@@ -0,0 +1,34 @@
+
+rem intro
+@echo off
+pushd "%~dp0"
+cls
+echo.
+echo :: Windows 10 Prep Script
+echo.
+echo Please review and be aware of what this script does before running it.
+echo There is no uninstaller, and backups won't be created.
+echo.
+echo You won't be prompted any further.
+echo Press [enter] to begin.
+echo.
+set /p=
+
+rem Process
+<NUL set /p= :: Activating Windows && call 1-activation.bat > nul && echo ...done!
+<NUL set /p= :: System Tweaks && call 2-tweaks.bat > nul && echo ...done!
+<NUL set /p= :: Registry Tweaks && call 3-tweaks.bat > nul && echo ...done!
+<NUL set /p= :: Removing Programs && call 4-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 && echo ...done!
+<NUL set /p= :: Clean Up && call 8-clean.bat > nul && echo ...done!
+
+rem complete
+cls
+echo.
+echo Script complete, restart whenever you fancy.
+echo Press [enter] to exit.
+set /P=
+:eof
+exit \ No newline at end of file