[SOLVED] Windows Update keeps starting, despite being disabled?

Discussion in 'Windows 10' started by scaramonga, Nov 26, 2017.

  1. ancestor(v)

    ancestor(v) Admin Staff Member

    Joined:
    Jun 26, 2007
    Messages:
    2,785
    Likes Received:
    5,317
    Trophy Points:
    90
    3 days off. Back to topic now.
     
  2. TairikuOkami

    TairikuOkami MDL Expert

    Joined:
    Mar 15, 2014
    Messages:
    1,057
    Likes Received:
    926
    Trophy Points:
    60
    No way, I hate cats, they are bossy. :nono2:
     
  3. wyatt23

    wyatt23 MDL Member

    Joined:
    Apr 2, 2017
    Messages:
    112
    Likes Received:
    60
    Trophy Points:
    10
  4. pf100

    pf100 MDL Expert

    Joined:
    Oct 22, 2010
    Messages:
    1,906
    Likes Received:
    3,055
    Trophy Points:
    60
    Thank you for your bug reports.
     
  5. wyatt23

    wyatt23 MDL Member

    Joined:
    Apr 2, 2017
    Messages:
    112
    Likes Received:
    60
    Trophy Points:
    10
    Not me, just pointed you to others that have. :)
     
  6. pf100

    pf100 MDL Expert

    Joined:
    Oct 22, 2010
    Messages:
    1,906
    Likes Received:
    3,055
    Trophy Points:
    60
    It's the little things that make the big things possible ;)
     
  7. wyatt23

    wyatt23 MDL Member

    Joined:
    Apr 2, 2017
    Messages:
    112
    Likes Received:
    60
    Trophy Points:
    10
    Every little helps said the boy who peed in the swimming pool :D
     
  8. scaramonga

    scaramonga MDL Member

    Joined:
    Oct 27, 2012
    Messages:
    248
    Likes Received:
    118
    Trophy Points:
    10
  9. pf100

    pf100 MDL Expert

    Joined:
    Oct 22, 2010
    Messages:
    1,906
    Likes Received:
    3,055
    Trophy Points:
    60
  10. scaramonga

    scaramonga MDL Member

    Joined:
    Oct 27, 2012
    Messages:
    248
    Likes Received:
    118
    Trophy Points:
    10
    It works even better than before :D Thank you!

    Just one little thing my friend. WUMT now starts full screen. Any way to change this? 3440x1440 is a bit large for my eyes, lol :p
     
  11. rpo

    rpo MDL Expert

    Joined:
    Jan 3, 2010
    Messages:
    1,166
    Likes Received:
    990
    Trophy Points:
    60
    #72 rpo, Dec 3, 2017
    Last edited: Dec 4, 2017
    The last statement of the script is :
    Start "" /max "%wumt%" -update "-onclose %~dp0wub.exe /D /P"
    Replace by :
    Start "" /min "%wumt%" -update "-onclose %~dp0wub.exe /D /P"
    or :
    Start "" "%wumt%" -update "-onclose %~dp0wub.exe /D /P"
    at your convenience.

    Remark : the /min parameter means minimize to taskbar. IMHO this is not suitable. I suggest using :
    Start "" "%wumt%" -update "-onclose %~dp0wub.exe /D /P"
     
  12. pf100

    pf100 MDL Expert

    Joined:
    Oct 22, 2010
    Messages:
    1,906
    Likes Received:
    3,055
    Trophy Points:
    60
    Thanks. Mark this thread solved. And rpo covered the maximized WUMT window solution.
     
  13. wyatt23

    wyatt23 MDL Member

    Joined:
    Apr 2, 2017
    Messages:
    112
    Likes Received:
    60
    Trophy Points:
    10
    v2.1.6? :D
     
  14. pf100

    pf100 MDL Expert

    Joined:
    Oct 22, 2010
    Messages:
    1,906
    Likes Received:
    3,055
    Trophy Points:
    60
    Originally it didn't maximize WUMT, that's something I changed not long ago. But yeah, I could change it back next version.
     
  15. wyatt23

    wyatt23 MDL Member

    Joined:
    Apr 2, 2017
    Messages:
    112
    Likes Received:
    60
    Trophy Points:
    10
    A quick rewrite will save lots of posts asking/moaning about maximise :)

    I'll just copy/paste the fix into my 215 :)
     
  16. pf100

    pf100 MDL Expert

    Joined:
    Oct 22, 2010
    Messages:
    1,906
    Likes Received:
    3,055
    Trophy Points:
    60
    I can change it this afternoon. Not at home now.
     
  17. rpo

    rpo MDL Expert

    Joined:
    Jan 3, 2010
    Messages:
    1,166
    Likes Received:
    990
    Trophy Points:
    60
    When using the Windows Update Blocker, these are the needed statements :

    Code:
    cls
    "%~dp0wub.exe" /p /e
    echo ***********************************************
    echo Welcome to manual updates! You are about to run
    echo the Windows Update MiniTool (WUMT).
    echo ***********************************************
    echo. & echo Press any key to continue... & pause > nul
    :: Check OS and run correct version of WUMT
    for /f "tokens=2 delims==" %%a in ('wmic cpu get AddressWidth /value') do (set arch=%%a)
    IF %arch% == 32 (set "wumt=%~dp0wumt_x86.exe") else (set "wumt=%~dp0wumt_x64.exe")
    Start "" "%wumt%" -update "-onclose %~dp0wub.exe /D /P"
    Invoking UAC for Privilege Escalation in the script is no longer needed.
    "%~dp0wub.exe" : add quotes (if directory contains spaces,...)
     
  18. vannghiQGVN

    vannghiQGVN MDL Novice

    Joined:
    Dec 4, 2017
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    Can u get KB4051033 update?

    upload_2017-12-4_19-5-15.png
     
  19. scaramonga

    scaramonga MDL Member

    Joined:
    Oct 27, 2012
    Messages:
    248
    Likes Received:
    118
    Trophy Points:
    10
    Thx for that :)

    I've marked thread as solved, so a big thank you to all who helped in this matter!