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

Exchange 2010 EWS Delete Message

How do I delete email messages in a mailbox using EWS? There doesn't seem to be much online for it? I'm planning an application and I need to know if it's possible and how to do it.
Mike Mengell
  • 2,310
  • 2
  • 21
  • 35
2
votes
1 answer

Sort-Object by greatest numerical value value from Import-CSV

I want the greatest value (mailboxSize) at the top of the file. I have a cvs as inport. When I do the following sort cmd: Import-Csv import.csv| Sort-Object MailboxSize,DisplayName -Descending | Export-Csv SORT.csv I get the following…
2
votes
2 answers

How do I get a deleted Exchange item?

I am using the Exchange Web Services API with a streaming connection to pick up changes to my calendar. If I go to my calendar and delete an event, the new notification event method kicks off: private void OnNewEvent(object sender,…
2
votes
4 answers

System.Management.Automation.Remoting.PSRemotingTransportException: Access is denied.

I am using Exchange server 2013. I am getting below Exception when try to run my C# code in IIS. System.Management.Automation.Remoting.PSRemotingTransportException: Connecting to remote server exchangeserver.admin.com failed with the following error…
2
votes
2 answers

How to send email attachments with microsoft exchange?

I want to send email attachements through Exchange server using java. Sending email is working fine: ExchangeService service = new ExchangeService(); ExchangeCredentials credentials = new…
Noah Martin
  • 1,708
  • 9
  • 35
  • 73
2
votes
1 answer

DeleteContent not deleting items correctly/at all

To preface this all, I am running this script in the US against a US mailbox server. The mail that I am wanting to delete is also mail that I have exported to a PST. The mailbox Export uses a ContentFilter while a deleteContent uses a SearchQuery.…
Johnrad
  • 2,637
  • 18
  • 58
  • 98
2
votes
1 answer

Exchange journaling folder structure

I'm indexing and storing the journalled e-mails from several exchange accounts. But I would like to be able to also have the exchange directory structures synced (on like 1 time a day). I do have access to install something / create a local solution…
Floris
  • 299
  • 3
  • 17
2
votes
2 answers

EWS Message Tracking Report

I've been doing a bunch of research on how to get a message tracking report from exchange using EWS and can't seem to pinpoint anything. I was going to build an application that scrapes the log files but if I can do it through EWS it be better for…
cal5barton
  • 1,606
  • 1
  • 14
  • 29
2
votes
1 answer

Disable an Exchange 2010 mailbox using VB.Net

I'm trying to disable a mailbox in Exchange 2010 using VB.Net. Dim rsConfig As RunspaceConfiguration rsConfig = RunspaceConfiguration.Create() Dim snapInException As PSSnapInException = Nothing Dim info As PSSnapInInfo =…
Dazza76
  • 21
  • 2
2
votes
1 answer

exchange 2010/13 - search mails by category and set them to sensitivity:private

I am new to Exchange and we have a requirement where we need to go thru everyones mailbox and look for emails that have been marked by a certain category and set those emails as sensitivity:private. And I have couple of questions on this one: Not…
2
votes
1 answer

ExchangeService.DeleteItems response order

I am creating an application that consumes Exchange Web Services (EWS 2.0). I am using the DeleteItems method (http://msdn.microsoft.com/en-us/library/microsoft.exchange.webservices.data.exchangeservice.deleteitems(v=exchg.80).aspx) to delete…
Yacoub Massad
  • 27,509
  • 2
  • 36
  • 62
2
votes
2 answers

Get-Mailboxpermission for list of Mailboxes

I want to get a list of all permissions for a specified list of mailboxes. To get all permissions for just one, I can do this: Get-MailboxPermission -Identity "Mailbox01" What if I wanted to get a list of permissions for more than one mailbox at a…
Kjensen
  • 12,447
  • 36
  • 109
  • 171
2
votes
1 answer

Load all Appointment Properties, including extended properties, in Exchange 2010

I'm trying to list all the properties associated with a given calendar appointment, but I can't figure out if there's a way to do it without loading each property individually. Based on some of the code I've seen online, I know I can do something…
tmoore82
  • 1,857
  • 1
  • 27
  • 48
2
votes
2 answers

EWS. How to change DateTimeCreate property via EWS Proxy Classes

I write client application that uses Exchange Web Services Proxy Classes in order to connect to Exchange Web Services. Sometimes, I need create ItemType object and make it looks like as received letter. Therefore I need set up such properties of…
2
votes
1 answer

With PHP IMAP connection to exchange server, what flag does exchange server use for UNSEEN emails?

I am using the PHP IMAP library wrapped in the handy little class from Barbushin: https://github.com/barbushin/php-imap I started testing against my gmail account, which would fetch my unread emails with the following. $imap = new IMAP(); $unseen =…
lukeocodes
  • 1,192
  • 1
  • 16
  • 31