Can't you make it yourself? You always ask others to do something. What's the difference between this and begging? If you ask others to work for you, shouldn't you pay them? In real life
I do not have knowledge of CPU bypasses for Windows 8.1. I'll tell you what I did to disable telemetry: Code: @echo off sc config "DiagTrack" start= demand net stop "DiagTrack" sc config "DiagTrack" start= disabled pause And for removing the End Of Support (EOS) notice: Code: @echo off REM Disable "End Of Support" notice on Windows 7 (After 2019-12 Updates) REM Run this in cmd (as admin) to stop the notice from displaying echo. taskkill /im EOSNotify.exe /f /t echo. schtasks /change /disable /tn "\Microsoft\Windows\Setup\EOSNotify" echo. schtasks /change /disable /tn "\Microsoft\Windows\Setup\EOSNotify2" pause>nul That last script was originally meant for Windows 7, but it also blocks the junk Microsoft added circa 2022-11 to Windows 8.1. My two cents.
You might want to try something like this for installing all msu updates in a folder. It will detect the architecture as well. Code: @echo off if "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set arch=x64) else (if "%PROCESSOR_ARCHITEW6432%"=="AMD64" (set arch=x64) else (set arch=x86)) for %%f in (*%arch%*.msu) do ( echo %%f Wusa.exe %%f /quiet /norestart ) ::shutdown.exe /r /t 60