Hi All,
we need to inactivate 200+ users in Jira. Is there a jelly script which inactivate these users. It's important that not delete but inactivate (we need to retain the group memberships).
Thanks in advance!
Cheers,
Rumi
Community moderators have prevented the ability to post new answers.
Hi Rumi,
I think the easiest way to inactive those users is by executing a SQL query. This is an example:
update cwd_user set active = 0 where user_name in (test1, test2);
I hope it helps.
Cheers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.