@@ -454,25 +454,73 @@ the original location keeps the instance associated with the same Shared
454454Filesystem. Restoring to a different location results in deployment of a
455455regular instance.
456456
457- Restore Guest Files with Windows Instance Backup
458- ------------------------------------------------
457+ Restore Guest Files
458+ -------------------
459+
460+ Guest file restore requires the backed-up instance IP address to be reachable
461+ from the host selected by Veeam for mounting the backup. Veeam can use either
462+ a manually selected mounting host or an automatically selected mounting host.
463+ After mounting the backup on the selected host, files can be browsed and then
464+ restored or copied as needed.
465+
466+
467+ Linux Instance
468+ ~~~~~~~~~~~~~~
469+
470+ For Linux guest file restore, Veeam performs the restore workflow through the
471+ mounting host (KVM hypervisor host). The mounting host connects to the
472+ instance over SSH to restore files directly into the instance or copy files
473+ out from the backup.
474+
475+ Windows Instance
476+ ~~~~~~~~~~~~~~~~
477+
478+ Unlike Linux guest file restore, restore on a Windows instance may happen
479+ over SMB share. Ensure that the instance is reachable from the selected
480+ mounting host, or from the Veeam server when an automatically selected
481+ mounting host is used.
482+
483+ Ensure connectivity over the following ports:
484+
485+ * 135
486+ * 445
487+
488+ Also ensure that file sharing is enabled and allowed on the Windows instance.
489+
490+ By default, when connecting remotely to a Windows machine using a local
491+ administrator account (not a domain account), Windows applies UAC filtering
492+ and provides a restricted token. This can prevent administrative operations
493+ over SMB administrative shares such as ADMIN$ and C$.
494+
495+ To disable UAC remote token filtering for local administrator accounts, use:
496+
497+ ::
498+
499+ New-ItemProperty `
500+ -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System `
501+ -Name LocalAccountTokenFilterPolicy `
502+ -Value 1 `
503+ -PropertyType DWord `
504+ -Force
459505
460506When restoring guest files from a Windows instance backup, ensure that
461- ``ntfs-3g `` is installed on the KVM hypervisor hosts.
507+ ``ntfs-3g `` is installed on the KVM hypervisor hosts to allow mounting
508+ instance backups.
462509
463510For Debian/Ubuntu-based hosts, run the following commands:
464511
465512::
466513
467- apt update
468- apt install ntfs-3g -y
514+ apt update
515+ apt install ntfs-3g -y
469516
470517For RHEL/CentOS-based hosts, run the following commands:
471518
472519::
473520
474- dnf install epel-release -y
475- dnf install ntfs-3g -y
521+ dnf install epel-release -y
522+ dnf install ntfs-3g -y
523+
476524
477525Image Transfer for Backup and Restore
478526-------------------------------------
0 commit comments