added powershell UPDATE BLOCKER

This commit is contained in:
Michael H.G. Schmidt 2023-01-22 22:32:07 +01:00
parent 2573273bb0
commit 2ba1827365
3 changed files with 41 additions and 8 deletions

View File

@ -0,0 +1,15 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
echo ####### %0 #######
echo blocking UPDATE KB5005463 aka. PC-Health ...
powershell -command "Hide-WindowsUpdate -KBArticleID KB5005463 -AcceptAll"
echo showing WINDOWS updates ...
powershell -command "Get-WindowsUpdate"
echo ####### %0 #######
pause

View File

@ -0,0 +1,18 @@
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
echo ####### %0 #######
echo Installing package provider "NuGet" ...
powershell -command "Install-PackageProvider NuGet -Force"
echo Setting policy for "PSGallery" to "trusted" ...
powershell -command "Set-PSRepository PSGallery -InstallationPolicy Trusted"
echo Installing powershell package "PSWindowsUpdate" ...
powershell -command "Install-Module PSWindowsUpdate"
echo.
echo ####### %0 #######
pause

View File

@ -178,14 +178,6 @@ rem should be done as late as possible ...
call install-logonscript.cmd
echo.
echo add full access rights to all users on public icons ...
icacls %PUBLIC%\Desktop\*.lnk /grant Users:F
echo.
echo removing read-only flag on tools folder ...
attrib /S /D -R %TOOLS%\*
echo.
echo #####################
echo ### DISABLE tasks ###
echo #####################
@ -234,6 +226,14 @@ rem ... remove stupid public folders
call cleanup-publicdir.cmd
echo.
echo add read access rights to all users on public icons ...
icacls %PUBLIC%\Desktop\*.lnk /grant Users:R
echo.
echo removing read-only flag on tools folder ...
attrib /S /D -R %TOOLS%\*
echo.
date /t
time /t
echo ####### %0 #######