{% extends "base.html" %} {% block title %}{{ friendly_name }} - Unattend Editor{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ friendly_name }}

{{ image_type }}/Deploy/FlatUnattendW10.xml
Driver Paths
{% 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 %}
Machine Settings
Use * to let Windows auto-generate a name.
Specialize Commands (RunSynchronous)
{% 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 %}
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
User Accounts (Local)
{% 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.
International Settings (click to expand)
OOBE Time Zone
Separate from the specialize-pass time zone in Machine Settings above.
First Logon Commands
{% 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
{% endblock %} {% block extra_scripts %} {% endblock %}