Per Nergård (MVP)
May 6, 2026
  435
(0 votes)

Hide built in scheduled job from the admin UI

Ok so this probably goes into the not so useful section but late last night I got a veery strong feeling that all projects I am  involved with have alot of builtin scheduled jobs that are never used and only add noice to the admin ui scheduled job list. So there must be a way to hide them I thought...

And it turns out that you can, even though that in retrospect this isn't such a big problem maybe :). But I created a  RCL project which you just register / configure in your solution.

You can get the code over at GitHub.

Usage
1. Add the below line to startup and then start in debug mode and check the output for a list of scheduledjobs and their guid / name

services.HideScheduledJobs(_ => { });

2. Add the Guids you want to hide

services.HideScheduledJobs(opts => opts
    .Hide(new Guid("e652f3bd-f550-40e8-8743-2c39cda651dc"), "Remove unrelated content assets")
    .Hide(new Guid("656e747e-b2cb-4930-83dc-5d8d97aeaabb"), "Trim content versions"));

Results 

All jobs visible:

Here I have hidden the bottow two

 

May 06, 2026

Comments

Please login to comment.
Latest blogs
Understanding Optimizely Opal Cost

Opal pricing are transparent at large extent, It is based on a credit consumption model rather than fixed per-user licensing or tokens consumptions...

K Khan | May 25, 2026

Optimizely CMS 12 Now Fully Supports .NET 10

This is the latest installment in our ongoing series covering .NET version support for Optimizely products. If you've been following along, you may...

Bien Nguyen | May 25, 2026

Optimizely Opal: How to Build Effective Workflow Agents

If you're building workflow agents in Optimizely Opal, this post covers how specialized agents pass context to each other, why keeping agents small...

Andre | May 20, 2026

ReviewPR: An Azure Function That Reviews Your Azure DevOps Pull Requests With Claude

A while back I wrote about an  Azure Function App for PDF creation that we use to offload PDF rendering from our Optimizely DXP site. That same...

KennyG | May 19, 2026