This commit is contained in:
Michael H.G. Schmidt 2023-01-31 20:49:23 +01:00
parent 6eca5e86ba
commit 76780465b8
3 changed files with 18 additions and 23 deletions

View File

@ -1,4 +1,6 @@
@echo off @echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
echo ####### %0 ####### echo ####### %0 #######
@ -14,4 +16,5 @@ echo showing HIDDEN windows updates ...
powershell -command "Get-WindowsUpdate -IsHidden" powershell -command "Get-WindowsUpdate -IsHidden"
echo ####### %0 ####### echo ####### %0 #######
pause

View File

@ -73,28 +73,28 @@ rem 7-zip is essential for other scripts ...
call unpack-7zip.cmd call unpack-7zip.cmd
echo. echo.
rem windows update blocker is in the zipfiles ...
call unpack-zipfiles.cmd
echo.
rem unpack powershell packages and register them ...
call unpack-pspackages.cmd
echo.
rem put vnc in place ... rem put vnc in place ...
call unpack-vnc.cmd call unpack-vnc.cmd
echo. echo.
rem unpack all the other zipfiles ...
call unpack-zipfiles.cmd
echo.
rem copy some other stuff ... rem copy some other stuff ...
call copy-executables.cmd call copy-executables.cmd
echo. echo.
rem unpack powershell packages and register them ...
call unpack-pspackages.cmd
echo.
echo ####################### echo #######################
echo ### MODIFICATIONS ### echo ### MODIFICATIONS ###
echo ####################### echo #######################
echo. echo.
rem this must be done EARLY! rem block updates - this must be done EARLY!
if %windows_updates% == 0 ( if %windows_updates% == 0 (
call disable-updates.cmd call disable-updates.cmd
echo. echo.
@ -205,20 +205,6 @@ echo.
powershell -command .\disable-soundscheme.ps1 powershell -command .\disable-soundscheme.ps1
echo. echo.
echo #####################
echo ### UPDATES tasks ###
echo #####################
echo.
rem enable updates again ...
if %windows_updates% == 1 (
call enable-updates.cmd
echo.
)
call block-updates.cmd
echo.
echo ##################### echo #####################
echo ### CLEANUP tasks ### echo ### CLEANUP tasks ###
echo ##################### echo #####################
@ -252,6 +238,12 @@ echo removing read-only flag on tools folder ...
attrib /S /D -R %TOOLS%\* attrib /S /D -R %TOOLS%\*
echo. echo.
rem enable updates again (doing it as late as possible) ...
if %windows_updates% == 1 (
call enable-updates.cmd
echo.
)
date /t date /t
time /t time /t
echo ####### %0 ####### echo ####### %0 #######

Binary file not shown.