Federated identity management using Active Directory Federation Services
Use a GPO backup and import, not restore. Restore only works in the GPO's original domain; import can apply the backed-up settings to a GPO in another domain or forest.
On the source domain:
Backup-GPO -Name 'Advanced Audit Policy' -Path 'C:\GPOBackups'
Copy that backup to an administrative computer for the destination domain. If the GPO contains domain-specific users, groups, computers, or UNC paths, create a .migtable file with the GPMC Migration Table Editor. Then import into a new, initially unlinked GPO:
Import-GPO `
-BackupGpoName 'Advanced Audit Policy' `
-Path 'C:\GPOBackups' `
-TargetName 'Advanced Audit Policy' `
-Domain 'target.example.com' `
-MigrationTable 'C:\GPOBackups\target.migtable' `
-CreateIfNeeded
Import transfers the policy settings, including Advanced Audit Policy Configuration. It does not recreate the source GPO links or replace the destination GPO's security filtering. Review those separately, compare the GPMC Settings report, and test the imported GPO on a test OU before production deployment.
Sources:
This answer was drafted with assistance from OpenAI Codex. I reviewed the cited Microsoft documentation before posting.