Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List All the Meetings Scheduled By a Specified PersonContent of List All the Meetings Scheduled By a Specified Person.vbsMD5 Hash: 255013C08E54575F35CE900AF2DEE468 |
||
Const olFolderCalendar = 9
Set objOutlook = CreateObject("Outlook.Application") Set objNamespace = objOutlook.GetNamespace("MAPI") Set objFolder = objNamespace.GetDefaultFolder(olFolderCalendar) Set colItems = objFolder.Items strFilter = "[Organizer] = 'Ken Myer'" Set colFilteredItems = colItems.Restrict(strFilter) For Each objItem In colFilteredItems If objItem.Start > Now Then Wscript.Echo "Meeting name: " & objItem.Subject Wscript.Echo "Meeting date: " & objItem.Start Wscript.Echo "Duration: " & objItem.Duration & " minutes" Wscript.Echo "Location: " & objItem.Location Wscript.Echo End If Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |