How to Skip "Checking for Updates" during win 8.1 Install

Discussion in 'Windows 8' started by bertikul, Sep 13, 2013.

  1. bertikul

    bertikul MDL Member

    Nov 2, 2007
    204
    21
    10
    #21 bertikul, Sep 14, 2013
    Last edited: Sep 14, 2013
    (OP)
    Thanks murphy78

    As in post #18 it's looks fine, no updates during install "any more" (at this point).

    BUT I have another issue..... I see/read everywhere on the net people trying to have their modified start screen tiles after sysprep....etc and having problems with that. That's not my Problem for the moment. I want to have exactly the same (default) start screen tiles in the captured image but no luck till now. I did not modify any Tiles after normal install. Tried a lot of things.... I guess not the wright things :) but I can't have that default start screen tiles whatever I do.

    Here are the default tiles I get after normal Windows Install: Default_Tiles.png


    Here are the "after sysprep/capture...." Tiles: Sysprep_Tiles.gif

    Any suggestion/idea? THANKS
     
  2. Mr Jinje

    Mr Jinje MDL Expert

    Aug 19, 2009
    1,770
    1,101
    60
  3. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,389
    11,614
    240
    Did you run the sysprep without using audit-mode to set everything up?
    Win8 likes to pin things to the start menu during the user creation portion of setup.
    If you don't sysprep correctly using audit-mode it might have issues.
     
  4. sps

    sps MDL Member

    Feb 6, 2008
    126
    33
    10
    #25 sps, Sep 14, 2013
    Last edited by a moderator: Apr 20, 2017
    Hi murphy78, can you explain how to make this script executed during installation?
    How could I access cmd prompt to run this during install to prevent those huge video drivers to be downloaded?
    TIA
     
  5. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,389
    11,614
    240
    #26 murphy78, Sep 14, 2013
    Last edited by a moderator: Apr 20, 2017
    Make a folder structure:
    $oem$\$$\Setup\Scripts\

    Make a text file in the scripts folder (setupcomplete.cmd):
    Code:
    net stop wuauserv
    timeout /t 5
    net start wuauserv
    copy the entire $oem$ folder to the dvd's sources\ folder.
     
  6. bertikul

    bertikul MDL Member

    Nov 2, 2007
    204
    21
    10
  7. bertikul

    bertikul MDL Member

    Nov 2, 2007
    204
    21
    10
    #29 bertikul, Sep 17, 2013
    Last edited: Sep 17, 2013
    (OP)
    No I didn't do that. According to your post I should have done that. I mean I did generalize after /audit but didn't delete Administrator before capture.......God I don't have the courage to start it all over again....uhh
     
  8. Mr Jinje

    Mr Jinje MDL Expert

    Aug 19, 2009
    1,770
    1,101
    60
    #30 Mr Jinje, Sep 17, 2013
    Last edited by a moderator: Apr 20, 2017
  9. acyuta

    acyuta MDL Expert

    Mar 8, 2010
    1,712
    397
    60
    I am not sure if disabling driver updates during install (through customise settings as versus express settings) works 100%. Both win 8 and win 8.1 still retain this irritating habit of installing NVIDIA drivers no matter what.

    One can keep the net off till one installs own drivers though.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,389
    11,614
    240
    #32 murphy78, Sep 17, 2013
    Last edited by a moderator: Apr 20, 2017
  11. alicepattinson

    alicepattinson MDL Member

    Jan 29, 2013
    175
    32
    10
    I agree. Hmm. If i'm correct, the updates are really necessary when installing. Am I right? waa :D
     
  12. EFA11

    EFA11 Avatar Guru

    Oct 7, 2010
    8,719
    6,741
    270
    #34 EFA11, Sep 17, 2013
    Last edited by a moderator: Apr 20, 2017
  13. Mr Jinje

    Mr Jinje MDL Expert

    Aug 19, 2009
    1,770
    1,101
    60
    #35 Mr Jinje, Sep 17, 2013
    Last edited by a moderator: Apr 20, 2017
  14. Mr Jinje

    Mr Jinje MDL Expert

    Aug 19, 2009
    1,770
    1,101
    60
    #36 Mr Jinje, Sep 17, 2013
    Last edited by a moderator: Apr 20, 2017
    Here is a snip to create the registry key (as it does not exist yet) and set the setting. Edit the path to your XML

    Code:
    #
    # HKLM - all users
    #
    Export-StartLayout -Path "D:\Start-Layout-81-x64.xml" -As XML
    New-Item -Path Registry::HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows -Name Explorer -Force
    Set-ItemProperty -Path 'registry::HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\Explorer' -Name StartLayoutFile -Value "D:\Start-Layout-81-x64.xml"
    #
    # HKCU - per user
    #
    Export-StartLayout -Path "D:\Start-Layout-81-x64.xml" -As XML
    New-Item -Path Registry::HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows -Name Explorer -Force
    Set-ItemProperty -Path 'registry::HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer' -Name StartLayoutFile -Value "D:\Start-Layout-81-x64.xml"
    #
     
  15. bertikul

    bertikul MDL Member

    Nov 2, 2007
    204
    21
    10
    #37 bertikul, Sep 17, 2013
    Last edited by a moderator: Apr 20, 2017
    (OP)
    Still playing with it. I'll let you know if I get it. THAAAAAk YOUUUUU so much
     
  16. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,389
    11,614
    240
    #38 murphy78, Sep 17, 2013
    Last edited by a moderator: Apr 20, 2017
    Now those two posts were definitely worthy!
    Nice helping get around the hex reg key pathing Mr Jinje!
     
  17. bertikul

    bertikul MDL Member

    Nov 2, 2007
    204
    21
    10
    Tried almost everything. No matter what I do, I get the wright Startup Screen for the Default User but not when I create a new user. Start Screen tiles are limited, many are missing like in post #21

    Thank you all for helping
     
  18. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,389
    11,614
    240
    OK, I gotta ask... how are you doing your capture? are you using an old dism or something?