Questions tagged [exchange-server-2010]

Microsoft reached the Release to manufacturing (RTM) milestone for Exchange Server 2010 on May, 2009, and it was officially launched on November 9, 2009.

Microsoft Exchange Server 2010.

Use this tag if you intend to refer specifically to the 2010 version of Exchange server. If you have reason to believe your question refers to exchange server in parallel, use exchange-server instead.

579 questions
0
votes
1 answer

downloading an .eml attachment using exchange web services

I have a utility I built that checks an exchange email box and downloads attachments to a specified location. However, I'm running into a bug with messages that have another email attached to them (in *.msg). Whenever these pop up the attachments…
zach
  • 782
  • 2
  • 10
  • 22
0
votes
1 answer

Exchange Web Services - convert emailitem attachment from Base64 string to Byte gives error

I am trying to read an email item attachment using EWS and save it to disk as a text file so it can be used later on. I am getting an error: "The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding…
0
votes
1 answer

searching Exchange mailbox by email address using SearchFilterCollection

I am searching an email inbox (on Exchange 2010) using Exchange Web Services. In my SearchFilterCollection I would like to include the From.Address property of the Email message, as I only want to retrieve emails that include a certain domain (such…
0
votes
2 answers

Exchange Powershell - How to run Exchange 2010 command by schedule from inside script?

I'm writing a script that delete redirect mail by shedule. Here http://www.experts-exchange.com/Programming/Languages/Scripting/Powershell/Q_28316932.html describes how import Exchange function. Script: $t = New-JobTrigger –Once –At "08/04/2014…
0
votes
1 answer

How to download the Contact attached in an email using EWS API?

When attachment is Email I could simply get the mime content and save it. But when the attachment is Contact I am not able to get the MimeContent. Here is the code itemAttachment.Load(new PropertySet(ItemSchema.MimeContent)); MimeContent mc =…
Sameer
  • 3,124
  • 5
  • 30
  • 57
0
votes
1 answer

Exchange Server Update Incoming Message

Does the newest version (or older versions for that matter) support some kind of custom add in (plug in module?) that can be written to analyze incoming messages and possibly replace the incoming message with a place holder or some new message we…
0
votes
1 answer

Not able to Load MimeConent of certain Emails using EWS API

When i Try to get the Mime Content of an email attachment using below code msgAttachment.Load(new PropertySet(ItemSchema.MimeContent)); MimeContent mc = msgAttachment.Item.MimeContent; I am getting the following exception on…
Sameer
  • 3,124
  • 5
  • 30
  • 57
0
votes
1 answer

Exchange Server 2010 SSL Cert RPC Server Name

New SSL certificates cannot contain internal server names, starting sometime in 2015. Right now I have a SAN certificate (certificate with a few names on it). Two are external mail.domain.com and autodiscover.domain.com. One is internal…
user2843198
  • 95
  • 1
  • 9
0
votes
2 answers

powershell exchange 2010 grab body of email and set to variable

i am trying to get the body of an email and set it to a variable with powershell by using get-mailbox. the reason im not doing it an easier was is it is blocked on the network to get the body from outlook. im completly lost. ive tried export but…
TLDAN
  • 53
  • 2
  • 12
0
votes
1 answer

Add another mailbox to Outlook 2013 automatically

I have a peculiar request. I manage our departments IT needs. One of the things that we do is we all share the department's mailbox. So, the way I have it setup currently is that the department's mailbox shows up as proxy on the user's mailbox, and…
user1828605
  • 1,723
  • 1
  • 24
  • 63
0
votes
2 answers

enumerate and email with powershell

ok fellas, I've been reading, researching, learning and testing about powershell. Within the last 20 days, here is what I've been able to come up with. get-mailbox -identity $_.name | select name,userprincipalname,@{label="Size";expression={$size =…
user1905097
  • 39
  • 1
  • 5
0
votes
1 answer

excluding emails with certain subject from email inbox search with EWS

I am using EWS to upgrade an application that used WebDAV to query an Exchange Server 2003 mailbox, the new version will work with Exchange Server 2010 SP2. I want to exclude email items that have a subject that includes these search…
Our Man in Bananas
  • 5,809
  • 21
  • 91
  • 148
0
votes
1 answer

Exchange 2010 is sending emails from accounts that do not exist?

All of a sudden, our exchange server has started sending out emails to .com.br addresses from accounts that do not exist in our organization. For…
0
votes
1 answer

How to query Exchange mail server for email items?

I am trying to upgrade en existing application that reads Exchange 2003 using WebDAV. The mail server is to be upgraded to Exchange 2013, so I am checking how I can use EWS. I have a problem in that although I know the inbox has unread items with…
Our Man in Bananas
  • 5,809
  • 21
  • 91
  • 148
0
votes
1 answer

Exchange 2010 Authentication Issues

So I am trying to send an automated message from an Excel VBA backend. I'm very competent in my VBA skills and have used the method below with great success in the past. I am having issues using this method in my new environment and I know it has…