In the case you have installed Sitecore 8.1 sc81151003 you may have encountered a silly error within your Sitecore Shell…
but wait a minute, I have not installed Commerce Server, why I am getting this error?
In order to remove this unpleasant error message you have to remove the Sitecore.Commerce.Pipelines.ContentEditorLicenseWarning processcor pipeline.
The following patch file will delete the element.
My reccomendation would be also to place the config in a z folder in App_Config to run as the last config.
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/"> <sitecore> <pipelines> <getContentEditorWarnings> <processor type="Sitecore.Commerce.Pipelines.ContentEditorLicenseWarning, Sitecore.Commerce"> <patch:delete /> </processor> </getContentEditorWarnings> </pipelines> </sitecore> </configuration>