WORKAROUNDThe following PowerShell script can be run in a PowerShell session or in the PowerShell ISE on the Active Roles Administration Service host. This script will list all pending Temporal Group operations and their associated Active Directory Domain Controllers:
Import-Module ActiveRolesManagementShell -WarningAction SilentlyContinue
Connect-QADService -Proxy | Out-Null
$operations = (Get-QARSOperation -OperationStatus Pending -SizeLimit 0 | Where-Object{ $_.Controls.ID -eq '13'})
$domainControllers = @()
Foreach($operation in $operations)
{
for($i=0; $i -lt $operation.Controls.Count; $i++)
{
if($operation.Controls.ID.Get($i) -eq '13')
{
$operationRef= [PSCustomObject]@{
ID = $operation.ID
DomainController = $operation.Controls.Value.Get($i)}
$domainControllers += $operationRef
}
}
}
$domainControllers
If this script returns the name of Active Directory Domain Controllers that have been decommissioned and one or more pending operations need to be updated, please contact Support and reference this solution.
STATUS
This issue has been resolved in Active Roles 8.0.1 LTS and Active Roles 8.1.3.