• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    Windows 10 1803 Unattend help

    Scheduled Pinned Locked Moved Unsolved
    Windows Problems
    3
    4
    3.4k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • S
      Stucraster
      last edited by

      Hi all,

      I’ve been stumbling my way through creating images so far and have a half hacked together unattend file.

      Does anybody have a sort of “vanilla” unattend.xml file that I can change or a guide related to later versions of Windows that I can use to create a better one?

      My biggest issue is it needed to be set up for United kingdom. Some settings seem to need en-UK and some en-GB and finding out which to use isn’t really clear.

      Cheers,
      Stu

      1 Reply Last reply Reply Quote 0
      • x23piracyX
        x23piracy
        last edited by x23piracy

        http://www.windowsafg.com/
        It’s always en-GB never UK!

        ║▌║█║▌│║▌║▌█

        1 Reply Last reply Reply Quote 2
        • S
          Stucraster
          last edited by

          @x23piracy Thanks a bunch. Not sure how i’ve missed this website…!

          1 Reply Last reply Reply Quote 0
          • J
            jflippen
            last edited by

            Here is what my unattend.xml looks like. I have made some redactions and comments to help out. I made mine using Windows System Image Manager. This is one of many webpages I used to learn about building my unattend file (and lots of trial and error): https://www.tenforums.com/tutorials/3020-customize-windows-10-image-audit-mode-sysprep.html

            <?xml version="1.0" encoding="utf-8"?>
            <unattend xmlns="urn:schemas-microsoft-com:unattend">
                <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">
                        <ProductKey>Your key</ProductKey>
                        <TimeZone>Your TimeZone</TimeZone>
                    </component>
                    <component name="Microsoft-Windows-Deployment" 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">
                        <!--I had to add this as FOG wasn't expanding my OS partition all the way after OOBE ran-->
            			<ExtendOSPartition>
                            <Extend>true</Extend>
                        </ExtendOSPartition>
                    </component>
                </settings>
                <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>en-US</InputLocale>
                        <SystemLocale>en-US</SystemLocale>
                        <UILanguage>en-US</UILanguage>
                        <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>
                            <HideLocalAccountScreen>true</HideLocalAccountScreen>
                            <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
                            <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
                            <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
                            <ProtectYourPC>1</ProtectYourPC>
                        </OOBE>
                        <UserAccounts>
            			<!--If you skip account creation in OOBE, you need to enable local Administrator account or create another admin account in unattend file -->
                            <AdministratorPassword>
                                <Value>Your AdministratorPassword==</Value>
                                <PlainText>false</PlainText>
                            </AdministratorPassword>
                        </UserAccounts>
                        <StartTiles>
                            <PromoteOEMTiles>false</PromoteOEMTiles>
                        </StartTiles>
                        <AutoLogon>
                            <Password>
                                <Value>password again</Value>
                                <PlainText>false</PlainText>
                            </Password>
                            <LogonCount>1</LogonCount>
                            <Username>Administrator</Username>
                            <Enabled>true</Enabled>
                        </AutoLogon>
                        <FirstLogonCommands>
                            <SynchronousCommand wcm:action="add">
                                <CommandLine>reg add &quot;HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon&quot; /v AutoLogonCount /t REG_DWORD /d 1 /f</CommandLine>
                                <Description>Set AutoLogin count back to zero</Description>
                                <Order>1</Order>
                                <RequiresUserInput>false</RequiresUserInput>
                            </SynchronousCommand>
                        </FirstLogonCommands>
                    </component>
                </settings>
                <settings pass="offlineServicing">
                    <component name="Microsoft-Windows-PnpCustomizationsNonWinPE" 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">
                        <DriverPaths>
            			<!--If you are using the postdownload script for driver injection, you will need this -->
                            <PathAndCredentials wcm:action="add" wcm:keyValue="1">
                                <Path>C:\Windows\DRV</Path>
                            </PathAndCredentials>
                        </DriverPaths>
                    </component>
                </settings>
            	<!--don't think the offline image part is needed, but it's part of the one that get's made when I use Windows System Image Manager -->
                <cpi:offlineImage cpi:source="source" />
            </unattend>
            
            
            1 Reply Last reply Reply Quote 0
            • 1 / 1
            • First post
              Last post

            242

            Online

            12.0k

            Users

            17.3k

            Topics

            155.2k

            Posts
            Copyright © 2012-2024 FOG Project