diff options
author | breadcat | 2019-02-14 16:48:04 +0000 |
---|---|---|
committer | breadcat | 2019-02-14 16:48:04 +0000 |
commit | ab7e10978d50bf24bbd11bb3953e205d60f0eafd (patch) | |
tree | 407c17684c4683d77e1f388cfd213a211a37f8b5 /0-win10prep.bat | |
parent | eaff701b2f3e1bff2f4290ad2fb12c567130b98d (diff) | |
download | win10-prep-ab7e10978d50bf24bbd11bb3953e205d60f0eafd.tar.gz win10-prep-ab7e10978d50bf24bbd11bb3953e205d60f0eafd.tar.bz2 win10-prep-ab7e10978d50bf24bbd11bb3953e205d60f0eafd.zip |
Fix broken call operations
Diffstat (limited to '0-win10prep.bat')
-rw-r--r-- | 0-win10prep.bat | 42 |
1 files changed, 30 insertions, 12 deletions
diff --git a/0-win10prep.bat b/0-win10prep.bat index f9fd015..8f05d76 100644 --- a/0-win10prep.bat +++ b/0-win10prep.bat @@ -15,20 +15,38 @@ 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! +<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= +echo :: Script complete +echo. +echo Restart whenever you fancy. +echo Press [enter] to exit. +echo. +set /p= :eof exit
\ No newline at end of file |