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
2 answers

Exporting Public Folder ClientAccessPermissions to csv

So, I thought that it should be easy enough to A) Export a list of all our Public Folders B) Export a list of all our Public Folders with users who have access + access rights. And format it properly -_- As it turned out, I was wrong, and I'm hoping…
0
votes
2 answers

appointment.Sensitivity EWS C#

Hi I am trying to display all non sensitive appointments in EWS (I can get all appointments fine, but even with restricted permissions I can still see private appointments which I shouldn't be able to see!) This is basically what I want to do: …
Corbin Spicer
  • 285
  • 1
  • 8
  • 26
0
votes
1 answer

EWS - Delegate Access

I am trying to access another persons calendar using EWS. I can access my own calendar fine: foreach (Appointment appointment in service.FindItems( WellKnownFolderName.Calendar, new ItemView(int.MaxValue))) { …
0
votes
1 answer

How can i send invite to another user using Exchange API

How can i send a outlook invite to another user using exchange API? Actually i'm trying this. ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP1); service.Credentials = new WebCredentials("example@server.com",…
0
votes
1 answer

Use python to detect outlook auto-responder before sending message

I have found many resources on inspecting the headers in an email to detect whether or not the message was sent using an auto-responder. I'm looking to detect that an auto-responder is configured before any contact is made. Why I think this is…
0
votes
1 answer

Some Sender's Email Address Have An Extra 3 Hexadecimal Digits

I have an application using Outlook PIA reading from a client's Exchange server for some years. Lately, where a MailItem's SenderEmailType is "EX", the SenderEmailAddress has three of what looks like hexadecimal characters at the end. An…
Old Geezer
  • 14,854
  • 31
  • 111
  • 198
0
votes
2 answers

Issue with Exchange 2010 - Get-MailboxDatabase -status

I have 3 mail servers. 1st mail-server for the CAS. 2nd mail-server for the Hub-Transport. 3rd mail-server for the DR/DAG. I am backing up my 1st and 2nd server with CA ARCServ 16.5 with the following conditions: Daily Incremental. Weekly…
0
votes
1 answer

Insert parameter data from one output into another

This is directed towards Exchange/Office 365 powershell but can apply for other types as well. If i have a list of users for example, and I use UserPrincipalName for their identity - now in all my scripts I can pull data using UserPrincipalName for…
0
votes
1 answer

Clear GrantSendOnBehalfTo on a mailbox exchange - from remote powershell script

To revoke permissions for GrantSendOnBehalfTo from a mailbox, it is pretty well documented, that you would do this: Set-Mailbox -Identity MyMailbox -GrantSendOnBehalfTo $null That works when run from powershell and in a local script. However, if I…
Kjensen
  • 12,447
  • 36
  • 109
  • 171
0
votes
1 answer

How do some companies manage disabled accounts in Exchange 2010?

I'm wondering what the best practice is for "archiving" old disabled accounts in exchange. I work for a small health exchange company and the upper management wants any mailbox over 60 days old, backed up and off our network. So basically a .pst…
Xpolicy
  • 1
  • 1
0
votes
1 answer

Exchange: Custom Extended Properties as Part of Migration from 03 to 10

We have an in-house app that uses the http://schemas.microsoft.com/exchange/permanenturl property to identify calendar appointments in 2003. Now we're getting ready to migrate to 2010, and our understanding is that the permanent urls are formed…
0
votes
0 answers

How to determine the sender of a delegated email in Exchange 2010

I am trying to find a way to get the name of the sender of an item in a delegated mailbox in Exchange 2010 via Exchange web services. The scenario is that many delegates have access to a shared inbox and send emails from that inbox as the owner…
MattM
  • 11
  • 2
0
votes
1 answer

Exchange - export all incoming and outgoing email addresses to csv

I have a client who wants to mine their MS Exchange data to capture all incoming e-mail addresses (and outgoing). Outlook isn't an option, and we tried Add a Contact but we need a different solution. I know we can export all of the mailboxes smtp…
0
votes
1 answer

Update appointments in one service call using EWS managed API 2.0

I'm setting a custom extended property for each existing appointment like that: var extendedPropertyDefinition = new ExtendedPropertyDefinition(DefaultExtendedPropertySet.PublicStrings, "RateTheMeetingId24", MapiPropertyType.Integer); var…
0
votes
2 answers

How to catch deleted items on Exchange Web Server

When an element is created or a modified on an Exchange Server I get a StreamingNotification with an unique id and other information about that contact/calendar, but how could I get information about a deleted item? Where do I get the id from? Or at…