How to Retire multiple Knowledge articles
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2022 06:36 AM
Is it possible to retire multiple knowledge articles at once? I tried selecting multiple articles from the list but when I choose Updated Selected, the option to retire is not available.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2022 06:47 AM
You'll need to create a UI Action for this. You can copy the other existing UI action but just relabel the Action name and check the box for List choice.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2022 08:55 AM - edited 12-01-2022 08:55 AM
Either you can go through the approach that Mike has suggested above or the other way is to have a fix script which will be one time job to update articles to retired.
Sample script below:
var kb = new GlideRecord('kb_knowledge');
kb.addQuery(''); //Add your query here
kb.query();
if (kb.next()) {
kb.workflow_state='retired'; // Moving to Retired state
kb.update();
}
BR.
Ishaan Shoor