Monthly Archives: March 2011

StarterSTS 1.5 Download and thinktecture IdentityServer

The source code for StarterSTS 1.5 can be found here. The new Codeplex space is http://identityserver.codeplex.com (not published yet).

Posted in IdentityServer | Leave a comment

StarterSTS 1.5

I have the 1.5 version of StarterSTS sitting here for quite some time now. But I was always reluctant to release it. Some of the reasons are: too many new features for a single (small) version change. to many features … Continue reading

Posted in Azure, IdentityModel, IdentityServer | Leave a comment

Logging Output of Azure Startup Tasks to the Event Log

This can come in handy when troubleshooting: using System; using System.Diagnostics; using System.Text;   namespace Thinktecture.Azure {     class Program     {         static EventLog _eventLog = new EventLog(“Application”, “.”, “StartupTaskShell”);         static StringBuilder _out = new StringBuilder(64);         static StringBuilder _err = new StringBuilder(64);           … Continue reading

Posted in Azure | Leave a comment

Adding a Certificate to the Root Certificate Store from the Command Line (e.g. as an Azure Startup Task)

The title says it all ;) certutil -addstore root LeastPrivilegeCA.cer

Posted in Azure | 2 Comments