Sign in
Dan's WebDAV 101
This blog covers Messaging API development for Exchange and Outlook. My name is Daniel Bagley, I'm on the Messaging Developer Team.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
RSS for posts
Atom
RSS for comments
OK
Search
Tags
2007
attachments
C#
CDO
CDO 1.21
CDOEX
CDOSYS
DevMsgTeam
EWS
example
Exchange
exchange web services
HOWTO
item
mapi
meeting
message
mime
Outlook
OWA
sample
VB
vbscript
WebDAV
webdav101blog
Archive
Archives
June 2013
(1)
October 2012
(1)
August 2012
(1)
July 2012
(1)
June 2012
(1)
February 2012
(3)
January 2012
(1)
December 2011
(1)
September 2011
(9)
June 2011
(1)
February 2011
(1)
January 2011
(2)
December 2010
(2)
June 2010
(2)
January 2010
(1)
December 2009
(3)
November 2009
(1)
October 2009
(1)
August 2009
(2)
June 2009
(1)
April 2009
(2)
February 2009
(2)
January 2009
(6)
December 2008
(3)
October 2008
(3)
September 2008
(14)
August 2008
(7)
July 2008
(9)
June 2008
(3)
May 2008
(8)
April 2008
(4)
March 2008
(29)
February 2008
(9)
January 2008
(5)
November 2007
(11)
May 2007
(7)
April 2007
(2)
July 2006
(1)
June 2006
(1)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Dan's WebDAV 101
HOWTO: CDO 1.21/VBS - Get Free/Busy information
Posted
over 6 years ago
by
Webdav101
0
Comments
'----------------------------------------------------------- ' getfbCDO121.vbs - Get Free/Busy information using CDO1.21 and vbs ' Instructions: ' Save to a file called getfbCDO121.vbs ' Do the TODO: sections ' Run from the command line using: cscript...
Dan's WebDAV 101
HOWTO CDOEX C#: How to extract VCalendar stream from an appointment.
Posted
over 6 years ago
by
Webdav101
1
Comments
' TODO: ' Create a C# Winform app ' Reference to Microsoft CDO for Exchange 2000 Server Library (COM) - this ' will add a reference to ADO automaticlly. ' NOTE: Do not add a reference to ADO or ADO.NET - this will cause interferance ' with CDOEX/CDOSYS...
Dan's WebDAV 101
HOWTO: CDO 1.21/VB Expand a Distribution List
Posted
over 6 years ago
by
Webdav101
0
Comments
'HOWTO: CDO 1.21/VB Expand a Distribution List ' TODO: Create a new VB Project ' TODO: Set a reference to CDO 1.21 ' TODO: Add a button to the form and paste this code in. ' TODO: Change TODO: sections below. Private Sub Command1_Click() Dim...
Dan's WebDAV 101
HOWTO: VB/CDO 1.21 - Delete inbox message attachments over certain size
Posted
over 6 years ago
by
Webdav101
4
Comments
Here is an example: 'How to read the Inbox messages and delete attachments over a given size using VB and CDO 1.21 ' This example deletes all jpg file attachments over a certain size in an inbox. Const CONST_MAX_JPG_ATTACHMENT = 3000 ' TODO: Change...
Dan's WebDAV 101
HOWTO: Use PS_INTERNET_HEADERS with cdo 1.21 for custom properties
Posted
over 6 years ago
by
Webdav101
0
Comments
How to use PS_INTERNET_HEADERS with CDO 1.21 for custom properties. 'This example uses PS_INTERNET_HEADERS for setting a custom property const smbx="mymailbox" ' TODO: Change const ssrv="myserver" ' TODO: Change const mycdoInetPset = "8603020000000000C000000000000046...
Dan's WebDAV 101
HOWTO: VB/OOM - Display a message using Store ID and item ID
Posted
over 6 years ago
by
Webdav101
0
Comments
How to display a message in an outlook window using the store id and item id using OOM. CDO 1.21 cannot just display a message without having it being in a state of forward, reply, etc - so OOM is a better solution. 'TODO - set a reference to the outlook...
Dan's WebDAV 101
EWS DaysOfWeek cannot be set to enumerated days.
Posted
over 6 years ago
by
Webdav101
1
Comments
If your trying to set the DaysOfWeek for a WeeklyRecurrencePatternType and find that you cannot set it with enumerated values using code such as the following, you will find that it does not work. WeeklyRecurrencePatternType weeklyPattern = new WeeklyRecurrencePatternType...
Dan's WebDAV 101
EWS - Csharp - List unread inbox messages using a restriction
Posted
over 6 years ago
by
Webdav101
10
Comments
// C# sample using Exchange Web Service Proxy classes to list unread messages in an inbox using a restriction. private void FindInFolder() { // TODO: Put this code into a winform and call from a button: // TODO: create 3 text boxes called txtRequest...
Dan's WebDAV 101
HOWTO: csharp - powershell - call get-clusteredmailboxserverstatus with managed code.
Posted
over 6 years ago
by
Webdav101
1
Comments
// HOWTO: csharp - powershell - call get-clusteredmailboxserverstatus with managed code. // Sample which calls get-clusteredmailboxserverstatus and returns a list of nodes. //TODO: //#1 - Create a C# winform application and add a button. //#2 - Add namespace...
Dan's WebDAV 101
HOWTO: csharp - Exchange powershell - call get-StorageGroupCopyStatus with managed code.
Posted
over 6 years ago
by
Webdav101
1
Comments
This sample is good for both calling and for using with calling other commandlets and seeing what is returend - ie it breaks-down the return results in general. See, most examples I've found so far show only how to get exact properties and not just dump...
Dan's WebDAV 101
HOWTO: CDONTS/VBS Send an Email with an attachment
Posted
over 6 years ago
by
Webdav101
0
Comments
Here is a sample for sending mail using CDONTS... Please note that CDONTS is not supported on Windows 2003 and later: ' HOWTO: CDONTS/VBS Send and Eamil with an attatchment ' ' For more information on sending an email using CDONTS see: ' NewMail...
Page 1 of 1 (11 items)