Is there any way to update the password for the app rule and RSV in bulk?

Hi , we are in 25.1 V, Is there any utility to update the password for app and rule set version in bulk like I can choose rule set name and it will update pwd for all the versions in one shot? thanks

As of Pega Platform 25.1, there is no out-of-the-box utility that allows you to bulk update the password (or unlock password) for all versions of a RuleSet or Application by simply selecting the RuleSet name.

You have a few options:

RuleSet Version form (manual)
Open each Rule-Admin-RuleSet-Version rule.
Update the password.
Save.
This is practical only if you have a small number of versions.

Bulk update using a custom utility (recommended)

You can build a one-time admin utility that:

Accepts a RuleSet name (or Application).
Retrieves all Rule-Admin-RuleSet-Version instances for that RuleSet.
Updates the password on each version.
Saves the instances.

This can be implemented using:

Obj-Browse/Report Definition to retrieve the RuleSet Version instances.
Obj-Open-By-Handle or data page to load each instance.
Set the password property.
Obj-Save.
Commit.

Since these are administrative rules, ensure the utility runs with an access group that has sufficient privileges and test it thoroughly in a non-production environment.

Hi @SharadK17674862 ,

I have written a utility to update the RuleSet password. Please review it—it may be helpful.

There are two ways to update the application password. Please refer to the articles below.

I hope this will help you

Thanks,

Ashok