Windows 10: OOBE sysprep answer file for Win10 version 1703

Discus and support OOBE sysprep answer file for Win10 version 1703 in Windows 10 Installation and Upgrade to solve the problem; Hello. was looking for an answer file for just answering all of the oobe questions after running sysprep with oobe in the latest version of 10 with... Discussion in 'Windows 10 Installation and Upgrade' started by spyhunter007, Sep 19, 2017.

  1. OOBE sysprep answer file for Win10 version 1703


    Hello. was looking for an answer file for just answering all of the oobe questions after running sysprep with oobe in the latest version of 10 with Cortana. I don't see steps to take for that anywhere online, only tutorials for copying a profile which would just skip having to create a new user. I've messed around with a few answer files I've found online, but they don't seem to do the trick. Appreciate any tips you could give me.

    Thanks! -Tim

    :)
     
    spyhunter007, Sep 19, 2017
    #1

  2. Install Win 10 1073 using ADK. OOBE does not ask for product key.

    Hi,

    There was an OOBE update for Windows 10 Version 1703 released back in May 9, 2017. This update improves the Windows
    10 Version 1703 OOBE process and will be available only at the time that OOBE updates are installed. Please click on the link below more information:

    OOBE update for Windows 10 Version 1703: May 9, 2017.
     
    Rolando Vil, Sep 19, 2017
    #2
  3. JonW2016 Win User
    Windows 10 Update breaks Sysprep?

    I am attempting to image a Dell E7470 with Sysprep to upload to my WDS server.

    When I run Sysprep /oobe / shutdown, it completes. However, without Generalize, I won't be able to upload it or deploy it.

    When I run Sysprep /oobe /generalize / shutdown, it reports that a fatal error has occurred. The setupact.log lists that the Miracastview app cannot be removed.

    I have attempted the Remove-appxpackage commands, but it states that it has been provisioned for the user but not all users. It says to attempt removal with Add / Remove Windows features, but it is not listed there.

    I have tried the steps in

    https://support.microsoft.com/en-us...w-cause-sysprep-error-windows-10-version-1709

    but none of this has worked either.

    I guess the answer is to not run any Windows updates before Sysprep and avoid 1709? It appears to be bad news.

    Anybody else encounter this? Any other solutions available?
     
    JonW2016, Sep 19, 2017
    #3
  4. Kari Win User

    OOBE sysprep answer file for Win10 version 1703

    Hi Tim, welcome to the Ten Forums.

    Here's a sample answer file that totally automates OOBE. Regional settings are for UK (040b:0000040b & EN-GB) and need to be changed according to your region and input settings. Two local accounts will be created, local administrator account Admin and standard user . These need to be changed, too:

    Code: <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <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>040b:0000040b</InputLocale> <SystemLocale>en-GB</SystemLocale> <UILanguage>en-GB</UILanguage> <UILanguageFallback>en-GB</UILanguageFallback> <UserLocale>en-GB</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> <ProtectYourPC>3</ProtectYourPC> <UnattendEnableRetailDemo>false</UnattendEnableRetailDemo> </OOBE> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Description>Main local admin account</Description> <DisplayName>Admin</DisplayName> <Group>Administrators</Group> <Name>Admin</Name> </LocalAccount> <LocalAccount wcm:action="add"> <Description>My daily standard account </Description> <DisplayName></DisplayName> <Group>Users</Group> <Name></Name> </LocalAccount> </LocalAccounts> </UserAccounts> <TimeZone>W. Europe Standard Time</TimeZone> <RegisteredOwner></RegisteredOwner> <RegisteredOrganization>Ten Forums</RegisteredOrganization> </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> <Logo>C:\Windows\System32\oemlogo.bmp</Logo> <Manufacturer>Ten Forums</Manufacturer> <SupportHours>24/7</SupportHours> <SupportPhone>+44 123 456 789</SupportPhone> <SupportURL>Windows 10 Help Forums</SupportURL> </OEMInformation> <CopyProfile>true</CopyProfile> <OEMName>ACME Computers</OEMName> <RegisteredOrganization>Ten Forums</RegisteredOrganization> <RegisteredOwner></RegisteredOwner> <TimeZone>W. Europe Standard Time</TimeZone> </component> </settings> </unattend>[/quote]
     
  5. Kari, you are the best! Was really searching for this, and I did not even find it after installing Windows SIM and using an install.wim file. I did have to enter a line to skip the networking question however:

    <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>

    One more question I have is the computer name, for some reason, this is not working:

    <ComputerName>LAB10</ComputerName>

    Does it need to be in a certain place in the answer file?
    Thanks again buddy!
    Tim
     
    spyhunter007, Sep 20, 2017
    #5
  6. Kari Win User
  7. Thanks again, the best part is that I don't have to delete a random user account after sysprep anymore! Here is my final answer file with settings for en-US:

    Code: <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <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 admin account</Description> <DisplayName>Admin</DisplayName> <Group>Administrators</Group> <Name>Admin</Name> </LocalAccount> </LocalAccounts> </UserAccounts> </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"> <TimeZone>Central Standard Time</TimeZone> <ComputerName>LAB10</ComputerName> </component> </settings> </unattend>[/quote]
    Tim
     
    spyhunter007, Sep 21, 2017
    #7
  8. OOBE sysprep answer file for Win10 version 1703

    Oops, upon testing it again it still doesn't name the computer LAB10. Maybe I have something wrong?

    Also, the time zone is not working. Does specialize have to be before oobe?

    Tim
     
    spyhunter007, Sep 21, 2017
    #8
  9. Kari Win User
    The order of settings passes in answer file is irrelevant; during Windows setup, system goes through all passes in specific order and when starting each pass, checks answer file; if it contains information for that specific pass, it will be applied regardless where in answer file it was found. Really, the order of passes in answer file is not important, that is not your issue.

    I tested your modified answer file and it worked perfectly, time zone and computer name changed. Did you forget the /generalize switch from Sysprep command? The settings pass Specialize components will only be applied if /generalize switch is used with Sysprep as shown below:

    %windir%\system32\sysprep\sysprep.exe /generalize /oobe
     
  10. Thanks again, was curious why when you type the /generalize into the command line when the window comes up, it is not checked? Is it still applied, or is it necessary to also check the box, also could I skip typing it and just check the box instead?

    -Tim
     
    spyhunter007, Apr 4, 2018
    #10
Thema:

OOBE sysprep answer file for Win10 version 1703

Loading...
  1. OOBE sysprep answer file for Win10 version 1703 - Similar Threads - OOBE sysprep answer

  2. Sysprep On Win10 Is A Joke

    in Windows 10 Ask Insider
    Sysprep On Win10 Is A Joke: There are so many reasons it doesn't work that I've about given up on it. Sysprep has been a valuable tool for many years, until 10 came along. It used to be a quick registry edit after the 7-to-10 upgrade, but now the list is growing to the point that it's easier to just...
  3. Oobe install windows 10 ent. Ltsc with answer file

    in Windows 10 Installation and Upgrade
    Oobe install windows 10 ent. Ltsc with answer file: Hi everybody, I'm new in the forum, and hope you can help me! I've been using an automatic deploy automation for the images of the computers we install in the machines we build, with windows 7. I used an answer file created with windows aik, and worked perfectly for years...
  4. updating from win10 1703 to newer version of win10 do i loose files ?

    in Windows 10 Installation and Upgrade
    updating from win10 1703 to newer version of win10 do i loose files ?: if i updated my win10 from 1703 to newer version do i loose files and apps ? https://answers.microsoft.com/en-us/windows/forum/all/updating-from-win10-1703-to-newer-version-of-win10/cba1ebb4-f524-4ad1-821c-3615b5851cb0
  5. Sysprep Reboots back into Audit mode instead of OOBE

    in Windows 10 Backup and Restore
    Sysprep Reboots back into Audit mode instead of OOBE: IT, trying to create a backup image using macrium although my issues are just for sysprep, At the moment i am just trying to figure things out, so I am installing windows 10 education on SSD (computer has a ssd and a hardrive) then boot into windows and on the first screen...
  6. Old user still there in OOBE after sysprep and deleting it

    in User Accounts and Family Safety
    Old user still there in OOBE after sysprep and deleting it: I want to sysprep a computer before giving it as a gift. I want this since I want it to keep all the drivers already installed and everything. However, when I sysprep it using Administrator account and delette the "User" account, when I boot to OOBE, it doesn't ask me to...
  7. defaultuser0 profile created windows 10 1703 after sysprep

    in Windows 10 Installation and Upgrade
    defaultuser0 profile created windows 10 1703 after sysprep: anyone get defaultuser0 profile created and windows license not activated after ran sysprep in task sequence? 1. create VM and work on built-in administrator and ensure only standard built-in administrator, disabled DefaultAccount and disabled guest account is there by...
  8. Creating Answer File For Windows 10 1703/1709

    in Windows 10 Installation and Upgrade
    Creating Answer File For Windows 10 1703/1709: Hello All, Hoping that you have a nice day, i moved to IT department at my company , dealing with several notebooks every day needing a fresh installation is a little bit hard and wasting a lot of time so i started to search how to automate the installation of Windows 10...
  9. Windows 10 - unable to build a sysprep image without OOBE

    in Windows 10 Installation and Upgrade
    Windows 10 - unable to build a sysprep image without OOBE: I am building a custom Windows 10 image version 1703. I want to create an image where I do not want an OOBE experience for new users. However, I am just not able to achieve that. I have run into multiple issues and have been digging around the issues for weeks now. I have...
  10. Stuck on version 1703

    in Windows 10 Installation and Upgrade
    Stuck on version 1703: Hello! I am new here and thank you for any support. Well, my Windows 10 is stucked on version 1703 build 15063.138 and as an Insider I've receiving the updates but it always fail. Right now it tried to install Windows 10 Insider Preview 16179.1000 (rs_prerelease) but...

Users found this page by searching for:

  1. sysprep oobe with answer file

    ,
  2. win10 1809 answer file