Update 8.1r2 patch packages?

Discussion in 'Windows 8' started by oyh023, Apr 6, 2025.

  1. oyh023

    oyh023 MDL Junior Member

    May 6, 2014
    52
    37
    0
    #1 oyh023, Apr 6, 2025
    Last edited: Apr 6, 2025
  2. wvv000

    wvv000 MDL Addicted

    Feb 21, 2019
    630
    718
    30
    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
     
  3. NewEraCracker

    NewEraCracker MDL Member

    Apr 19, 2011
    200
    245
    10
    #3 NewEraCracker, Apr 6, 2025
    Last edited: Apr 10, 2025
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. NewEraCracker

    NewEraCracker MDL Member

    Apr 19, 2011
    200
    245
    10
    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.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. oyh023

    oyh023 MDL Junior Member

    May 6, 2014
    52
    37
    0
  6. NewEraCracker

    NewEraCracker MDL Member

    Apr 19, 2011
    200
    245
    10
    #6 NewEraCracker, Apr 7, 2025
    Last edited: Apr 8, 2025
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. NewEraCracker

    NewEraCracker MDL Member

    Apr 19, 2011
    200
    245
    10
    #7 NewEraCracker, Apr 10, 2025
    Last edited: Apr 11, 2025
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. xrononautis

    xrononautis MDL Senior Member

    Mar 30, 2021
    382
    224
    10
    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
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...