Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Browse by Tags
Search
Archives
Archives
April 2013
(1)
December 2012
(2)
August 2012
(3)
July 2012
(2)
May 2012
(2)
January 2012
(1)
December 2011
(2)
September 2011
(1)
August 2011
(1)
July 2011
(5)
June 2011
(5)
May 2011
(1)
April 2011
(3)
February 2011
(1)
November 2010
(2)
May 2010
(1)
March 2010
(7)
February 2010
(1)
January 2010
(2)
December 2009
(3)
September 2009
(3)
May 2009
(1)
April 2009
(1)
February 2009
(1)
January 2009
(1)
December 2008
(1)
November 2008
(4)
October 2008
(6)
August 2008
(6)
Tags
C#
CDOSYS
Deployment
DevMsgTeam
EWS Managed API
Exchange 2003
Exchange 2007
Exchange 2010
Exchange Web Services
HOWTO
Messaging Records Management
Outlook 2007
Outlook 2010
Powershell
PowerShell 2.0
SMTP
System.Net.Mail
Transport Agent
VB Script
Visual Studio 2005
Visual Studio 2008
Visual Studio 2010
VSTO
VSTO 3.0
WebDAV
Common Tasks
Blog Home
Email Blog Author
RSS for posts
RSS for comments
Tagged Content List
Blog Post:
Stamping Archive Policy Tag using EWS Managed API from PowerShell(Exchange 2010)
Akashb
In a previous post I had explained how to stamp a Retention Policy Tag using EWS Managed API , In this post I will explain the changes you will need to make to stamp an Archive Policy Tag. What’s the difference between these two? Retention Policies consist of delete tags, i.e. retention tags with either...
on
7 Dec 2012
Blog Post:
Exchange 2013 Preview is now AVAILABLE!
Akashb
Download Microsoft Exchange Server 2013 Preview http://technet.microsoft.com/en-US/evalcenter/hh973395 Developer Resources for Exchange 2013 EWS client design overview for Exchange 2013 http://msdn.microsoft.com/en-us/library/jj190904(EXCHG.150).aspx Exchange Web Services Managed API Version 2.0 - Technical...
on
3 Aug 2012
Blog Post:
EWS Managed API is lying to me!
Akashb
I have been working with Exchange Web Services(EWS) for a long time and this is the first time I saw that the EWS was lying to me! The code was executing a FindItem call on a list of folders and all of a sudden it threw the following error: “Error occurred: The request failed. The remote server returned...
on
20 Jul 2012
Blog Post:
After installing KB 2553248, Outlook 2010 starts to crash when we open Meetings in the Calendar
Akashb
Here's a scenario we recently had reported: A customer running Outlook 2010 installs KB 2553248 , and now Outlook crashes when they try to open meetings that were created using Exchange Web Services (EWS). In fact there are a few other scenarios where Outlook crashes: 1) Create a Meeting request using...
on
11 May 2012
Blog Post:
Stamping Retention Policy Tag on Items using EWS Managed API 1.1 from PowerShell(Exchange 2010)–Part 2
Akashb
Yes, this is similar to the script in my previous post but is also different in the following ways: This script searches the entire mailbox and looks for items in folders that contain mail items or in other words where the folders class is IPF.Note This scripts also shows how to use the Not, Exists the...
on
11 Jan 2012
Blog Post:
Stamping Retention Policy Tag on Items using EWS Managed API 1.1 from PowerShell(Exchange 2010)
Akashb
This post deals with a scenario where we need to stamp Retention Policy on specific items. In this case we wanted to stamp a policy on items with a specific message class. In my previous post I had explained about Messaging records management and how to stamp the policy on a folder. Please do read my...
on
30 Nov 2011
Blog Post:
Searching contacts using EWS Managed API 1.1 from PowerShell (Impersonation, SearchFilterCollection, ContainsSubstring)
Akashb
Here is another example of using EWS Managed API with PowerShell 2.0. In this case the requirement was to be able to find out all contacts that have Hotmail email address in any of the Email Address fields. This provided me to opportunity to demonstrate the use SearchFilterCollection and ContainsSubstring...
on
30 Nov 2011
Blog Post:
Stamping Retention Policy Tag using EWS Managed API 1.1 from PowerShell(Exchange 2010)
Akashb
Exchange Web Services with PowerShell! In the last few days I have written quite a few scripts that use Exchange Web Services Managed API 1.1 with PowerShell, you will agree that it is not as easy as writing Exchange Web Services Managed API 1.1 with C# and it takes a bit of getting used to it. One of...
on
10 Aug 2011
Blog Post:
Creating folder using EWS Managed API 1.1 from PowerShell
Akashb
A customer of mine wanted to create a folder under Inbox for thousands of mailboxes. He also wanted to use PowerShell to do it. What better way that using Exchange Web Service(Managed API) with Impersonation to do the job. The list of the users are available in a text file. The First row denotes the...
on
22 Jul 2011
Blog Post:
ExpandGroup method returns no results for Dynamic Distribution Group in Exchange 2010
Akashb
Strange but TRUE! This work in Exchange 2007 but does not in Exchange 2010. Below is the request and response that I get from a Exchange 2010 server for the ExpandGroup Exchange Web Services call: Request: <? xml version ="1.0" encoding ="utf-8" ? > < soap:Envelope xmlns:xsi ="http://www.w3...
on
2 Jun 2011
Blog Post:
HOW TO: Read User Configuration for OWA in Exchange 2010 using EWS Managed API 1.0
Akashb
The User Configuration operations enable clients to create, delete, retrieve, and update user configuration information. These operations are new in Exchange 2010. Configuration data consists of groups of related application settings. Each group of settings is stored together in separate stream properties...
on
11 Mar 2010
Blog Post:
HOW TO: Configure Exchange 2007 and Exchange 2010 for using Impersonation
Akashb
Exchange 2010: Configuring Exchange Impersonation (Exchange Web Services) http://msdn.microsoft.com/en-us/library/bb204095.aspx Using Exchange Impersonation XML Request/Response http://msdn.microsoft.com/en-us/library/bb204088.aspx Using Impersonation in EWS Managed API http://msdn.microsoft.com/en-us...
on
10 Mar 2010
Blog Post:
HOW TO: Build a complex search using SearchFilter and SearchFilterCollection in EWS Managed API 1.0
Akashb
Here is another sample for building a complex search criteria for Finding items. We use the SearchFilter and SearchFilterCollection to build the “Restriction”. In short we are finding items which have a User Property called X-State AND the value of X-State is not (3 OR 4 OR 5) AND the ItemClass is IPM...
on
5 Mar 2010
Blog Post:
HOW TO: List Top Level Folders in a Mailbox using EWS Managed API 1.0
Akashb
Now that developers have started using Exchange Web Services Managed API, I thought it would be nice for me to post some samples to do simple things using the API. This sample shows: 1)How to list the Top Level folders in a mailbox. 2)Using Paging with the FolderView class. 3)Enabling logging of the...
on
5 Mar 2010
Blog Post:
HOW TO:Using Exchange Web Services Managed API 1.0 from PowerShell 2.0
Akashb
Requirement: Setting the OOF setting for a user using PowerShell Script. The best and the easiest option I could think of was to use the Exchange Web Services Managed API 1.0 from with PowerShell 2.0. I finally got it to work! # The script requires the EWS managed API, which can be downloaded here: #...
on
12 Feb 2010
Page 1 of 1 (15 items)