less than 1 minute read

– Open SQL Server MGMT Studio
– New Query:

SELECT *   FROM DeploymentProperties   WHERE ColumnName = 'DisableSSLCheckForEncryption'  UPDATE DeploymentProperties   SET BitColumn = 1   WHERE ColumnName = 'DisableSSLCheckForEncryption'  SELECT *   FROM DeploymentProperties   WHERE ColumnName = 'DisableSSLCheckForEncryption'   `

`--COMMIT   --ROLLBACK  
USE MSCRM_CONFIG
BEGIN TRAN

Restart IIS after. You’ll now be able to enable data encryption.

Updated: