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
3
votes
3 answers

Get Sum of Exchange Mailbox Statistics

I'm trying to get the sum of the TotalItemSize for an Exchange database using the command Get-MailboxStatistics -Database MBX07 | Measure-Object -Sum TotalItemSize The command works perfectly fine in the Windows PowerShell ISE but if I run it in an…
Martin
  • 503
  • 1
  • 6
  • 20
3
votes
1 answer

Exchange server 2010 Version support on folder search for asp.net

I am trying to sync to an exchange folders by trying to run the below command to find all the folders in asp.net c#. view.Traversal = FolderTraversal.Deep; FindFoldersResults findFolderResults = service.FindFolders(new…
3
votes
3 answers

TimeZone and Working Hours for Users through EWS

Is it possible to get TimeZone and working hours of the users through EWS? I am able to extract TZ and Working Hours for current user(Account with which the ExchangeService is initialized) UserConfiguration usrConfig =…
HarshJain
  • 327
  • 1
  • 4
  • 12
3
votes
1 answer

What are the file extensions of various Ews/Outlook items?

I need to save ItemAttachments retrieved using EWS API but I don't know file extension of all the different item types.I could only manage to get the extension of item of type EmailMessage and Contact. Here is the code. if (attachment is…
3
votes
1 answer

EWS only reading my inbox

I am trying to read a particular email account to find items with attachments that are unread, and have certain words in the subject. I have the below code that works but only reads my inbox and not the inbox I want to check static void…
Our Man in Bananas
  • 5,809
  • 21
  • 91
  • 148
3
votes
1 answer

How often should I autodiscover?

We've been using the EWS SDK for a few years now and after many mistakes, we've decided it was time to refactor our code base to reflect what we've learned. One issue we see happen every once in a while is that all EWS call fails because it's…
gcso
  • 2,315
  • 3
  • 28
  • 50
3
votes
1 answer

Exchange and PowerShell

I'm currently developing a Exchange connector and using PowerShell scripts in C#, like this: public void Connect(string exchangeFqdn_, PSCredential credential_) { var wsConnectionInfo = new WSManConnectionInfo(new Uri("http://" + exchangeFqdn_ +…
Nate B.
  • 942
  • 11
  • 31
3
votes
3 answers

Value from one command as parameter to another command

I am trying to figure out how to get a value from one command as a parameter to another command, and use the output of both in a single table. Specifically I am using two cmdlets, Get-Mailbox and Get-MailboxStatistics (this is against an Exchange…
Peter Bako
  • 93
  • 2
  • 7
3
votes
1 answer

The account does not have permission to impersonate the requested user

I am getting this error while try to accessin the resource mailbox. pls any one help me on this . I am new to EWS. I am able to access the resource mailbox through OWA(Outlook web app). But i am not owner of this mailbox as it is shared mailbox. my…
3
votes
1 answer

EWS Save Guid per Calendar Appointment

I need to save a Guid per every Appointment. I've tried to use PolicyTag and ArchiveTag,but got an , "The property PolicyTag is valid only for Exchange Exchange2013 or later versions.", exception. Does we have something similar for Exchange…
mikabuka
  • 237
  • 3
  • 11
3
votes
2 answers

What settings on Exchange do we need to check to avoid a ServiceRequestException from being thrown?

We’re programmatically (using the Microsoft Exchange Web Services Managed API 2.0) to access the user’s calendar (on Exchange 2010 SP1). We have been able to successfully communicate with EWS via auto-discovery in our development environment on…
3
votes
1 answer

OWA Signature Update with Exchange Web Services

We're using Exchange Web Services to set user signature in Outlook Web Access. It works great, we see the signature under Options>Settings and the "Automatically include my signature on messages I send" check box is checked. We also set this…
PW763
  • 251
  • 1
  • 6
  • 12
3
votes
1 answer

EWS Managed API - How to copy items from one mailbox to other

I am writing an application(C#) to sync contacts,appointments,tasks etc from one mailbox to other. I am able to retrieve changes to these items using SyncFolderItems but could not find a way to copy the changes to a different mailbox. It looks like…
3
votes
1 answer

item.HasAttachments is true but no attachments in collection

I need to retrieve & copy attached files from a number of mail items. Problem is each mail item's collection is empty, even though the property HasAttachment is true. Do I need to load each mail item's attachment colloection somehow after the mail…
Skalis
  • 197
  • 2
  • 13
3
votes
1 answer

How to synchronize with outlook calendar in java?

i have an exchange 2010 mail server, and i open the accounts on outlook 2010. i want to connect to the calendar folder and get the upcoming appointments/meetings details. i am using java-mail 1.4.5 , can i do that with javamail or there are other…
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498