Link to home
Start Free TrialLog in
Avatar of danielevans83
danielevans83Flag for United States of America

asked on

How to Remove OWA Links from Remote Web Workplace for SBS 2003

We currently run an SBS 2003 server at my job with Exchange. We are discontinuing our use of Exchange but would like to keep SBS 2003.

Is there a way to disable or remove the OWA or Outlook Web Access links from the Remote Web Workplace website? We have a different site to login for our email access now, and don't want to confuse the users. I have been able to locate some of the Remote Web Workplace pages but not the ones I am talking about that you see after logging in.

Is this possible?  Or can I at least change where these links point to and have them go to our new email URL?
Avatar of dfxdeimos
dfxdeimos
Flag of United States of America image

This article should put you on the right path:

http://sbsug.sg/blogs/bass_player/archive/2006/08/07/471.aspx
Avatar of danielevans83

ASKER

I can figure out how to edit the default landing page, but can't find the page you see after logging in that has the big "Check my Company Mail" link at the left side on the top of a list of 5 links.

I'm attaching a screenshot of the page I want to either drop the mail link from, or change it to point to a different URL.


screenshot.jpg
Well, once you reach the page that has the "Read my company e-mail" on it, look at the address bar and see what page it is accessing. You should have access to modify that page via the directory noted in the link above.
the URL points to a /Remote/Default.aspx file.  Upon looking at this file it only contains the following code...which clearly has no images / links to change or remove. Since it references loading.aspx I attached that pages code as well...which also has nothing I can edit.
 

<%@ Page language="c#" Codebehind="default.aspx.cs" AutoEventWireup="false" Inherits="remote._default" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > 
<html>
  <head>
    <title><%=loadResString("L_RUP_TITLE", orgName)%></title>
    <meta name="GENERATOR" Content="Microsoft Visual Studio 7.0">
    <meta name="CODE_LANGUAGE" Content="C#">
    <meta name=vs_defaultClientScript content="JavaScript">
    <meta name=vs_targetSchema content="http://schemas.microsoft.com/intellisense/ie5">
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
 <META HTTP-EQUIV="Expires" CONTENT="-1">
  </head>  
   <frameset rows="<%=m_nRowSize%>,86%" border="0">
  <frame name="header" scrolling=yes src="loading.aspx?header.aspx" noresize>
  <frame name="main" scrolling=yes src="loading.aspx">
  <noframes>  
   <p id="p1">
    <%=loadResString("L_NOFRAMES_TEXT")%>
   </p>
  </noframes>
 </frameset>
</html>
 
 
 

<%@ Page language="c#" Codebehind="loading.aspx.cs" AutoEventWireup="false" Inherits="remote.loading" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > 
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
<html>
 <STYLE>
        BODY {FONT-SIZE: 80%; MARGIN: 0px; COLOR: black; FONT-FAMILY: Verdana, Arial, 'Microsoft Sans Serif' }        
    </STYLE>
 <script language=javascript>
  function onLoad()
  {
      if (window.navigator.appName.toLowerCase().indexOf("netscape") <= -1)
      {
       if( window == top.header )
       {
        loadarea.style.display = "none";  
       }
   }
   
   var vQueryString = document.location.search;
   if( typeof(vQueryString) && vQueryString != "" && vQueryString != "?" )
   {    
    self.location.href = vQueryString.substr(1);
   }
  }
 </script>
 
 <head>
  <title><%=loadResString("L_RUP_TITLE", orgName)%></title>  
 </head>  
 
 <body bgcolor="#ffffff" onLoad="onLoad()">
 
  <div id=loadarea style="display: block">
   <table height="100%" align=center width="100%" border=0>    
    <tr valign=middle>
     <td align=center><%=loadResString("L_RUP_LOADING")%></center></td>
    </tr>    
   </table>
  </div>
 
 </body>
</html>
 
ASKER CERTIFIED SOLUTION
Avatar of dfxdeimos
dfxdeimos
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial