Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

Symptoms

After you install the following July security updates for SharePoint Server, existing Microsoft SharePoint 2010 workflows stop functioning. When this issue occurs, "c42q8," "c42ra," or "c42rh" event tags are logged in the SharePoint Unified Logging System (ULS) log.

Cause

This issue occurs because an additional validation was added in the July security update for SharePoint Server. The validation causes the existing SharePoint 2010 workflows to stop functioning.

Workaround

To work around this issue, locate the "c42q8," "c42ra," or "c42rh" event tags in the SharePoint ULS log. In these event entries, you can find details about why the workflow is blocked, per these guidelines:

  • If the blocked parts are "out of the box" workflows or workflow activities, contact Microsoft Support.

    Additionally, you can contact the farm administrator to temporarily disable the additional validation by using PowerShell: 

    In PowerShell, run the following cmdlets:

    Add-PSSnapin Microsoft.SharePoint.PowerShell
    $farm=Get-SPFarm
    $farm.EnablePreParseSecurityCheckForWorkflow = $false
    $farm.update()

  • If the blocked parts are written by using custom code, and you deploy them yourself in SharePoint Server, you should do a security review on the type that you’re trying to use. If that type is determined to be safe, you can add it to the web.config’s list of authorized types. Otherwise, you should create an alternative implementation that does not violate the security validations.

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×