Browse by Tags
All Tags »
Exchange Server 2003 (RSS)
Recently one of my customer updated that they get an different issue with their ASP application. This application running on their Web server that uses MAPI to read the Contacts folder in the Public Folders from Exchange Server 2003 SP2 machine. The user
Read More...
I was reading couple of relevant documents, i noticed this blog post “ Millions Switch to Exchange and SharePoint from Notes ”. It talks about millions of users switched to Exchange Server and SharePoint from Notes – Really it was amazing to hear. I noticed
Read More...
Determine version number of Exchange: To determine the version number, the build number, and the service pack level of a Microsoft Exchange Server computer, check the following properties of the server. If you have Exchange Server 4.0, Exchange Server
Read More...
using System; using System.Net; using System.IO; using System.Text; using System.Xml; namespace SampleCode { class GetFolders { static void Main( string [] args) { // Variables. System.Net.HttpWebRequest Request; System.Net.WebResponse Response;
Read More...
I created this code snippet, which helps us to mail-disable in the Exchange Server 2003 SP2 (Native mode) – public folders. For this i tried this, i used C#.Net & CDOEXM. In this below code, i try to mail-disable the public folder named “publicfolder1”.
Read More...
We can enumerate the store event sink as given below: 'This command helps us to enumerate the list of registered store event sink's with the 'administrator user's inbox available in contoso.com C:\> cscript regevent.vbs enum "file://./backofficestorage/contoso.com/mbx/administrator/inbox"
Read More...
Per the support KB which talks about how to grant permissions to all mailboxes. Granting access to all mailboxes can be useful when you are completing tasks such as offline recovery. As per the support KB , it’s recommended that not to use this procedure
Read More...
Per the support KB , Microsoft PSS has the support policy for customization of Outlook Web Access for Exchange that cover its versions like 5.5, 2000 & 2003. Per the article, we can get more information regarding the support policy for OWA customization
Read More...
My customer has CDOEX based legacy application which pulls the calendar and appointment items. Later they had merged their Exchange Server 2003 SP2 along with Exchange Server 2007 SP1 – mixed mode environment. He had an unique issue, whenever he tries
Read More...
What is CDO for Workflow? CDO for Workflow (CDOWF) is built-in functionality provided with Microsoft Exchange 2000 Server. By using CDOWF, which is driven by the Exchange store event architecture, you can design workflow applications without having to
Read More...
If you work with Exchange Server 2007, this method is no longer required. But, it can be used with Windows Server 2003 and Exchange Server 2007 configurations when the ability to change passwords after they have expired or when users are required
Read More...
If you work with Outlook Web Access (OWA) along with Exchange Server 2000 or/and Exchange Server 2003 or/and Exchange Server 2007, then please find the wonderful technet article , which i read frequently and distribute it with my customers. This article
Read More...
Code Snippet (C#): //Declaration part string strExchSvrName = "" ; string strMailbox = "" ; string strCalendarUri = "" ; string strDomain = "" ; string strUserName = "" ; string strPassword = "" ; System.Net.HttpWebRequest WebDavRequest = null ; System.Net.HttpWebResponse
Read More...
Using PFDAVAdmin we need to use the "Show deleted subfolders" option which enumerates any deleted subfolders of the currently selected folder. Note that the deleted folders are preserved only if Deleted Item Retention has been configured on
Read More...
Please find the Code Snippet Access Exchange Server 2003 using WebDAV in your Web application per KB : 1: 'Declaration Section 2: Dim strServerName as String = "Server Name" 'TODO: Change to your environment 3: Dim strDomain as String = "Domain Name"
Read More...