GPO – Backup & Restore
# Group Poliy Modul laden Import-Module -Name GroupPolicy # Gruppenrichtlinien und deren IDs auflisten Get-GPO -All | Sort-Object -Property DisplayName | Format-Table -Property DisplayName, Id # Alle GPOs zählen (Get-GPO -All).Count # Backup der GPOs anlegen Backup-Gpo -All -Path C:\Temp # Restore der GPOs? Restore-GPO -All -Path C:\Temp # Einzelnes GPO sichern Backup-GPO -Name 'WMI' -Path C:\Temp # Einzelnes GPO wiederherstellen Restore-GPO -Name 'WMI' -Path C:\Temp