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
2
votes
1 answer

MS Exchange 2010: cmdlet Not Executing Correctly as a Scheduled Task

I've been using a Scheduled Task and the New-MailboxExportRequest cmdlet to export my organization's mailboxes to .PST archive files each night for awhile now. Unfortunately, the ExportRequests are not removed after the archive operation completes…
2
votes
0 answers

EWS not listing inline images among attachments

I'm using Microsoft.Exchange.WebServices.dll to read signed emails from an Exchange Server. Returned object's property Attachments contains either regular attachments or inline images from the email body. In case the email has both (regular…
2
votes
1 answer

Same array content, giving me different results

Summary of issue I have two variables with the same content, the only difference is how the variable was populated, when i try to use it in exchange management shell i get for one variable an error while the other one works as it should be. Long…
Yeahish
  • 69
  • 1
  • 7
2
votes
1 answer

How do you authenticate to Live@EDU (outlook.com) while using an imported PowerShell session?

I am connecting to Exchange 2010 for Live@edu via PowerShell. I can connect using the standard methods just fine. However, downloading and importing the session commands every time seems wasteful, especially since this isn't on a LAN. Furthermore,…
2
votes
0 answers

Java mail api 1.5.5 strange behaviour

I am using javamail (1.5.5) to fetch mails from exchange 2010 server. It fails to fetch few messages (java.lang.OutOfMemoryError: Java heap space). But it is working fine when using java mail api 1.4.5 without heap space error. What's strange here…
2
votes
0 answers

Efficient initial sync with SyncFolderItems in EWS

I am writing a client application that tracks emails and calendar events from exchange servers. Currently I am getting the initial state of the users' inbox folders with SyncFolderItems with IdOnly set to True. Is there a more efficient way to get…
2
votes
1 answer

C# exchange server get meeting room appointment list

I'm trying to work with EWS Managed API to get the meeting room list, and for each room to see the appointment list for a week. I saw Get room lists by using EWS in Exchange And Get appointments and meetings by using EWS in Exchange I've test the…
2
votes
1 answer

EWS Managed API Double Hop

I'm developing an intranet site that will use in on-premise. In corporate, users can use this site like OWA they can see their inbox, send mails etc. To achive this I use EWS Managed Api 2.2 to connect Exchange Server (2010_sp1).I am developing with…
2
votes
1 answer

Can Windows Phone 7 connect to an Exchange server to sync its contacts, calendar etc.?

Can Windows Phone 7 connect to an Exchange server that allows the phone to keep its contacts, calendar etc. in sync? Thanks!
Alex
  • 7,432
  • 20
  • 75
  • 118
2
votes
0 answers

C# Exchange 2010 EWS Subscriptions for 1000+ mailboxes

I'm looking to use EWS to subscribe to a very large number of Project mailboxes within our Exchange 2010 R2 Environment. So far I have successfully written a C# console application which subscribes to multiple mailboxes and collects the required…
nbren007
  • 313
  • 1
  • 4
  • 14
2
votes
1 answer

Make a distribution list look at the mail attribute in ADUC

Does anybody know if there is a way to make a distribution group (static or dynamic) look at the mail attribute in ADUC and send to that email address? For example, in my organization, we have people have mailboxes that end with…
Joseph
  • 609
  • 2
  • 12
  • 26
2
votes
1 answer

Exchange 2010/2013 TransportAgent Content Conversion for Internal Recipients

I am trying to create a TransportAgent that reroutes an internal email to a remote server for further processing, but the email comes over in Microsoft's internal TNEF format (no content conversion is being applied). I would like it to be in the…
2
votes
0 answers

Exchange Server - link newly created appointment with deleted after accept

I'm working on application which synchronize calendar data from exchange server to application database. For this purpose we using the ExchangeService.SyncFolderItems method from EWS managed API. On initial sync we retrieving all appointments from…
Yuriy Rozhovetskiy
  • 22,270
  • 4
  • 37
  • 68
2
votes
4 answers

Can't call EWS service with API Java SSL and certificates

I am actually working on EWS Java API. The goal is to access data in the Calendar. So I started learning how to use the EWS Java API. Begining with a sample example, I found some problems : ExchangeService service = new ExchangeService(); …
Ali Ben Messaoud
  • 11,690
  • 8
  • 54
  • 87
2
votes
0 answers

Using pipeline.invoke to get full information from new-moverequest

I'm writing a .Net script that initiates a local move request on Exchange2010. I take the output of the script to fill a datagrid showing some details of the newly initiated move request. This is the script I use: "New-MoveRequest -Identity 'user1'…