Isolating Sitecore Scheduled Tasks to Specific Environments

> Useful for database refreshes
Cover Image for Isolating Sitecore Scheduled Tasks to Specific Environments

The Problem

As a complement to my post on database refreshes, I've written a PowerShell script chunk that can be used to isolate Sitecore scheduled tasks to specific environments (assuming that your scheduled task is performed using Sitecore PowerShell Extensions).

This is useful for preventing production-only scheduled tasks from running in downstream environments after a refresh. It saves you the step of having to make manual changes.

The Script


_16
$environmentName = [System.Configuration.ConfigurationManager]::AppSettings["env:define"]
_16
$serverRole = [System.Configuration.ConfigurationManager]::AppSettings["role:define"]
_16
_16
Write-Host "Environment: $environment"
_16
Write-Host "Server Role: $serverRole"
_16
_16
$productionEnvironmentName = "Production"
_16
_16
# Note about the '.Contains()'. You must use that syntax because '-contains' doesn't work
_16
if(-not $environmentName -eq $productionEnvironmentName
_16
-or -not $serverRole.Contains("ContentManagement")){
_16
Write-Host "This should only run on PROD CM. Exiting."
_16
exit;
_16
}
_16
_16
# Your other code...

Future Enhancements

In discussions with Michael West, he suggested that this can also be accomplished using the rules engine in Sitecore. There aren't any OOB rules that check the Sitecore configuration, but it would be ideal to compare those values before executing any scripts. That way, we don't need to add the code snippet above to every script.

Stay in your lane,

-MG


More Stories

Cover Image for How to Exclude Paths in Sitecore Content Serialization

How to Exclude Paths in Sitecore Content Serialization

> And how to exclude unnecessary media items generated by SXA

Cover Image for Azure PaaS Cache Optimization

Azure PaaS Cache Optimization

> App Services benefit greatly from proper configuration

Cover Image for NextJS: Access has been blocked by CORS policy

NextJS: Access has been blocked by CORS policy

> CORS is almost as much of a nuisance as GDPR popups