Clear Windows Authentication in IE javascript
// This is an attempt at clearing Windows Authentication in IE when setup in IIS as the authentication method.
// This is no way a solution. Only a hack that semi worked.
javascript:try {document.execCommand("ClearAuthenticationCache");}
catch (e) { }
location.href('/');