Thursday 17 September 2015

How can I switch themes in Visual Studio 2012 ?

In Visual Studio 2012, open the Options dialog (Tools -> Options). Under Environment -> General, the first setting is "Color theme." You can use this to switch between Light and Dark.
The shell theme is distinct from the editor theme--you can use any editor fonts and colors settings with either shell theme.
O hai!
There is also a Color Theme Editor extension that can be used to create new themes.

Thursday 12 March 2015

Removing HTTPS binding affects other sites.

You may receive the below error message while removing https binding for domain in IIS.

Removing HTTPS binding may affect the other sites

Solution: If you remove the https binding for the site through IIS then the SSL certificate will also be removed for another domain to which the certificate is assigned.

The only way is to remove the SSL bindings from the applicationhost.config file. 

# Login to the server through RDP.
# Go to path C:/windows/system32/inetsrv/config
# Open the applicationhost.config file
# Search for domain SSL binding which you want to remove.
# Delete that complete line of the SSL binding and save the file.

You will see that the SSL binding for the domain has been removed without affecting other domains.

Note: Make sure you take the backup of the applicationhost.config file before making changes