w10install/optional/block-updates.cmd
Michael H.G. Schmidt 76780465b8 bugfix
2023-01-31 20:49:23 +01:00

21 lines
557 B
Batchfile

@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 blocking UPDATE KB5021751 ...
echo [ Notifies Microsoft if an Unsupported Office version is installed on Windows ]
powershell -command "Hide-WindowsUpdate -KBArticleID KB5021751 -AcceptAll"
echo.
echo showing HIDDEN windows updates ...
powershell -command "Get-WindowsUpdate -IsHidden"
echo ####### %0 #######
pause