Questions tagged [exchange-server]

Questions about automation and APIs related to Microsoft's Enterprise level messaging server.

Microsoft Exchange Server is the server side of a client–server, collaborative application product developed by Microsoft. It is part of the Microsoft Servers line of server products and is used by enterprises using Microsoft infrastructure products. Exchange's major features consist of electronic mail, calendaring, contacts and tasks; support for mobile and web-based access to information; and support for data storage.

Use this tag on programming questions related to the use of this product - questions on installation, maintenance and configuration are better asked on Server Fault, while questions on the use and configuration of Outlook or other email clients are better directed to Super User.

See also:

4797 questions
1
vote
0 answers

DateTimeCreated = 2016-12-26T08:52:29Z this date format is not work for exchange query

When i am querying calendar's record from Exchange server, i am getting records 2016-12-26T08:52:29Z in this format, But when i am trying to querying by using 2016-12-26T08:52:29Z this date format it does not return anything? When i give (less…
Sandip Bhot
  • 53
  • 1
  • 7
1
vote
1 answer

Exchange Web Services?

does Exchange Server 2007 and 2010 allows us to create Appointment, Emails, Contacts through EWS (Exchange Web Service)? I'm truing using SoapUI to test that and I keep getting HTTP/1.1 405 Method Not Allowed Allow: GET, HEAD, OPTIONS, TRACE…
1
vote
0 answers

Intranet .NETCORE Web API Get Local AD Users and Exchange Calendars

There are two questions here, both pertaining to .NET Core and Local AD Accounts; I am looking to access Local AD user account's, and their information. I am looking to get Exchange calendar events for each of these users upon request. Any direction…
1
vote
1 answer

Login to OWA programmatically using saml token

There is a standard way to authorize to OWA using ADFS. I need to repeat it programmatically from a custom web site. I know how I can get a saml token from ADFS, but I don't know how post it to OWA. Is it possible?
Eugen
  • 35
  • 1
  • 1
  • 6
1
vote
2 answers

Where can I find which properties are available in each Exchange Web Services version?

First of all, I have pretty much no experience with developing Exchange Web Services-based applications. I am developing an application that uses EWS Managed API to connect to an Exchange server. I need to support multiple Exchange versions, as I…
1
vote
2 answers

How to open a PST with CDO installed on exchange server machine?

I want to read a standalone PST file on Exchange server machine. As Microsoft suggested we can't install the Outlook client on exchange server.I have installed the Exchange client and CDO 1.2 library on server. But still I am not able to open the…
1
vote
2 answers

Getting Exchange Server's users timezone

I'm having a bit of a problem. I am working on a small outlook plugin(in c#) with the following functions(very simplified): Get all of the users from Exchange Server with their Timezone and add that info to the mailbody. Getting all of the users…
1
vote
1 answer

Exchange variable in non specified method

Im a newcomer :) However, my program has a table and a RandomGen should get the highest random int by getRowCount -> checkvar1. Now, the main class gets checkvar1 and sends it to setVariable(), then I want to exchange this checkvar1 with randomGen…
KatharsisHerbie
  • 115
  • 1
  • 10
1
vote
1 answer

powershell script add-adgroupmember

I'm writing a script which is supposed to show me security groups by matching an input e.g. 'marketing'. Afterwards I want to add a user to this security group. Since the exchange-powershell can search for user via -anr it's much easier to find the…
1
vote
1 answer

How to get All users All mail on Exchange server using EWS API?

using EWS api I get all mail inbox of particular user is it possible. but how to get all users of all mails of my company exchange server. this possible using power shell but how it will do using programmatically. thanks in advance
tthewolf3D
  • 330
  • 1
  • 2
  • 13
1
vote
1 answer

Exchange EWS Managed API - unexpected token in XML

Im trying to write a simple sample program which checks for any new mail on an Exchange 2010 server. As far as I can tell, the code I've got should work fine. I setup the service as follows: ExchangeService service = new…
Daniel Frear
  • 1,459
  • 14
  • 22
1
vote
1 answer

Manipulate DDE using VBA?

I have a CRM application (GoldMine) that acts as a DDE Server and allows for pulling merge fields into Word documents using DDE like so: { DDE GOLDMINE DATA CONTACT2->UPREAWDAMT \* CHARFORMAT } As you know, DDE does not pass along any formatting -…
Dave Mackey
  • 4,306
  • 21
  • 78
  • 136
1
vote
2 answers

combine get-user get-mailboxstatistics exchange 2010

I need to create a report for exchange server 2010. Where I need the users Display name, lastlogontime and account status ie enabled or disable. get-mailbox statistics shows lastlogon and get-user can show account control status. So I tried this not…
1
vote
2 answers

Exchange Attribute msExchRecipientTypeDetails

I'm trying to get the value of msExchRecipientTypeDetails for a user using PowerShell and ADSI but I'm getting System.__ComObject. I'm not able to move forward on getting the exact string. I'm using below PowerShell command $ADUsr =…
TinkerAdmin
  • 23
  • 1
  • 5
1
vote
2 answers

Forward emails via C# SMTP client and keep time stamps and delivery time

I wrote a C# client to download emails from my POP3 mailbox and forward them to my internal exchange server via SMTP. The code below is working. But the time stamps and delivery time information from the original email are overwritten hence lost…
Simon
  • 377
  • 2
  • 11
  • 30