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
    #41 bertikul, Sep 22, 2013
    Last edited: Sep 22, 2013
    (OP)
    I'm using ADK 8.1 RTM.

    I do: sysprep /generalize /audit /shutdown /unattend:G:\Sysprep_Unattend\Unattend.xml. Use Unattend to copy profile. (restart immediately after "shutdonws" to another win 8.1 partition. Is that right?)

    Then: Dism /Capture-Image /compress:max /ImageFile:install.wim /CaptureDir:X:\ /Name:professionalWMC

    imagex /compress maximum /export X:\win8\wim\install.wim 1 X:\Windows_8.1_Pro_x64\install.wim
     
  2. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,389
    11,614
    240

    I don't think using the /unattend command in that situation is the right way to do this.
    During audit-mode, a lot of the post-user-creation stuff has still yet to be set up.
    I think for your particular situation wanting to both use audit-mode and set a full fledged user's start menu, it's a bit more complicated.
    First, you need to do the audit-mode without unattend, delete the administrator user folder and capture the drive.

    Then you need to re-logon to the account and create a sample user. This will be your xml export method.
    A lot of the start menu stuff is not set up properly for Administrator so you need to create an actual OOBE user.
    Then use the Powershell command that Mr Jinje posted to export start layout. Name it something easy like c:\windows\setup\start.xml
    Create a group policy making start.xml the default start screen layout.

    Go into registry and export the key that sets the start.xml in gpedit.
    Load reg hive on the offline hive from your capture to something like \Test
    Change the reg and add the \Test part.
    Import the new modified reg file so that your offline hive will now want to load start.xml from group policy
    Now export the reg \Test stuff, and copy the start.xml to the offline image using dism mount in the same folder you set it to with group policy.

    THEN, you should be set.
     
  3. bertikul

    bertikul MDL Member

    Nov 2, 2007
    204
    21
    10
    Thanks murphy78 for taking the time to explain it so well.

    What if I just use: sysprep /generalize /shutdown /unattend:X:\Sysprep_Unattend\Unattend.xml (no audit mode)? What are the steps to follow?
    Tried it the way I know but with same results
     
  4. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,389
    11,614
    240
    Well you could do that, but if you do it with a sample account you have to go and remove the user stuff from the registry. the audit mode version doesn't set up a user account, so it doesn't add those registry settings.
    You'll see what I mean if you capture a sample-user system. Even if you run sysprep/generalize it gives 2 user options when signing into windows every time. I.E. It still thinks the sample-user you used to set everything up with, is a legit user.

    There are ways to delete the user, but alas I haven't gone that route so I couldn't explain it as well as a few google searches about sysprep account deletion stuff could do...
    There's a proper way to delete those user accounts, I just don't know it because I haven't looked.
     
  5. bertikul

    bertikul MDL Member

    Nov 2, 2007
    204
    21
    10
    murphy78: In fact, googling about my problem, to have a full fledged user's start menu + Admin account fully settled right after first start, never helped me as much as you did.
    Thanks again