How to export GPOs history?
The below commands can be used to export the history of a GPO into a CSV file. In this example the GPO's name is "GPO1":
Import-module -Name "C:\Program Files\Quest\GPOADmin\GPOADmin.psd1"
CD VCRoot:
$GPO = Get-Item "GPO1"
Get-VCItemHistory $GPO | Export-Csv -Path "C:\temp\GPOADmin\itemHistory.csv"