exchange-server

Incorrect timezone of EWS invitation on updates

喜欢而已 提交于 2019-12-13 04:46:30
问题 I am trying to specify timezone of EWS invitations when any existing appointment get updated. Here is my code: ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP1, TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time")); service.Credentials = new WebCredentials("ews_calendar", PASSWORD, "acme"); service.Url = new Uri("https://acme.com/EWS/Exchange.asmx"); Appointment newAppointment = new Appointment(service); newAppointment.Subject = "Test Subject";

VSTO: Cached exchange mode VS LastModificationTime

北战南征 提交于 2019-12-13 02:56:50
问题 I am developing a VSTO Outlook Add-In that is relying on the LastModificationTime property of Outlook Appointment. The problem is when Cached exchange mode is turned On, the LastModificationTime property auto updates each time I close Outlook. Is there possible solution I can use to get the date and time when user changed the appointment, instead of date and time when cached exchange mode changed the appointment? Seeing that there are not a lot of responses I wanted to describe my problem in

Powershell WMI ROOT\MicrosoftExchangev2, and WQL where usage

自闭症网瘾萝莉.ら 提交于 2019-12-13 02:55:44
问题 (PS Version 1) PS C:\> $query = 'Select * From Exchange_PublicFolder WHERE Path LIKE "/Foo%"' PS C:\> $query Select * From Exchange_PublicFolder WHERE Path LIKE "/Foo%" PS C:\> gwmi -namespace ROOT\MicrosoftExchangev2 -query $query Get-WmiObject : Provider is not capable of the attempted operation At line:1 char:5 + gwmi <<<< -namespace ROOT\MicrosoftExchangev2 -query $query It makes no difference if I try to assign the query to a variable first or not. Is there might be a problem with the

VBA CDO Email Automation .send freeze

点点圈 提交于 2019-12-13 01:45:40
问题 I have tried search everywhere for an answer on this as I can't believe it has only happened to me but can't seem to find anything. I have a standard CDO email send function that works fine and up to about 3 months ago could reel off sending about 250 emails in probably less than 5 minutes. This was working off exchange 2003. Then we upgraded our exchange server to 2010 and now my function that hasn't changed (apart from the ip address of the smtp server) pauses on the .send portion for

Get list of all rooms in outlook

亡梦爱人 提交于 2019-12-12 18:16:13
问题 I'm writing some application where I need to get an all available rooms within my organization. (the same list we get while we opening "Add Rooms" dialog in outlook) I assume that while we doing it through outlook he works against some exchange server, the question is is there a way to use outlook as a"proxy" between me to the exchange server? I have no knowledge with exchange, and a little knowledge with outlook's interop... Thanks in advance for any help. 回答1: I don't know if this will work

Microsoft Exchange doesn't render email generated by PHPmailer as HTML

╄→гoц情女王★ 提交于 2019-12-12 14:14:42
问题 This issue has been annoyed me for weeks. I have a script which sends html email with xls attachmentm to multiple recipients with the help of PHPmailer. It has been working fine for more than one year. Recently two recipients from the same company, who use Microsoft Exchange as their email client, receive this email as text. Following is sample email they receive: --b1_dbc2cccc876da210fd56ae7a2601e692 Content-Type: multipart/alternative; boundary="b2_dbc2cccc876da210fd56ae7a2601e692" --b2

Get MS Exchange mail for all group members

我们两清 提交于 2019-12-12 13:53:13
问题 Is it possible to get all email from all mailboxes in MS Exchange? I have full rights in Azure console for Office365 exchange online. http://i.stack.imgur.com/DF5n5.png But when I'm trying make an request to https://outlook.office365.com/EWS/OData/Users('user@company.onmicrosoft.com')/Inbox/Messages getting an error "The specified object was not found in the store." But for logged in admin https://outlook.office365.com/EWS/OData/Me/Inbox/Messages https://outlook.office365.com/EWS/OData/Users(

EWS: Calendar Sharing Invitation and Extended Properties

♀尐吖头ヾ 提交于 2019-12-12 13:43:38
问题 Ok, so far the best information I have gotten regarding this topic was on this thread: EWS-API-Create-Calendar-and-Share-with-reviewer-permissions. I tried asking this question on that thread but I actually posted it as an answer so it was removed by the admins (my bad!) DISCLAIMER: I am a sysadmin by trade and moonlight in development...so please excuse any misuse of terminology or confusions in verbage. Also, I'm working in C# here fyi. I have read the message protocol specs from microsoft

Create remote powershell session in c#?

南楼画角 提交于 2019-12-12 13:15:33
问题 I'm very new to PS so I think I'm missing something basic here. I can do a remote powershell session like this... $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://remote.com/Powershell -Credential "Domain\Admin" I want the equivalent in C# so I'm trying this but it doesn't work... WSManConnectionInfo connInfo = new WSManConnectionInfo( new Uri("https://remote.com/Powershell"), /* uri */ "/wtf", /* shellUri??? */ cred); /* ps-credential */ using (Runspace

Can I use the Microsoft Exchange 2013 API from Java?

非 Y 不嫁゛ 提交于 2019-12-12 13:06:56
问题 Can I work with the EWS of Exchange 2013 from Java? I found that the 2013 version of EWS doesn't is supported by the Java EWS API. 回答1: The EWS API is a SOAP-based API, and therefore yes, you can use it from Java or any other language that lets you POST XML data over HTTP. The commercial JWebServices component mentioned in another answer is a library that wraps the SOAP calls for you into helper functions. Microsoft's EWS Java library does appear to be updated infrequently, but it's free, so