HTTP Error 404.3-Not Found in IIS 7.5

You should install IIS sub components from Control Panel -> Programs and Features -> Turn Windows features on or off Internet Information Services has subsection World Wide Web Services / Application Development Features There you must check ASP.NET (.NET Extensibility, ISAPI Extensions, ISAPI Filters will be selected automatically). Double check that specific versions are checked. Under Windows Server 2012 R2, these options are split into 4 & 4.5. … Read more

System.ComponentModel.Win32Exception: Access is denied Error

Make sure your application pool identity account on your server has permissions to start that service. It works on your ASP.NET Development Server because it runs under your user account (admin) In a default IIS configuration, this account is Network service or ApplicationPoolIdentity (depending on IIS version) and usually cannot manage services. So, change the … Read more

Process exists with ExitCode 255

Exit code 255 sounds like a .NET exception within the tool (target application) you’re running. You’ll not be able to catch this exception in your code. I would register a debugger for the target application to see what exception it throws: Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options Create a key with the name of the executable you’re … Read more

How to convert .crt cetificate file to .pfx

I have solved this issue by converting this .crt file into a .pfx file using following method. To convert .crt to .pfx, we need CSA certificate (Private Key) provided by hosting provider. Below are the steps to convert this: Download and install OpenSSL software from below link based on your system type https://slproweb.com/products/Win32OpenSSL.html Run the following command on command prompt:openssl pkcs12 -export -out … Read more