Share via

Win11 24H2 sysprep OOBE can't Suppress "Who's going to use this Device?" screen.

jaybird283 626 Reputation points
2024-10-17T21:01:12.5066667+00:00

I am updating our "golden image" with 24H2. I created the image. Used Sysprep to generalize it (with my unattend file as normal) but for some reason the OOBE screen still shows the "Who's going to use this Device" screen. everything else is working fine but that.

I have the following in my xml and i think the "HideLocalAccountScreen" setting is what controls that. but its not working on 24H2.

            <OOBE>
                <HideEULAPage>true</HideEULAPage>
                <HideLocalAccountScreen>true</HideLocalAccountScreen>
                <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
                <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
                <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
                <ProtectYourPC>2</ProtectYourPC>
            </OOBE>
Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments

2 answers

Sort by: Most helpful
  1. Anonymous
    2024-10-21T07:18:04.71+00:00

    Hello,

    Review Unattend.xml Settings:

    Ensure that your unattend.xml file includes the necessary settings to bypass the OOBE screens. Specifically, check the <OOBE> section for the following settings:

    <OOBE>

    <HideEULAPage>true</HideEULAPage>

    <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>

    <HideOnlineAccountScreens>true</HideOnlineAccountScreens>

    <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>

    <ProtectYourPC>1</ProtectYourPC>

    <SkipMachineOOBE>true</SkipMachineOOBE>

    <SkipUserOOBE>true</SkipUserOOBE>

    </OOBE>

    The value for HideOnlineAccountScreens should be set to true to bypass the account setup screens.

    Best Regards,

    Hania Lian

    ============================================

    If the Answer is helpful, please click "Accept Answer" and upvote it.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments

  2. Sean Liming 4,811 Reputation points Volunteer Moderator
    2024-10-27T16:36:21.73+00:00

    Agree with the previous poster. I typically have the following in the OOBE section for sysprep:

            <OOBE>
    
                <HideEULAPage>true</HideEULAPage>
    
                <HideLocalAccountScreen>true</HideLocalAccountScreen>
    
                <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
    
                <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
    
                <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
    
                <ProtectYourPC>3</ProtectYourPC>
    
                <UnattendEnableRetailDemo>false</UnattendEnableRetailDemo>
    
                <SkipMachineOOBE>true</SkipMachineOOBE>
    
                <SkipUserOOBE>true</SkipUserOOBE>
    
            </OOBE>
    

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.