This commit is contained in:
Michael H.G. Schmidt 2023-02-15 18:32:14 +01:00
parent 7cfb827307
commit 5c82738e1e
2 changed files with 36 additions and 1 deletions

View File

@ -0,0 +1,28 @@
@echo off
set T=c:\TEMP
set TOOLS=c:\tools
set ZIP=..\software\MACDRIVER.zip
if NOT EXIST %ZIP% (
echo ERROR: %ZIP% not found!
exit /b
)
echo ####### %0 #######
echo unpacking iMAC drivers ...
%TOOLS%\7z x -y -aoa -o"%T%" %ZIP%
echo renaming ...
move /Y %T%\WindowsSupport %T%\MACDRIVER
echo.
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo INFO: iMAC drivers extracted to path [ %T%\MACDRIVER ]
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo.
echo ####### %0 #######
pause

View File

@ -6,16 +6,23 @@ echo ####### %0 #######
echo blocking UPDATE KB5005463 aka. PC-Health ...
powershell -command "Hide-WindowsUpdate -KBArticleID KB5005463 -AcceptAll"
echo.
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 blocking UPDATE KB5013942 ...
echo [ Cumulative Update for Windows 10 Version 20H2 x64 ]
powershell -command "Hide-WindowsUpdate -KBArticleID KB5013942 -AcceptAll"
echo.
echo blocking a hardware driver ...
echo [ Advanced Micro Devices ]
powershell -command "Hide-WindowsUpdate -KBArticleID 'Advanced Micro Devices, Inc. - Display - 31.0.12027.7000' -AcceptAll"
echo.
echo showing HIDDEN windows updates ...
powershell -command "Get-WindowsUpdate -IsHidden"