|
|
Browse by Tags
All Tags » devmsgteam » How to (RSS)
Showing page 1 of 5 (48 total posts)
-
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
-
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
-
“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
-
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,
-
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
-
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
-
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
-
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
-
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
-
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
1
|
|
|