{% extends "base.html" %} {% block title %}{{ friendly_name }} - Unattend Editor{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
Edit this image's answer file below. Fields are grouped by Windows setup stage. The Form Editor is the source of truth; switch to Raw XML only for changes the form does not cover.
System & Regional
Machine Settings
Use * to let Windows auto-generate a name.
Applied during the specialize pass.
International Settings click to expand
Driver Paths {{ data.driver_paths|length }}
{% for dp in data.driver_paths %} {% endfor %}
# Path
{{ loop.index }}
{% if not data.driver_paths %}
No driver paths configured. Click Add to add one.
{% endif %}
Accounts & Sign-in
User Accounts (Local) {{ data.user_accounts|length }}
{% for acct in data.user_accounts %} {% endfor %}
# Name Password Group Display Name
{{ loop.index }}
{% if not data.user_accounts %}
No local accounts configured. Click Add to add one.
{% endif %}
AutoLogon
Number of auto-logon attempts.
Out-of-Box Experience (OOBE)
OOBE Settings
{% set bool_oobe_fields = [ ("HideEULAPage", "Hide EULA Page"), ("HideOEMRegistrationScreen", "Hide OEM Registration Screen"), ("HideOnlineAccountScreens", "Hide Online Account Screens"), ("HideWirelessSetupInOOBE", "Hide Wireless Setup in OOBE"), ("HideLocalAccountScreen", "Hide Local Account Screen"), ("SkipUserOOBE", "Skip User OOBE"), ("SkipMachineOOBE", "Skip Machine OOBE"), ] %} {% for key, label in bool_oobe_fields %}
{% endfor %}
1 = Recommended, 2 = Install only updates, 3 = Skip
OOBE Time Zone
Separate from the specialize-pass time zone in Machine Settings above.
Setup Commands (RunSynchronous)
These commands run as a validated golden sequence. Order matters within each list. Reorder with the arrows or by dragging the handle only when you are sure.
Specialize Commands {{ data.specialize_commands|length }}
{% for cmd in data.specialize_commands %} {% endfor %}
Order Path / Command Description
{{ loop.index }}
{% if not data.specialize_commands %}
No specialize commands configured. Click Add to add one.
{% endif %}
First Logon Commands {{ data.firstlogon_commands|length }}
{% for cmd in data.firstlogon_commands %} {% endfor %}
Order Command Line Description
{{ loop.index }}
{% if not data.firstlogon_commands %}
No first logon commands configured. Click Add to add one.
{% endif %}
Raw XML
Editing raw XML bypasses the form. Save here to write your changes directly.
{% endblock %} {% block extra_scripts %} {% endblock %}