Unattended install question

Page 1 of 2 12 LastLast

  1. Posts : 14,046
    Windows 11 Pro X64 22H2 22621.1848
       #1

    Unattended install question


    Unattended install of custom install.wim working well except for a few things.
    In unattend.xml, I have <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> but I was still asked to connect to Wireless.

    I was also asked to choose Privacy settings for my device. Is there an OOBE unattend.xml setting that controls this?

    This was for a Pro install. I did not see these for a Home install.
      My Computers


  2. Posts : 9,790
    Mac OS Catalina
       #2

    https://docs.microsoft.com/en-us/win...esssetupinoobe

    That is all that they show in that link. You did put <oobe> first and </oobe> after that entry? Have someone look over your Unattended script file for possible fat finger Ed mistakes. A second or even third set of eyes help since you have been working on this for a while. We all know how our brains get wired during these projects.
      My Computer


  3. Posts : 14,046
    Windows 11 Pro X64 22H2 22621.1848
    Thread Starter
       #3

    I've posted them in several different threads, but this is my unattend.xml.

    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
    <?For BIOS/CSM MBR or UEFI MBR/GPT systems - Home or Pro?>
        <settings pass="oobeSystem">
            <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <InputLocale>0409:00000409</InputLocale>
                <SystemLocale>en-US</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UILanguageFallback>en-US</UILanguageFallback>
                <UserLocale>en-US</UserLocale>
            </component>
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <OOBE>
                    <HideEULAPage>true</HideEULAPage>
                    <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
                    <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
                    <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
                    <ProtectYourPC>1</ProtectYourPC>
                    <UnattendEnableRetailDemo>false</UnattendEnableRetailDemo>
                </OOBE>
                <UserAccounts>
                    <LocalAccounts>
                        <LocalAccount wcm:action="add">
                            <Description>Main local login</Description>
                            <DisplayName>Owner</DisplayName>
                            <Group>Administrators</Group>
                            <Name>Owner</Name>
                        </LocalAccount>
                    </LocalAccounts>
                </UserAccounts>
                <RegisteredOwner>ACTS</RegisteredOwner>
                <ShowPowerButtonOnStartScreen>true</ShowPowerButtonOnStartScreen>
                <TimeZone>Eastern Standard Time</TimeZone>
            </component>
        </settings>
        <settings pass="specialize">
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <OEMInformation>
                    <Manufacturer>ACTS</Manufacturer>
                </OEMInformation>
                <CopyProfile>true</CopyProfile>
                <OEMName>ACTS</OEMName>
                <RegisteredOrganization>ACTS</RegisteredOrganization>
                <TimeZone>Eastern Standard Time</TimeZone>
                <ShowPowerButtonOnStartScreen>true</ShowPowerButtonOnStartScreen>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="catalog://desktop/lenovo_gcustom_os/oscdimage_source/sources/install_windows 10 home.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>
    I don't see anything wrong with it. It works for the rest of the unattended install, just the wireless and privacy questions were required. The same unattend.xml works fine on a Home install, no interruptions. Install goes from first boot to final desktop with no interaction required from me, on the same laptop.
      My Computers


  4. Posts : 9,790
    Mac OS Catalina
       #4

    What happens if you get rid of or comment out the Retail Demo line? Try is one. Q&A: How do I automatically skip the wireless connection selection stage of a Windows 8 scripted install? | ITNinja

    <OOBE> <HideEULAPage>true</HideEULAPage>
    <HideLocalAccountScreen>true</HideLocalAccountScreen>
    <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
    <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
    <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
    <NetworkLocation>Work</NetworkLocation>
    </OOBE>
      My Computer


  5. Posts : 9,790
    Mac OS Catalina
       #5

    What happens if you get rid of or comment out the Retail Demo line? Try is one. Q&A: How do I automatically skip the wireless connection selection stage of a Windows 8 scripted install? | ITNinja

    <OOBE> <HideEULAPage>true</HideEULAPage>
    <HideLocalAccountScreen>true</HideLocalAccountScreen>
    <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
    <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
    <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
    <NetworkLocation>Work</NetworkLocation>
    </OOBE>

    Also make sure to update DP's after making changes. Also make sure to validate in WSIM in case of depreciated features. https://social.technet.microsoft.com...ConfigMgrCBOSD
      My Computer


  6. Posts : 9,790
    Mac OS Catalina
       #6
      My Computer

  7.   My Computer


  8. Posts : 14,046
    Windows 11 Pro X64 22H2 22621.1848
    Thread Starter
       #8

    Also make sure to update DP's after making changes.
    Don't understand what this means.

    I've checked the other links and don't see anything that is different than what I already have.
      My Computers


  9. Posts : 9,790
    Mac OS Catalina
       #9

    I tried to find out more info on updating dp and could not. The spiceworks link looks like the best out there.
      My Computer


  10. Posts : 9,790
    Mac OS Catalina
       #10
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 08:53.
Find Us




Windows 10 Forums