4

I'm playing around with Windows Embedded Standard 8 here, and haven't quite gotten a hang of it all yet. My question is: how would I setup my answer file (in ICE), to go directly to audit mode after the initial setup, without running the OOBE pass?

I managed to get it to work once, by setting the reseal mode to Audit in pass 7/OOBE. The problem now was that whatever option I chose in the sysprep utility, it would ignore the rest (or at least pass 7) of my answer file. I.e. it will prompt for all of the stuff that I preconfigured in the answer file.

From the documentation it seems that going directly from Specialize to Audit should be possible.

Or should I just let it run OOBE once, then reseal it manually? (Edit: Just tried this, it seems to ignore the rest of the answer file in this case too)

1 Answer 1

1

When the system boots, you can press CTRL+SHIFT+F3 to get into Audit Mode. The TechNet article ‘Boot Windows to Audit Mode or OOBE’ has helpful information about the methods of booting to Audit Mode including showing you how to mount the image in DISM and replacing the answer file with one that will force an Audit Mode boot. The OOBE options will be skipped when booting to Audit Mode, and the settings would be removed when you run Sysprep with the /generalize switch to create your final image anyhow.

Once you have finished modifying the system in Audit Mode, do not use the graphical Sysprep window to get back to OOBE mode. Use a command line and specify the unattend file (that doesn’t have the reseal setting) in the command line.

Sysprep /generalize /OOBE /shutdown /unattend:

Your final image should be captured at this point and the OOBE settings in the file you specified will be applied on first boot after deploying the image.

More help with the command line options can be found in the TechNet article ‘Capture an Image for Deployment (Generalize)’ and ‘Sysprep Command-Line Options.

Hope this helps,

3
  • Hmm ok, so I'll need two answer files. Does the second file need the Specialize pass settings too or is it enough with the OOBE pass?
    – Chris
    Commented Oct 5, 2013 at 10:43
  • Just tried some stuff - if I set Reseal to Audit in both pass 5 and 7, it will boot straight into audit mode after setup! After that "sysprep /generalize /oobe /unattend" with an answer file consisting of only the OOBE pass will work as intended. The only thing bothering me now is the graphical sysprep utility. Can I get rid of that?
    – Chris
    Commented Oct 5, 2013 at 14:01
  • @Chris Every time you boot into Audit mode, that window will open. It can be a nice reminder to let you know you are in Audit mode. Just 'X' out of it to continue your customizations, once you run your sysprep command to bring it out of Audit mode and into OOBE, that window will stop appearing.
    – dwolters
    Commented Oct 7, 2013 at 14:15

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .