Browse by Tags

All Tags » devmsgteam » How to   (RSS)
Showing page 1 of 5 (48 total posts)
  • How to do FindItem using Extended MAPI Properties in a Exchange Web Service call?

    We can perform GetItem Exchange Web Service call to get Extended MAPI Properties refer my previous post How to get Extended MAPI Properties in the GetItem Exchange Web Service call? and can also perform FindItem based on the Extended MAPI Properties. In the sample code given below we would use CleanGlobalObjectId to perform FindItem for Calendar Items: NOTE: Following programming examples is for illustration only, without warranty either expressed or implied, including, but not limited to, the implied
    Posted to Brijs Blogging... Looking Beyond the Obvious (Weblog) by brijs on November 12, 2009
    Filed under: DevMsgTeam, How to, C#, Exchange Server 2007, EWS, Exchange Web Services, Exchange Server 2010
  • How to get Extended MAPI Properties in the GetItem Exchange Web Service call?

    We can get/set Extended MAPI Properties using Exchange Web Services for Exchange Server 2007/2010. Here is sample code snippet to get value for CleanGlobalObjectID via GetItem call of Exchange Web Services: NOTE: Following programming examples is for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This sample code assumes that you are familiar with the programming language
    Posted to Brijs Blogging... Looking Beyond the Obvious (Weblog) by brijs on November 6, 2009
    Filed under: DevMsgTeam, How to, C#, .Net, Exchange Server 2007, Exchange Web Services, Visual Studio 2008, Exchange Server 2010
  • How to deploy VSTO add-ins for Outlook?

    “What is the best way to deploy VSTO add-ins for Outlook?” This is one of the most common question asked by our customers who are developing add-ins using Visual Studio Tools for Office(VSTO) for Outlook and other Office Applications.  Simple answer is that it’s all depend on you requirements and environment. We can opt for either ClickOnce Deployment or Windows Installer. We can refer to Choosing a Deployment Strategy and the following table compares the features of ClickOnce deployment with
    Posted to Brijs Blogging... Looking Beyond the Obvious (Weblog) by brijs on October 23, 2009
    Filed under: Office Add-ins, DevMsgTeam, How to, VSTO, Outlook Add-ins, Outlook 2007, VSTO 3.0, .Net, Visual Studio 2008, Deployment
  • How to create a Service Account with full access to all mailboxes on Exchange Server 2007 mailboxstore?

    We can use following Exchange PowerShell cmdlet to grant a Service Account full access to all the mailboxes on Exchange Server 2007 mailboxstore, but do so only in accordance with your organization's security and privacy policies: Get -mailboxserver <servername> | add-adpermission –user <service account> -accessrights GenericRead, GenericWrite -extendedrights Send- As , Receive- As , ms-Exch-Store-Admin .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas,
    Posted to Brijs Blogging... Looking Beyond the Obvious (Weblog) by brijs on September 1, 2009
    Filed under: DevMsgTeam, How to, Exchange Server 2007, Exchange Web Services, Exchange Web Services Managed API, PowerShell
  • How to search for SMTP Servers in a domain programmatically using ADSI?

    Here is a sample vbscript using which we can get SMTP servers instance names in a particular domain pragmatically via ADSI. NOTE: Following programming examples is for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This sample code assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. This sample
    Posted to Brijs Blogging... Looking Beyond the Obvious (Weblog) by brijs on August 28, 2009
    Filed under: DevMsgTeam, How to, Exchange Server 2003, Exchange Server 2007, VBScript, VB, SMTP, Visual Basic
  • How to : Determine the version number, build number of Exchange Server 2007 using cmdlet?

    With continuation of my previous article , it just points out to find how we can get by using UI(User Interface like snap-in, MMC Console, ESM..etc)’s. This time, let me try something different with Exchange Server 2007 (i tried with Exchange Server 2007 SP1 RUx) with its powershell/cmdlet. In order to get the version number, i tried like this to obtain the attributes of the server, > Get-ExchangeServer | Select ExchangeVersion, AdminDisplayVersion This provides the ExchangeVersion and AdminDisplayVersion
    Posted to Le Café Central de DeVa (Weblog) by deva on July 29, 2009
    Filed under: Exchange Server 2007, cmdlet, Powershell, Exchange Management Shell (EMS), How to, DevMSGTeam, development, Exchange Programming, Service Pack, Build, version
  • Outlook Object Model: How to identify existing categories and updating/adding new categories in Outlook 2007 using programmatically?

    With continuation of my previous–related blog post , I got this task to find out the way how to identify the existing categories and updating/adding new categories in Outlook 2007 using Outlook Object Model programmatically. I tried the following to find whether the category exists or not: Public Function CategoryExists(categoryName As String ) As Boolean   Dim category As Outlook.category   Set category = Application.Session.categories(categoryName)   If Not (category Is Nothing )
    Posted to Le Café Central de DeVa (Weblog) by deva on July 22, 2009
    Filed under: Code Snippets, How to, Outlook Programming, Outlook Object Model (OOM), DevMSGTeam, development, color, Category, Outlook, Outlook Categories, shortcutkey
  • WebDAV : How to retrieve list of folders from Exchange Server using Search method (WebDAV) programmatically ?

    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; System.Net.CredentialCache MyCredentialCache; string strRootURI = "http://server/exchange/username/Inbox/" ; // Provide the valid URI string strUserName = "UserName" ; string strPassword = "Password" ; string strDomain
    Posted to Le Café Central de DeVa (Weblog) by deva on July 22, 2009
    Filed under: Exchange Server 2007, Exchange Server 2003, Code Snippets, WebDAV, How to, DevMSGTeam, Programming, development, search, webresponse, CredentialCache, webrequest, credentials, Exchange Programming, inbox
  • Remove all PST from the Outlook Mailbox using VBScript

    If you would like to remove all of the Personal Folders file .PSTs attached to the Outlook Mailbox profile then we can use RemoveStore Method. Here is a sample VBScript to perform the job for us: NOTE: Following programming examples is for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This sample code assumes that you are familiar with the programming language being
    Posted to Brijs Blogging... Looking Beyond the Obvious (Weblog) by brijs on May 6, 2009
    Filed under: DevMsgTeam, How to, Outlook 2007, Outlook 2003, VBA, Outlook Object Model, VBScript
  • Delegate Access and Delegate Access Management with Exchange Web Services.

    One of the common request from our customers is to provide interface to work programmatically with Delegate Settings for Outlook. Microsoft Exchange Server 2007 Service Pack 1 (SP1) introduces delegate access and delegate access management through Exchange Web Services . The following delegate access functionality is available starting with Exchange 2007 SP1: Delegates can access the mailbox of a principal and perform search, create, delete, update, and copy operations. You can enable delegate access
    Posted to Brijs Blogging... Looking Beyond the Obvious (Weblog) by brijs on May 5, 2009
    Filed under: DevMsgTeam, How to, Outlook 2007, Exchange Server 2007, EWS, Exchange Web Services, Exchange Web Services Managed API, Exchange Server 2010, Delegates
1 2 3 4 5 Next >

© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Microsoft
Page view tracker