summaryrefslogtreecommitdiffstats
path: root/0-win10prep.bat
blob: ef9997f365d4ed3728f1bd956338787f10313fcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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-registry.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
echo.
echo  :: Script complete
echo.
echo     Restart whenever you fancy.
echo     Press [enter] to exit.
echo.
set /p=
:eof
exit