Home » Archives for April 2024
This article explains a couple of ways to fix an issue where after deployment, your Azure App Service suddenly starts throwing an error along the lines of “Error occurred during a cryptographic operation.at System.Web.Security.Cryptography.HomogenizingCryptoServiceWrapper.HomogenizeErrors”. The error or the StackTrace doesn’t point to anything helpful (understandably, it’ll point to a StartUp.cs…Continue reading How to solve “Error occurred during a cryptographic operation.” in Azure App Service
Well this one was a doozy. My Start Menu stopped working. And that wasn’t nice as I kind of need that. Anyway. Found a couple of ways to try and fix this. One even worked. Wrote them down for your reference (and mine, to be honest). Find them below. (I…Continue reading “Critical Error – Your Start menu isn’t working”
Another thing that I run into every now and then is creating CSRs for different customer environments. Since the requests often end up being a bit complex with a lot of SANs (Subject Alternative Names), crafting them with OpenSSL (or other console tools) is a bit laborious for my liking,…Continue reading How to export a CSR you’ve created on Windows?
This article explains how to list all “Environment Variables” (that’s pipeline variables, job / stage variables, predefined variables and even local script variables that are mounted on to the agent as Environment Variables) using PowerShell in Azure DevOps.
This article explains one possibly reason why some C# code, powered by CSOM, suddenly stops working and can’t access a SharePoint list anymore that it could before, throwing annoying and misleading exceptions like “The list is not DocumentLibrary, VersionPolicies is not supported” instead. Oh – and of course, there’s a…Continue reading CSOM suddenly throwing exceptions when trying to access list contents in SharePoint? A weird fix.