This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Undo / Roll Back

Is there a versioning feature where we can rollback to a previous verion of a Group e.g. A group with 50 members was modified, however the changes done had an error and we need to roll back the changes, is that possible?

Parents
  • There is no versioning or built-in rollback.

    However, all changes made through ARS are logged in the Change History database.

    So, with a bit of scripting, you could interrogate the Change History for the changes made to the object in question and roll them back through your script.

    The cmdlet to pull the history information is Get-QARSOperation.

    Here's how to pull the last day's group membership changes:

    Get-QARSOperation -InitiatedAfter (Get-Date).AddDays(-1) -proxy -OperationType groupmembershipchange

Reply
  • There is no versioning or built-in rollback.

    However, all changes made through ARS are logged in the Change History database.

    So, with a bit of scripting, you could interrogate the Change History for the changes made to the object in question and roll them back through your script.

    The cmdlet to pull the history information is Get-QARSOperation.

    Here's how to pull the last day's group membership changes:

    Get-QARSOperation -InitiatedAfter (Get-Date).AddDays(-1) -proxy -OperationType groupmembershipchange

Children
No Data