Inactivate mass users

Rumceisz October 7, 2013

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

1 answer

1 accepted

0 votes
Answer accepted
Tiago Comasseto
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 7, 2013

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

Rumceisz October 7, 2013

thank you very much!

Suggest an answer

Log in or Sign up to answer