Sign In
For lack of a better word
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Backup and Restore
BlogSphere
Buddies
CDO 1.21
CLR
COM
DevMsgTeam
ECE
Exchange
Exchange Web Services
Exchange Writer
Extended MAPI
KB
OT
Outlook
Outlook Addins
Outlook Automation
Powershell Automation
S/MIME
VSS
VSTO
VSTO 2005
Windows 7
Windows Vista
Archive
Archives
August 2011
(1)
July 2011
(1)
May 2011
(1)
August 2010
(2)
June 2010
(1)
March 2010
(1)
February 2010
(2)
December 2009
(3)
October 2009
(5)
September 2009
(2)
August 2009
(1)
June 2009
(2)
May 2009
(1)
April 2009
(1)
March 2009
(3)
February 2009
(1)
January 2009
(1)
December 2008
(1)
November 2008
(2)
October 2008
(5)
September 2008
(1)
July 2008
(1)
March 2008
(1)
August 2007
(1)
July 2007
(3)
June 2007
(4)
May 2007
(1)
March 2007
(1)
December 2006
(1)
MSDN Blogs
>
For lack of a better word
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
For lack of a better word
Recovering Personal Archive Mailboxes from a Recovery Database
Posted
6 months ago
by
Dave V - MSFT
0
Comments
Personal archive mailboxes are new in Exchange 2010. They are designed to be a replacement for personal PSTs. They are better for Administrators who need to manage end users' personal repositories for email while at the same time ensure compliance and...
For lack of a better word
Where or where has my Where-Object gone?
Posted
6 months ago
by
Dave V - MSFT
0
Comments
If you have done any remote runspace creation against Exchange 2010 you have undoubtly run into this error message: "Script block literals are not allowed in restricted language mode or a Data section" or "The term 'Where-Object' is not recoginized...
For lack of a better word
How to use the Microsoft Exchange Troubleshooting Assistant (ExTra) to troubleshoot RPC Client Access issues
Posted
8 months ago
by
Dave V - MSFT
0
Comments
I often ask customers to use ExTra to troubleshoot RPC Client Access issues. Rather then write this over and over again, here are the steps for using ExTra to troubleshoot a RPC Client Access issue. On the CAS Server that the MAPI client is connecting...
For lack of a better word
It's a dirty job but someone has to do it
Posted
over 2 years ago
by
Dave V - MSFT
0
Comments
Well here is just more of the same, Stephen posted about querying an item to see whether it's "dirty" or not . Here is the .NET equivalent. I didn't actually test these this time so your feedback is welcome. Visual Basic Public Function IsItemDirty...
For lack of a better word
Now you see me, now you don't
Posted
over 2 years ago
by
Dave V - MSFT
0
Comments
My colleague Stephen Griffin recently blogged about how to show or hide the Sender Contact Photo feature in Outlook . Since he only supplied the C++ version the product team asked me to supply the .NET version. Visual Basic Public Sub SetSenderContactPhoto...
For lack of a better word
Managing Outlook Security Settings
Posted
over 2 years ago
by
Dave V - MSFT
0
Comments
I got a question today about if one could set the Outlook Security Settings programmatically instead of requiring the user to go through the dialog in the Outlook UI. The answer is Yes, and the article below describes how to do it: How to Assign an...
For lack of a better word
Attention all managed debuggers - PSSCOR2 has been released!
Posted
over 2 years ago
by
Dave V - MSFT
0
Comments
PSSCOR2 has been released to the public! I have been using this tool for years and I cannot describe what my job would be without it. If you are using Windbg to analyze hang and crashes in managed code, then this tool is for you. Check out Tom's post...
For lack of a better word
Local Runspaces are not supported in Exchange 2010
Posted
over 2 years ago
by
Dave V - MSFT
0
Comments
First, let's define what a Local Runspace is and how that differs from the one you would use for Exchange 2010. A Local Runspace is a runspace configured to load the local Exchange Powershell snapin via the RunspaceConfiguration object. This was the standard...
For lack of a better word
How to use Windows Authentication with the PSCredential class
Posted
over 2 years ago
by
Dave V - MSFT
0
Comments
Since posting the Remote Powershell sample I have had many people ask me how to make a connection to a remote endpoint using Windows Authentication instead of suppling a username and password as my sample demonstrates. I have changed the sample so that...
For lack of a better word
The best subject of an email that I ever saw
Posted
over 3 years ago
by
Dave V - MSFT
0
Comments
From: XXXXXXXXXXXXXXXXX To: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Subject: Daylight saving timezone - is there any known issues? Ah yes, Daylight Savings and Timezones. The most straight forward construct known to man. Well the one reader...
For lack of a better word
How to configure a HTTP endpoint for Exchange Web Services in Exchange 2010
Posted
over 3 years ago
by
Dave V - MSFT
2
Comments
In Exchange 2007 if you wanted to enable HTTP for Exchange Web Services all you had to do was go into Internet Information Services (IIS) and uncheck the box 'Require secure channel (SSL)' on the EWS virtual directory. In Exchange 2010 RTM this is no...
For lack of a better word
Exchange 2010 RU 1 has been released
Posted
over 3 years ago
by
Dave V - MSFT
2
Comments
http://www.microsoft.com/downloads/details.aspx?FamilyID=371add31-d7a0-4c8b-8325-a6fced2d05e6&displaylang=en Along with a new version of the MAPI download: http://www.microsoft.com/downloads/details.aspx?familyid=e17e7f31-079a-43a9-bff2-0a110307611e&displaylang...
For lack of a better word
Windows 7 released today, go out and buy your copy
Posted
over 3 years ago
by
Dave V - MSFT
0
Comments
http://store.microsoft.com/microsoft/Windows-Windows-7/category/102
For lack of a better word
Remote Powershell Sample Explained...
Posted
over 3 years ago
by
Dave V - MSFT
0
Comments
This is a continuation of my previous post . I wanted to take a moment and discuss the intent of the sample, how to get it working, and some caveats when you attempt to take the sample and turn it into production ready code. Purpose The purpose...
For lack of a better word
How to call Exchange 2010 cmdlet's using Remote Powershell in code
Posted
over 3 years ago
by
Dave V - MSFT
6
Comments
I have seen this question posed a lot so I decided that I would post a quick code sample here and the complete sample on my samples site. In my sample I created a managed client and a native client which both call into a managed DLL that runs the Get...
For lack of a better word
Exchange 2010 Code Complete
Posted
over 3 years ago
by
Dave V - MSFT
0
Comments
Congratulations to the Exchange product team, Exchange 2010 has been released to manufacturing. http://msexchangeteam.com/archive/2009/10/08/452775.aspx
For lack of a better word
Breaking Change : The System Attendant mailbox has been removed from Exchange 2010
Posted
over 3 years ago
by
Dave V - MSFT
0
Comments
In previous versions of Exchange, the System Attendant (SA) Mailbox was used by the link monitoring service and for publishing Free / Busy information. However, this functionality is no longer needed in Exchange 2010. As such the mailbox has been removed...
For lack of a better word
So what did you say you do here again?
Posted
over 3 years ago
by
Dave V - MSFT
0
Comments
I was recently asked the following questions regarding my blog and it's purpose. I decided that it would be good to post them here so my reader can understand the motivation of this blog. 1. Have you defined a purpose or strategy for your blog? If...
For lack of a better word
How to use MFCMAPI to create a MAPI profile to connect to Exchange 2010
Posted
over 3 years ago
by
Dave V - MSFT
0
Comments
** The following article is for only the Exchange MAPI / CDO download. Outlook users will not have to use these steps. Also this configuration may not work on previous versions of Exchange. Open up MFCMAPI, go to Profile > Launch Profile Wizard...
For lack of a better word
Exchange 2010 RC has been released
Posted
over 3 years ago
by
Dave V - MSFT
0
Comments
The Exchange 2010 Release Candidate has been released to download. http://technet.microsoft.com/en-us/evalcenter/dd185495.aspx Stay tuned for my post on how to configure your MAPI profile when using the Exchange MAPI/CDO download to connect to Exchange...
For lack of a better word
Streaming backups no longer supported in Exchange 2010
Posted
over 3 years ago
by
Dave V - MSFT
1
Comments
The Exchange 2010 Beta SDK just released and I wanted to call out that using the Backup and Restore API (i.e. Streaming Backups) is no longer supported. "Exchange 2010 does not support streaming-style backups. In versions of Exchange earlier than Exchange...
For lack of a better word
Exchange 2010 Beta SDK Released
Posted
over 3 years ago
by
Dave V - MSFT
0
Comments
Find more about it here: http://msdn.microsoft.com/en-us/library/dd877024(EXCHG.140).aspx
For lack of a better word
ECE's will be deprecated in Outlook 2010
Posted
over 3 years ago
by
Dave V - MSFT
1
Comments
ECE's are now officially deprecated in Outlook 2010. Read more about it here
For lack of a better word
Exchange Server 2010 public beta has been released!
Posted
over 3 years ago
by
Dave V - MSFT
1
Comments
Exchange Server 2010 beta was released to the public this week. The beta for EWS managed client API has also been released. Check it out the related blog posts: Presenting Exchange Server 2010 http://msexchangeteam.com/archive/2009/04/14/451032...
For lack of a better word
New EWS managed client API
Posted
over 3 years ago
by
Dave V - MSFT
1
Comments
The Microsoft Exchange Team blog has a video about the new EWS managed client API coming in the next version of Exchange. http://msexchangeteam.com/archive/2009/03/24/450892.aspx
Page 1 of 3 (51 items)
1
2
3