Disabling Workflows with Overrides
Published Feb 15 2019 07:35 AM 1,924 Views
First published on TECHNET on Jul 07, 2011

I’ve had a few customers and partners ask how they can disable our out of box workflows so they can implement their own custom workflow logic in their own code.  It’s actually really easy to do with a little “know how” and some XML editing.  If you are going to use this technique to disable workflows that we provide out of the box, please be aware that we have not specifically tested that scenario and you should thoroughly test out what the impact is of disabling these workflows are on your system and processes before you try this in a production environment.


Usually customers and partners want to disable our change request related workflows when they want to do something like this so I’ll provide the example of disabling the workflow that changes a CR status from New to In Progress as my example.  This behavior happens as a result of either the New Change Request or the Activity Added workflow running so in the example I will show how to disable both of them with an override.


For those of you with a background in SCOM you are probably already familiar with overrides.  Overrides allow you to override the configuration of workflows – rules, monitors, and runtime tasks.  You can override parameters like scheduled intervals, thresholds, etc using this technique but in this case what we want to do is override the Enabled property.


To do this we first need to identify which rules we want to disable and which MPs those rules are in.  To do this I ran a query like this in the ServiceManager database:


select * from rules where rulename like '%change%' or rulename like '%activity%'


You can also find the rule name using the Get-SCSMRule cmdlet in SMLets if PowerShell is more your thing than T-SQL.


You also need to know the management pack ID, public key token, and version that the rule(s) are contained in because we are going to need to create references to those MPs.  To do that just grab the ManagementPackId GUID from the query results:



And run a query like this:


select MPName, MPVersion, MPKeyToken from managementpack where managementpackid = '2BF6413B-BB6C-1108-D33A-152C9D1DB56B'



Now we just need to create a new management pack and reference the System.Library and ServiceManager.ChangeManagement.Library management packs.  Then we just add the Monitoring section, add an Overrides section inside of there and declare each of our RulePropertyOverride elements:


<ManagementPack xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" ContentReadable="true" SchemaVersion="1.1" OriginalSchemaVersion="1.1">
<Manifest>
<Identity>
<ID>Microsoft.Demo.Overrides</ID>
<Version>1.0.0.0</Version>
</Identity>
<Name>Override Demo</Name>
<References>
<Reference Alias="System">
<ID>System.Library</ID>
<Version>7.0.6555.0</Version>
<PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
</Reference>
<Reference Alias="ChangeLibrary">
<ID>ServiceManager.ChangeManagement.Library</ID>
<Version>7.0.6555.0</Version>
<PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
</Reference>
</References>
</Manifest>
<Monitoring>
<Overrides>
<RulePropertyOverride ID="DisableNewChangeRequestRule" Context="System!System.Entity" Enforced="false"
Rule="ChangeLibrary!ServiceManager.ChangeManagement.NewChangeRequestRule" Property="Enabled">
<Value>false</Value>
</RulePropertyOverride>
<RulePropertyOverride ID="DisableActivityAddedRule" Context="System!System.Entity" Enforced="false"
Rule="ChangeLibrary!ServiceManager.ChangeManagement.ActivityAddedRule" Property="Enabled">
<Value>false</Value>
</RulePropertyOverride>
</Overrides>
</Monitoring>
<LanguagePacks>
<LanguagePack ID="ENU" IsDefault="true">
<DisplayStrings>
<DisplayString ElementID="Microsoft.Demo.Overrides">
<Name>Override Demo</Name>
</DisplayString>
</DisplayStrings>
</LanguagePack>
</LanguagePacks>
</ManagementPack>
Just to explain a little bit what is going on here:


  • the ID attribute can be anything. It just needs to be unique within the MP.


  • the Context attribute should always point at the System.Entity in SCSM. It’s just the easiest thing to do to ensure it is always disabled.


  • the Enforced attribute should generally always be set to ‘false’. That allows other overrides which are marked Enforced = ‘true’ to override this override.


  • The Rule attribute should point to the rule name of the rule you want to override the property for. Here, I used an MP reference alias in front of the rule name since the rule is in another MP.


  • The Property attribute needs to be the name of the property – in this case we want to override the Enabled property value.


  • The Value element contains the override value. In this case we use false to disable the rule by setting its Enabled property to false.



Now, we can just import this MP into SCSM and disable those two rules. To re-enable them just delete the MP.
I’ve attached the demo MP for this below.

Microsoft.Demo.Overrides.xml

Version history
Last update:
‎Mar 11 2019 08:49 AM
Updated by: