Bypass Windows 7 Extended Security Updates Eligibility

Discussion in 'Windows 7' started by abbodi1406, Nov 17, 2019.

  1. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,966
    125,937
    450
    #2681 Enthousiast, Apr 17, 2020
    Last edited: Apr 18, 2020
    1. What does the bypass show when you re-run it?
    2. Is KB4528069 installed? Check "Installed Updates".
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. Maxvictor

    Maxvictor MDL Novice

    Apr 10, 2020
    7
    7
    0
    I ran "wmic qfe list" and KB4528069 is NOT installed. Is this a pre-requisite? Not mentioned anywhere in readme file. Where do i get it? Cant find link anywhere.

    When i run LiveOS-Setup.cmd, nothing happens. I run from admin command prompt, it just runs with no error, no popup. Drops me back to prompt.

    I can see "findstr.exe" "reg.exe" "wmic.exe" "superuser64.exe" all run in process manager, so script is working but silently fails with no error.

    I also tried to stop wua service, delete c:\windows\softwaredistribution folder to reset cache, didnt help.

    C:\hotfix>LiveOS-Setup.cmd

    C:\hotfix>
     
  3. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,966
    125,937
    450
    #2683 Enthousiast, Apr 18, 2020
    Last edited: Apr 18, 2020
    It's not a prerequisite, it's the result of using v5. Or when it already is installed. no need for any bypass, except for WU patcher.
    Can you run it the normal way by right-click and run as admin?
    Check the AV logs to see if the AV interfered.

    And last but not least try v6 (check the OP and here for new information, specially the prerequisite updates).
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Maxvictor

    Maxvictor MDL Novice

    Apr 10, 2020
    7
    7
    0
    #2684 Maxvictor, Apr 18, 2020
    Last edited: Apr 18, 2020
    I am already running as admin user account. I tried right click method, it makes no difference. Black cmd popup for 2 seconds, then exit.

    I already said AV not running.

    Sorry but I have been doing IT for many years and cant figure this out :-(

    I really need a debug option so I can see exactly which part of batch script is failing on to cause it to exit.

    I can use SysInternals regmon and procmon to try and debug myself but its a pain, was just hoping there is a simple fix

    I would do every step in batch script manually 1 by 1 to see where is the error, but it is very complicated batch script and hard to read, one of the most complex scripts i have seen =D

    Must be running at least 1/4 of the way through script, since wmic has ran and that is 1/4 of the way into the script
     
  5. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,966
    125,937
    450
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. Maxvictor

    Maxvictor MDL Novice

    Apr 10, 2020
    7
    7
    0
    BypassESU-v6-AIO still not working for me, silent exit

    :'(

    I will try adding echo "1", "2", "3" >> log.txt into the script, so i can debug at each stage it runs, to find exactly where it fails.
     
  7. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,966
    125,937
    450
    One last thing, from what path did you run the cmd?

    nvm:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. Maxvictor

    Maxvictor MDL Novice

    Apr 10, 2020
    7
    7
    0
    #2688 Maxvictor, Apr 18, 2020
    Last edited: Apr 18, 2020
    I found missing %SystemRoot%\System32\sle.dll file ... or missing \bin\sle.dll file .... possible from old version of bypass ? Only \bin\sle64.dll and \bin\sle32.dll exists, but i think maybe earlier version had \bin\sle.dll

    So that explains why my "LiveOS-Setup.cmd" batch script runs then exits with no error, it calls "PatchWU.cmd" then quits due to missing sle.dll

    @setlocal DisableDelayedExpansion
    @echo off
    cd /d "%SystemRoot%\System32"
    if not exist sle.dll goto :eof
    if not exist "%~dp0bbe.exe" goto :eof

    goto :eof (will just silently exit with no error).

    @abbodi1406 can you please add error output if not exist, I dont even know how it is possible that my sle.dll disappeared, but i think also my %~dp0bbe.exe is missing too.

    Possibly this is just due to sle64.dll and bbe64.exe not getting properly renamed ?? Or maybe i dont understand .. in case sle and bbe should NOT exist..

    Also if i try and run manually

    C:\hotfix\bin>PatchWU.cmd PatchWU.xml

    I get error

    '"C:\hotfix\bin\bbe.exe"' is not recognized as an internal or external command, operable program or batch file.

    So if I make a copy of bbe64.exe and rename to \bin\bbe.exe than my PatchWU.cmd works successfully and exits back out to LiveOS-Setup.cmd but I have some other issue now ;)

    whoami /USER | find /i "S-1-5-18"
    I dont have any user S-1-5-18, only S-1-5-21

    Still continuing to debug ... line by line
     
  9. Skunk1966

    Skunk1966 MDL Member

    Jul 15, 2011
    198
    242
    10
    #2690 Skunk1966, Apr 18, 2020
    Last edited: Apr 18, 2020
    Del.
     
  10. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,966
    125,937
    450
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,966
    125,937
    450
    You probably mean the task for the WU patcher?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. AlexRaia

    AlexRaia MDL Junior Member

    Feb 15, 2020
    85
    11
    0
    Yes, just that.
    Is it indispensable or can it also be deactivated?
     
  13. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,966
    125,937
    450
    Afaik, it's there for keeping WU patched.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. AlexRaia

    AlexRaia MDL Junior Member

    Feb 15, 2020
    85
    11
    0
    Ok! I'll leave you .....
     
  15. FlyingLuka

    FlyingLuka MDL Novice

    Dec 15, 2019
    43
    16
    0
    #2699 FlyingLuka, Apr 19, 2020
    Last edited: Apr 19, 2020
    I am sorry for repeating again the same question, but I did not get any answer at the moment.
    In my case, given that WU showed me KB4550738 + KB4550964 that I correctly installed, I'm reading about some people here who manually installed KB550964 e KB550965.
    This is the question: if I did not missunderstand what I am reading, why do apply the KB550965 that is already included in the KB550964?
     
  16. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,966
    125,937
    450
    Because they don't read?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...