Unable to fix Non-Compliant OU. The OU showing Non compliant, there is no option to check compliance or Incorporate.
原因
The most likely cause for this would be a mismatched status / substatus in the database which do not map to a good state for any actions.
解决办法
Run the below script for every problematic GPO You will need the GPOADmin ID of the object you are attempting to correct. This can be found by right clicking the object in GPOADmin and checking its properties. --- SQL Start --- UPDATE [dbo].[ObjectData] SET StatusID = 1, SubStatusID = 0, Compliant = 1 WHERE VersionControlID = '<GUID>' --- SQL END --- Example usage: UPDATE [dbo].[ObjectData] SET StatusID = 1, SubStatusID = 0, Compliant = 1 WHERE VersionControlID = 'BB0FEE77-EA94-4AF4-97BC-6AF6DD193DB2' This will set the object to an available state, and compliant. From here the user should be able to do a compliance check and incorporate live / rollback etc. as they so choose.