<p>Utilisez PowerShell :</p>
<pre><code class="lang-auto"># Exporter toutes les GPO en HTML
Get-GPO -All | ForEach-Object {
Get-GPOReport -Guid $.Id -ReportType Html -Path "C:\GPO_Reports\$($.DisplayName).html"
}
Exporter en XML
Get-GPO -All | ForEach-Object {
Get-GPOReport -Guid $.Id -ReportType Xml -Path "C:\GPO_Reports\$($.DisplayName).xml"
}
</code></pre>
<p>Vous pouvez aussi utiliser <code>Backup-GPO -All -Path C:\GPO_Backup</code> pour une sauvegarde complète.</p>