- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-28-2022 05:39 AM
I want Fix script to delete roles, groups assigned to existing user who is inactive in sys_user table.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-28-2022 05:45 AM
hello
try this
var inusr = new GlideRecord('sys_user');
inusr.addQuery('active','false');
inusr.query();
while(inusr.next())
{
var role = new GlideRecord('sys_user_has_role');
role.addQuery('user',inusr.sys_id);
role.query();
while(role.next())
{
role.deleteRecord();
}
var group = new GlideRecord('sys_user_grmember');
group.addQuery('user',inusr.sys_id);
group.query();
while(group.next())
{
group.deleteRecord();
}
}
But usually once you make a person in active in user table automatically he /she will be removed from the groups table .
But yeah give it a try
please mark my answer correct if it helps you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-28-2022 05:45 AM
hello
try this
var inusr = new GlideRecord('sys_user');
inusr.addQuery('active','false');
inusr.query();
while(inusr.next())
{
var role = new GlideRecord('sys_user_has_role');
role.addQuery('user',inusr.sys_id);
role.query();
while(role.next())
{
role.deleteRecord();
}
var group = new GlideRecord('sys_user_grmember');
group.addQuery('user',inusr.sys_id);
group.query();
while(group.next())
{
group.deleteRecord();
}
}
But usually once you make a person in active in user table automatically he /she will be removed from the groups table .
But yeah give it a try
please mark my answer correct if it helps you

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-28-2022 06:17 AM
group.deleteRecord()
semi colon missing š
Regards,
Sumanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-28-2022 06:20 AM
yep ! thanks sumanth edited it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-28-2022 08:11 PM
Thank you.