I am Dale Hayter, a Microsoft and VMware certified Technical Consultant.

My blog has been built up over the years from my experience of working on an IT helpdesk and also from being out on-site.

Self Issued Certificates

You can use the makecert tool to make your own self issued certificates. makecert -pe -r -n “CN=certnameinhere” -sky exchange -sr localmachine -ss my -len…

Enable CLR in Microsoft SQL Database

Login to the Database in SQL Management Studio. Run the following query. sp_configure ‘show advanced options’, 1; GO RECONFIGURE; GO sp_configure ‘clr enabled’, 1; GO…