Dynamic Group Service to Evaluate

Guys. 

I have about 500 dynamic groups. Is there a script or a way i don't know about in order to change all the groups to use a different administration server for the evaluation? 

Thanks in advance. 

Parents
  • Have a glance at KB211388. It goes through a few different ways (script or workflow) to update the esdaDGOriginatingService attribute.

    Here's a snippet from the script attached to the KB article that may help out.

        Get-QADGroup -Dynamic $TRUE -proxy -DontUseDefaultIncludedProperties |`
        Set-QADGroup -proxy -ObjectAttributes @{'edsaDGOriginatingService'="$ARServer"}
Reply
  • Have a glance at KB211388. It goes through a few different ways (script or workflow) to update the esdaDGOriginatingService attribute.

    Here's a snippet from the script attached to the KB article that may help out.

        Get-QADGroup -Dynamic $TRUE -proxy -DontUseDefaultIncludedProperties |`
        Set-QADGroup -proxy -ObjectAttributes @{'edsaDGOriginatingService'="$ARServer"}
Children