Windows Update Client

Discussion in 'Windows 8' started by markokk888, Jan 26, 2018.

  1. markokk888

    markokk888 MDL Senior Member

    Aug 13, 2012
    292
    67
    10
    #1 markokk888, Jan 26, 2018
    Last edited: Jan 26, 2018
    What updates do i need to make windows update client work ? after clean install from : "en_windows_8.1_enterprise_with_update_x64_dvd_6054382.iso"

    i'm trying to avoid monthly rollup's so i can't go straight to them i'm gonna only install security ones.
     
  2. orbidia

    orbidia MDL Junior Member

    Feb 22, 2010
    79
    30
    0
    I think the only one that is required is the latest Servicing Stack update.

    The latest Servicing Stack update seems to be KB3173424 from 2016-07-12.
     
  3. markokk888

    markokk888 MDL Senior Member

    Aug 13, 2012
    292
    67
    10
    Already did that still nothing. searching forever..
     
  4. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,226
    84,916
    340
    If KB3138615 did not help in the search, install the latest update for adobe flash player, i.e. KB4056887
     
  5. markokk888

    markokk888 MDL Senior Member

    Aug 13, 2012
    292
    67
    10
    Untitled.png

    Did now but still nothing.
     
  6. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,226
    84,916
    340
    I see you installed KB3172614
    that should have solved the long search issue

    you have another problem
    are you running in Audit mode?
     
  7. markokk888

    markokk888 MDL Senior Member

    Aug 13, 2012
    292
    67
    10
    Well, yes i'm in audit mode is that a problem ? works fine in 7.
     
  8. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,766
    450
  9. markokk888

    markokk888 MDL Senior Member

    Aug 13, 2012
    292
    67
    10
  10. markokk888

    markokk888 MDL Senior Member

    Aug 13, 2012
    292
    67
    10
    Btw, did WUMT have official forum page or did the author of this tool have home page ?
     
  11. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,766
    450
  12. markokk888

    markokk888 MDL Senior Member

    Aug 13, 2012
    292
    67
    10
  13. mehdibleu

    mehdibleu MDL Expert

    Jun 14, 2017
    1,009
    251
    60
    i didn't know that either, i did the same error as you thinking that i could install updates through WU in audit mode so i can after sysprep the disk image with my installed apps and updates but didn't work, so i thought that i had to install all the msu win8.1 updates manually which would have taken a huge time but luckily i found a way to install them all automatically by using a script and after that i was able to sysprep all this successfully.
     
  14. markokk888

    markokk888 MDL Senior Member

    Aug 13, 2012
    292
    67
    10
    Can you share the script ? Well, many tools can do this anyway like WSUS or WHDownloader or WUMT.

    But still it's a little bs.. that you can't use WU. Wonder why they did this way..
    Well.. the very first build of windows 8 final was a lot more hell than 8.1 but still.. Also what's with the online installation stuff with 8 ? I remember back in 2012 that you can't easy install framework's and other stuff.. runtimes and such.. without being online.. on 8.
     
  15. mehdibleu

    mehdibleu MDL Expert

    Jun 14, 2017
    1,009
    251
    60
    you create text file then you copy these lines and you paste them into the text file and you save then you change .txt extension to .bat extension then you create a folder and you put the needed msu updates with the batch file into the folder and finally you run the batch file to install all updates automatically.

    Code:
    @Echo off
    For %%# in (*.msu) Do (
        Echo: Installing update: %%#
        Wusa "%%#" /quiet /norestart
    )
    Echo Windows Update finished.
    Pause&Exit
     
  16. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,766
    450
    What i always do for offline updating 8.1 is first download all 8.1 updates and run them offline by using W8UI scripts by @abbodi1406 (on boot.wim both indices and install.wim), next i install it in audit mode and use wumt to install any updates offered and install dx9c + the most current dotnetfx4.xx, next i capture it.
     
  17. mehdibleu

    mehdibleu MDL Expert

    Jun 14, 2017
    1,009
    251
    60
    yes i tried first W8UI to integrate updates into,install.wim, it all started well but i got an error while unmounting the image for unknow reason, started again with the same error so i gave up and i decided to find another way to integrate these updates and that's where i found this great script that allowed me to install all the downloaded msu updates in audit mode automatically and it worked great.
     
  18. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,766
    450
    W8UI also integrates updates online in audit mode, all scripts just run dism /Add-Package command ;)