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

    Windows 10 unattend.xml (sysprep answer file) challenge

    Scheduled Pinned Locked Moved
    Windows Problems
    11
    35
    86.9k
    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.
    • JJ FullmerJ
      JJ Fullmer Testers
      last edited by

      @Psycholiquid You are a beautiful person and I love you.
      You may have just ended my 5 year hate war against sysprep.

      Maybe I wasn’t looking hard enough, but everytime I tried sysprep or tried to customize it to my needs it failed miserably. Destroying customizations, getting stuck at oobe screens, just overall breaking everything. However, I just used your xml as a template and was able to successfully run sysprep on my windows 10 image and it worked pretty well and now I think I will be able to better search for the bits of the unattend.xml I need.

      Also, a problem I ran into in windows 10 with sysprep is it sometimes gives an error about a metro app (movies and tv aka Microsoft.ZuneVideo for example) not being provisioned for each user or something. I had to run this powershell script I found in a microsoft tech forum (that I can’t seem to find again right now, but I saved the script for future use) on each user and it worked.

      $AppsList = "Microsoft.Bing" , "Microsoft.BingFinance" , "Microsoft.BingMaps" , "Microsoft.BingNews"`
                  , "Microsoft.BingSports" , "Microsoft.BingTravel" , "Microsoft.BingWeather" , "Microsoft.Camera"`
                  , "microsoft.microsoftskydrive" , "Microsoft.Reader" , "microsoft.windowscommunicationsapps"`
                  , "microsoft.windowsphotos" , "Microsoft.XboxLIVEGames" , "Microsoft.ZuneMusic"`
                  , "Microsoft.ZuneVideo" , "Microsoft.Media.PlayReadyClient"
      
      ForEach ($App in $AppsList)
      {
          $PackageFullName = (Get-AppxPackage $App).PackageFullName
          if ((Get-AppxPackage $App).PackageFullName)
          {
              Write-Host "Removing Package: $App"
              remove-AppxProvisionedPackage -online -packagename $PackageFullName
              remove-AppxPackage -package $PackageFullName
          }
          else
          {
              Write-Host "Unable to find package: $App"
          }
      }
      

      Save that guy as a .ps1 file and run it on each user if you’re getting an error when trying to run sysprep on windows 10 (or 8/8.1 for that matter)

      Have you tried the FogApi powershell module? It's pretty cool IMHO
      https://github.com/darksidemilk/FogApi
      https://fogapi.readthedocs.io/en/latest/
      https://www.powershellgallery.com/packages/FogApi
      https://forums.fogproject.org/topic/12026/powershell-api-module

      MRCURM 1 Reply Last reply Reply Quote 1
      • MRCURM
        MRCUR Testers @JJ Fullmer
        last edited by

        @Arrowhead-IT You can remove the “Modern” apps in audit mode so you don’t run into any issues. See here: https://forums.fogproject.org/topic/6720/image-windows-10-upgrade/5

        JJ FullmerJ 1 Reply Last reply Reply Quote 1
        • JJ FullmerJ
          JJ Fullmer Testers @MRCUR
          last edited by

          @MRCUR Oooh, cool. However it wouldn’t let me enter audit mode either until I found this script. I did read something about using audit mode to get rid of modern apps, but I had to remove them to get to audit mode.

          Have you tried the FogApi powershell module? It's pretty cool IMHO
          https://github.com/darksidemilk/FogApi
          https://fogapi.readthedocs.io/en/latest/
          https://www.powershellgallery.com/packages/FogApi
          https://forums.fogproject.org/topic/12026/powershell-api-module

          MRCURM Q 2 Replies Last reply Reply Quote 0
          • MRCURM
            MRCUR Testers @JJ Fullmer
            last edited by

            @Arrowhead-IT You have to be on the network selection screen in OOBE to get into audit mode. (I know this is completely non-obvious - it’s a very MS thing to do.)

            Wayne WorkmanW 1 Reply Last reply Reply Quote 1
            • Q
              Quazz Moderator @JJ Fullmer
              last edited by

              @Arrowhead-IT That’s because Audit mode is triggered by sysprep which only runs if the apps make it past the checks, it’s stupid, but hey.

              1 Reply Last reply Reply Quote 1
              • Wayne WorkmanW
                Wayne Workman @MRCUR
                last edited by Wayne Workman

                @MRCUR said in Windows 10 unattend.xml (sysprep answer file) challenge:

                @Arrowhead-IT You have to be on the network selection screen in OOBE to get into audit mode. (I know this is completely non-obvious - it’s a very MS thing to do.)

                MS should watch themselves… If they keep making things more and more difficult, and Linux distros keep making things more and more easy… well then… You know. 🙂

                Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
                Daily Clean Installation Results:
                https://fogtesting.fogproject.us/
                FOG Reporting:
                https://fog-external-reporting-results.fogproject.us/

                1 Reply Last reply Reply Quote 1
                • B
                  boeleke
                  last edited by

                  Hi there all,

                  i tried a couple of times a sysprep on w10.
                  Sysprep on w10 is taking so long… Longer then w7 , how is this with you guys?

                  george1421G 1 Reply Last reply Reply Quote 0
                  • george1421G
                    george1421 Moderator @boeleke
                    last edited by

                    @boeleke said in Windows 10 unattend.xml (sysprep answer file) challenge:

                    Sysprep on w10 is taking so long… Longer then w7 , how is this with you guys?

                    I know it does take quite a while, but I’ve never timed it. I will typically start sysprep and then go do something else while it runs. When I come back the vm is powered off. I can say the speed of sysprep is dependant on if you are running on a vm vs physical hardware (phy hardware has more drivers) and if you are deploying all of the bloat ware vs a clean image.

                    Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

                    1 Reply Last reply Reply Quote 1
                    • PsycholiquidP
                      Psycholiquid Testers
                      last edited by

                      My sysprep on Windows 10 LTSB is around 3 mins max. But it is a very clean image.

                      B 1 Reply Last reply Reply Quote 1
                      • B
                        boeleke @Psycholiquid
                        last edited by

                        @Psycholiquid

                        You did it with Audit-Mode?

                        1 Reply Last reply Reply Quote 0
                        • Boyan BiandovB
                          Boyan Biandov @MRCUR
                          last edited by

                          @MRCUR Thanks for the XML, it does open up in SIM but produces this when tested in the real world:

                          0_1468039541208_SIM.png

                          PsycholiquidP 1 Reply Last reply Reply Quote 0
                          • PsycholiquidP
                            Psycholiquid Testers @Boyan Biandov
                            last edited by

                            @Boyan-Biandov Your image has a driver it doesn’t like if you are getting that, for the most part I don’t really audit mode anymore. I do what I need to do in Windows and go straight to OOBE from there makes it cleaner and easier to deal with. I am still using the same XML I have posted here and it still works so you might want to check your drivers.

                            Always keep in mind that you can get past that by hitting Shift F10 sometimes and running Explorer. Then you can check the Setup,log in the Panther folder to see what is happening.

                            Boyan BiandovB 1 Reply Last reply Reply Quote 1
                            • Boyan BiandovB
                              Boyan Biandov @Psycholiquid
                              last edited by Boyan Biandov

                              @Psycholiquid

                              Thanks, driver I don’t know about but there’s definitely something that baffles me: why would it look for the xml in this directory? I’m stumped on this one…Do you all have to copy the xml file to both locations before running sysprep against one of the copies?

                              2016-07-09 08:11:52, Error                        [oobeldr.exe] User input error was detected in unattend file. Error: [0x0]
                              2016-07-09 08:11:52, Info                  IBS    UnattendErrorFromResults: Hit an unattend error; dumping any info we have about the failure...
                              2016-07-09 08:11:52, Info                  IBS    UnattendDumpSetting: ------Unattend setting error / warning------
                              2016-07-09 08:11:52, Info                  IBS    UnattendDumpSetting: Error code = 0x8030000b
                              2016-07-09 08:11:52, Info                  IBS    UnattendDumpSetting: Pass = oobeSystem
                              2016-07-09 08:11:52, Info                  IBS    UnattendDumpSetting: Component name = [Microsoft-Windows-Shell-Setup]
                              2016-07-09 08:11:52, Info                  IBS    UnattendDumpSetting: --------------------------------------------
                              2016-07-09 08:11:52, Info                  IBS    UnattendErrorFromResults: Error text = Windows could not parse or process unattend answer file [C:\Windows\Panther\unattend.xml] for pass [oobeSystem]. The settings specified in the answer file cannot be applied. The error was detected while processing settings for component [Microsoft-Windows-Shell-Setup].
                              

                              0_1468078294086_fog3.png

                              MRCURM G 2 Replies Last reply Reply Quote 0
                              • MRCURM
                                MRCUR Testers @Boyan Biandov
                                last edited by

                                @Boyan-Biandov That’s the directory that sysprep is actually run from & where logs are sent. I don’t believe the directory location is your issue.

                                Boyan BiandovB 1 Reply Last reply Reply Quote 0
                                • Boyan BiandovB
                                  Boyan Biandov @MRCUR
                                  last edited by Boyan Biandov

                                  @MRCUR said in Windows 10 unattend.xml (sysprep answer file) challenge:

                                  @Boyan-Biandov That’s the directory that sysprep is actually run from & where logs are sent. I don’t believe the directory location is your issue.

                                  You’ve been super patient so I really want to thank you for that and I don’t mean to contradict every post, I mean it. So it was exactly that, I had to copy my xml file to BOTH locations and then everything worked. Either I’m nuts or nobody had tested the November build of Windows 10 Pro ISO (the one that comes with SP1 integrated so to speak; version 1511 build 10586.420) to discover all those regularities. The ISO is MAK license specific (not retail) straight off eOpen under an EA (same key, few thousand activation allowed). I’ve monkeyed with sysprep for a decades and this is the first I see crazy crap like this 🙂

                                  MRCURM 1 Reply Last reply Reply Quote 0
                                  • MRCURM
                                    MRCUR Testers @Boyan Biandov
                                    last edited by

                                    @Boyan-Biandov Hmm, that’s really odd. The unattend file I posted is what I still use today on brand new installs of 10586 (the Nov update) and I place the file (named unattend.xml) in C:\Windows\system32\sysprep - that’s it, nowhere else. Below is the sysprep command I execute (I run this from C:\Windows\system32\sysprep):

                                    sysprep.exe /generalize /oobe /shutdown /unattend:unattend.xml
                                    
                                    PsycholiquidP 1 Reply Last reply Reply Quote 1
                                    • PsycholiquidP
                                      Psycholiquid Testers @MRCUR
                                      last edited by

                                      @MRCUR I actually put it in both out of habit, if you look at my scripts, (I think I have them posted) I delete the xml from both locations. But again this is habit form doing it for so many years.

                                      Boyan BiandovB 1 Reply Last reply Reply Quote 1
                                      • Boyan BiandovB
                                        Boyan Biandov @Psycholiquid
                                        last edited by

                                        @Psycholiquid I did see it in your script but I have NEVER put it in \panther just the \sysprep as you posted your command so maybe your habit saved you from facing my “challenges” lol

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

                                          Hi,

                                          i also use the xml outside the sysprep folder:

                                          /unattend:c:\pathtoxml\unattend.xml
                                          

                                          Regards X23

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

                                          1 Reply Last reply Reply Quote 1
                                          • G
                                            gwhitfield @Boyan Biandov
                                            last edited by gwhitfield

                                            @Boyan-Biandov I also have basically re-used my Win7 unattend, though I did run it through the Win10 SIM to validate it. The only place I put it is in C:\Windows\Systems32\Sysprep folder. However, I have had the “Windows could not parse…” error and in looking at the setuperr.log in C:\Windows\Panther\UnattendGC folder (this one is different than the setuperr.log in C:\Windows\Panther, I don’t recall how though), it pointed me in the general direction of the <ProductKey>xxx</ProductKey> entry in “Specialize” pass. I ended up removing all product key entries and don’t have the error anymore. I have never really used audit mode, I just enter product key during installation and run “c:\Windows\System32\SLMGR.VBS” /ato" to re-activate after imaging (in setupcomplete.cmd). Good luck!

                                            Edit: Forgot to mention that it always seemed to me that the unattend in C:\Windows\Panther was a post-sysprep record with all the sensitive data removed from the file by Windows as it processed it. I never before ran into any instructions to put it both places so I never have. Now if someone could tell me how they make the Win10 Default User profile keep the pinned icons on the taskbar I’d be the happiest camper alive.

                                            1 Reply Last reply Reply Quote 1
                                            • 1
                                            • 2
                                            • 2 / 2
                                            • First post
                                              Last post

                                            153

                                            Online

                                            12.0k

                                            Users

                                            17.3k

                                            Topics

                                            155.2k

                                            Posts
                                            Copyright © 2012-2024 FOG Project