To add the Sign In Again button, follow these steps on each Exchange 2010 Client Access Server (CAS):
- Logon to the CAS using a local Administrator account.
- Using Windows Explorer, navigate to the %ProgramFiles%\Microsoft\Exchange Server\V14\ClientAccess\Owa\auth folder and make a copy of the logoff.aspx file for backup.
- Edit the logoff.aspx file using Notepad.
- Use Find to search for the word logoffclose. In Exchange 2010 SP1 beta this will be line 123.
- Insert the following code before this line, as a single line:
<input id="btnCls" type="submit" class="btn" title="Click here to sign in again." value="Sign In Again" onclick="window.navigate('/owa')" onmouseover="this.className='btnOnMseOvr'" onmouseout="this.className='btn'" onmousedown="this.className='btnOnMseDwn'">
- Save the logoff.aspx file.
- Copy the new logoff.aspx file to the same file path on all your 2010 CAS servers.
Edit:
You can also add the following line to get the redirection automatically.
<--- start of the snippet-->
window.navigate('https://<
Owa.ExecCommand.execute(do
<--- end of the snippet-->
And for Firefox users:
<--- start of the snippet-->
window.location('https://<
Owa.ExecCommand.execute(do
<--- end of the snippet-->
Hello,
ReplyDeleteFor Firefox works only this setting (Exchange 2010 SP3):
window.location="https:///owa"
Owa.ExecCommand.execute(document, "ClearAuthenticationCache", false);
1. Open the file “logoff.aspx”
2. Search for “function chkAuth”
3. Delete the line or uncomment “document.execCommand("ClearAuthenticationCache");”
4. Add only the two lines above (Also work with IE)
Best Regards
Michael
window.location="https://SERVERNAME/owa"
ReplyDeleteOwa.ExecCommand.execute(document, "ClearAuthenticationCache", false);