使用Exchange Web服务在会议上花费的时间

编程入门 行业动态 更新时间:2024-10-08 18:35:11
本文介绍了使用Exchange Web服务在会议上花费的时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在尝试找出我们作为一个部门(约100人)在会议上花费的时间.为简单起见,我们可以将所有繁忙时间都视为会议中的繁忙时间.但是我不知道该怎么做,我希望有人有个主意

I am trying to find out how much time we spend in meetings as a division (~100 people). For simplicity's sake, we can consider all busy hours as those in meetings. However I can't figure out how to do it and I was hoping someone has an idea

推荐答案

在网络上有使用EWS API进行此类操作的示例.例如,您可以使用的想法:

There are examples of using the EWS API for this sort of thing all over the web. For example, ideas for you to work with:

使用EWS托管API获取约会.以下代码示例演示如何使用EWS托管API检索介于指定开始时间和结束时间之间的用户约会.

Get appointments by using the EWS Managed API. The following code example shows how to use the EWS Managed API to retrieve a user's appointments that fall between a specified start and end time.

// Initialize values for the start and end times, and the number of appointments to retrieve. DateTime startDate = DateTime.Now; DateTime endDate = startDate.AddDays(30); const int NUM_APPTS = 5; // Initialize the calendar folder object with only the folder ID. CalendarFolder calendar = CalendarFolder.Bind(service, WellKnownFolderName.Calendar, new PropertySet()); // Set the start and end time and number of appointments to retrieve. CalendarView cView = new CalendarView(startDate, endDate, NUM_APPTS); // Limit the properties returned to the appointment's subject, start time, and end time. cView.PropertySet = new PropertySet(AppointmentSchema.Subject, AppointmentSchema.Start, AppointmentSchema.End); // Retrieve a collection of appointments by using the calendar view. FindItemsResults<Appointment> appointments = calendar.FindAppointments(cView); Console.WriteLine("\nThe first " + NUM_APPTS + " appointments on your calendar from " + startDate.Date.ToShortDateString() + " to " + endDate.Date.ToShortDateString() + " are: \n"); foreach (Appointment a in appointments) { Console.Write("Subject: " + a.Subject.ToString() + " "); Console.Write("Start: " + a.Start.ToString() + " "); Console.Write("End: " + a.End.ToString()); Console.WriteLine(); }

docs.microsoft/zh-CN/exchange/client-developer/exchange-web-services/how-to-get-appointments-and-meetings通过使用交换中的ews

基本Powershell脚本,可使用EWS托管API显示日历中的约会

Basic Powershell script to show appointments from a calendar using the EWS Managed API

$MailboxName = 'SomeUserEmailALias' $StartDate = Get-Date $EndDate = (Get-Date).AddDays(7) $DllPath = 'C:\Program Files\Microsoft\Exchange\Web Services\1.2\Microsoft.Exchange.WebServices.dll' [void][Reflection.Assembly]::LoadFile($DllPath) $Service = New-Object Microsoft.Exchange.WebServices.Data.ExchangeService([Microsoft.Exchange.WebServices.Data.ExchangeVersion]::Exchange2010) $Service.AutodiscoverUrl($MailboxName) $FolderID = New-Object Microsoft.Exchange.WebServices.Data.FolderId([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::Calendar,$MailboxName) $CalendarFolder = [Microsoft.Exchange.WebServices.Data.CalendarFolder]::Bind($Service,$FolderID) $Calendarview.PropertySet = New-Object Microsoft.Exchange.WebServices.Data.PropertySet([Microsoft.Exchange.WebServices.Data.BasePropertySet]::FirstClassProperties) $CalendarResult = $CalendarFolder.FindAppointments($CalendarView) foreach ($Appointment in $CalendarResult.Items) { $Propset = New-Object Microsoft.Exchange.WebServices.Data.PropertySet([Microsoft.Exchange.WebServices.Data.BasePropertySet]::FirstClassProperties) $Appointment.load($Propset) New-Object -TypeName PSObject -Property @{ Appointment = $Appointment.Subject.ToString() Start = $Appointment.Start.ToString() End = $Appointment.End.ToString() Organizer = $Appointment.Organizer.ToString() } }

gsexdev.blogspot /2009/11/basic-powershell-script-to-show.html

[Powershell脚本EWS]使用EWS托管API处理日历项目

[Powershell script EWS] Working with Calendar Items using EWS managed API

$Folderid= new-object Microsoft.Exchange.WebServices.Data.FolderId ` ([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::Calendar,$MailboxToImpersonate) $cal=[Microsoft.Exchange.WebServices.Data.Folder]::Bind($service,$Folderid) $StartDate =(Get-Date) $EndDate =(get-date).AddDays(7) $CalendarView = New-Object Microsoft.Exchange.WebServices.Data.CalendarView ` ($StartDate,$EndDate,$itemsView) $findCalItems = $service.FindAppointments($Cal.Id,$CalendarView) param ( $mailbox="SomeUserEmailALias", $itemsView=1000, $userName=$cred.UserName, $password=$cred.GetNetworkCredential().password, $StartDate =(Get-Date), $EndDate =(get-date).AddDays(7) # find meeting upto next 7 days. ) #set EWS URL and Web Service DLL file location path below. $uri=[system.URI] "outlook.office365/ews/exchange.asmx" $dllpath = "C:\Program Files\Microsoft\Exchange\Web Services\2.2\Microsoft.Exchange.WebServices.dll" Import-Module $dllpath #Set Exchange Version $ExchangeVersion = [Microsoft.Exchange.WebServices.Data.ExchangeVersion]::Exchange2010_SP2 $service = New-Object Microsoft.Exchange.WebServices.Data.ExchangeService($ExchangeVersion) $service.Credentials = New-Object Microsoft.Exchange.WebServices.Data.WebCredentials -ArgumentList $userName, $password $service.url = $uri $service.ImpersonatedUserId = New-Object Microsoft.Exchange.WebServices.Data.ImpersonatedUserId ` ([Microsoft.Exchange.WebServices.Data.ConnectingIdType]::SMTPAddress,$mailbox); $Folderid= new-object Microsoft.Exchange.WebServices.Data.FolderId ` ([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::Calendar,$mailbox) $cal=[Microsoft.Exchange.WebServices.Data.Folder]::Bind($service,$Folderid) #Define the calendar view $CalendarView = New-Object Microsoft.Exchange.WebServices.Data.CalendarView($StartDate,$EndDate,$itemsView) $findCalItems = $service.FindAppointments($Cal.Id,$CalendarView) $report = $findCalItems | Select Start,End,Duration,AppointmentType,Subject,Location, Organizer,DisplayTo,DisplayCC,HasAttachments,IsReminderSet,ReminderDueBy $report | Export-Csv $($mailbox + "-Meetings.csv") -NoTypeInformation

www .linkedin/pulse/powershell-script-ews-working-calendar-items-using-managed-chauhan

用于将日历信息导出到CSV文件的EWS脚本.

EWS Script to Export Calendar Information to a CSV file.

.Synopsis: Script which creates a function "Export-CalendarInformation" which can be used to export details of each calendar items to a CSV file. . Description: Using EWS API and authorized credentials (can use an account with application impersonation permission) this script exports below details of each calendar item in a mailbox calendar to CSV file. This script will return StartTime, EndTime, Duration, Type, Subject, Location, Organizer, Attendees, AppointmentState, Notes, HasAttachments, IsReminderSet

gallery.technet.microsoft/EWS -Script-to-Export-c76a0ad4

更多推荐

使用Exchange Web服务在会议上花费的时间

本文发布于:2023-11-23 06:46:33,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1620488.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:时间   会议上   Exchange   Web

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!