{% extends "base.html" %} {% set active_page = 'vms' %} {% block title %}Batch Backup — vSphere Backup Manager{% endblock %} {% block head %} {% endblock %} {% block content %}
Batch Backup
Configure and launch backups for {{ vm_names|length }} VMs simultaneously
Back to VMs
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for cat, msg in messages %}
{{ msg }}
{% endfor %} {% endif %} {% endwith %}
This will create {{ vm_names|length }} independent backup job{{ 's' if vm_names|length != 1 }}, each running in parallel with its own progress and log.
Selected VMs ({{ vm_names|length }})
Change selection
{% for name in vm_names %} {% set vm = vms_by_name.get(name, {}) %}
{{ loop.index }}
{{ name }}
{{ vm.get('guest_os','') or '' }}
{% if vm.get('power_state') == 'poweredOn' %} On {% elif vm.get('power_state') == 'poweredOff' %} Off {% else %} {{ vm.get('power_state','—') }} {% endif %} {% if vm.get('disks') %} {{ vm.disks|length }} disk{{ 's' if vm.disks|length != 1 }} {% endif %}
{% endfor %}
{% for name in vm_names %} {% endfor %}
Destination
Each VM will be backed up into its own subfolder: dest/VM_NAME/
Disk Strategy
All VMDK disks will be backed up for each VM.
Retention Policy
All successful backup copies will be preserved indefinitely.
Schedule
e.g. 6 = every 6h · 12 = twice daily · 168 = weekly
Cancel
{% endblock %} {% block scripts %} {% endblock %}