w10install/scripts/block-updates.cmd

16 lines
350 B
Batchfile
Raw Normal View History

2023-01-22 22:32:07 +01:00
@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"
2023-01-29 17:23:17 +01:00
echo showing HIDDEN windows updates ...
powershell -command "Get-WindowsUpdate -IsHidden"
2023-01-22 22:32:07 +01:00
echo ####### %0 #######
pause