Tag: iis
-
Missing Windows Authentication Feature IIS and Windows 10
If you have windows 10 Home or SL version when might be you are unable to see Windows Authentication under IIS options when installing. To enable “Windows Authentication” either you need to upgrade the OS to Pro version or you can run this command to enable it. C:\WINDOWS\system32>dism /online /norestart /add-package:%SystemRoot%\servicing\Packages\Microsoft-Windows-IIS-WebServer-AddOn-2-Package~31bf3856ad364e35~amd64~~10.0.17134.1.mum The file name will…
-
SQL Server 2016 Always Encrypted Timeout at IIS
Always Encrypted is a feature designed by the Microsoft in SQL Server 2016 to protect sensitive data, such as credit card numbers or national identification numbers (SSN). It allows clients to encrypt sensitive data inside client applications. When you work with Always Encrypted in development environment, it will be works fine because it requires certificate…
-
Debugging VS2013/VS2015 Websites Using 64-bit IIS Express
If you are working on ASP.NET MVC web sites in Visual Studio 2013 (VS2013) or 2015 (VS2015), and want to debug 64bit application, you need to do following changes in Visual Studio. f you don?t do this, you will likely get a message similar to: ?Could not load file or assembly or one of its…
-
How to enable HTTP Compression of Static and Dynamic Contents IIS
Enabling compression of static and dynamic contents of your website will be more help to load your website faster on browsers. To enabling both you must have to install “Dynamic Compression” and “Static Compression” on the server features and roles. Open server manager Roles > Web Server (IIS) Role Services (scroll down) > Add Role…