Hi All,
I was wondering if someone can help me setup a PowerShell script I can run which will, Export (calendar entries only) with specific date range into a PST or CSV file?
We are running Office 365.
Thanks
PowerShell Script - Export calendar entries
Hi All,
I was wondering if someone can help me setup a PowerShell script I can run which will, Export (calendar entries only) with specific date range into a PST or CSV file?
We are running Office 365.
Thanks
Hi,
Any updates on the script please?
We've been swamped by deadlines right here and everyone is working hard on getting read for shows. Here's something you may try but customize for you want
Get-OutlookCalendar | where-object { $_.start -gt [datetime]"5/10/2018" -AND $_.start -lt `[datetime]"5/17/2018" } | sort-object Duration
You may want more context than what copied here... this is where you can find more help while our powershell wonder twins, Mike and Adam are working hard on shows!
https://blogs.technet.microsoft.com/heyscriptingguy/2011/05/24/use-powershell-to-export-outlook-calendar-information/