├── .gitattributes ├── .gitignore ├── LICENSE ├── Legacy ├── Archive │ └── Search-MailboxForMessageClass.ps1 ├── Build │ ├── EWSOAuth.ps1 │ ├── Logging.ps1 │ ├── Test-EWSScripts.ps1 │ └── Update-CommonCode.ps1 ├── Check-NamedProps.ps1 ├── Convert-EWSId.ps1 ├── Create-MailboxBatches.ps1 ├── Delete-ByEntryId.ps1 ├── Delete-ByInternetMessageId.ps1 ├── Fix-DuplicateMailboxFolders.ps1 ├── Get-EmptyFolders.ps1 ├── Get-Office365ServiceStatus.ps1 ├── Import-CalendarCSV.ps1 ├── Merge-MailboxFolder.ps1 ├── Microsoft.Exchange.WebServices.dll ├── RecoverDeletedItems.ps1 ├── Remove-DuplicateItems.ps1 ├── Search-Appointments.ps1 ├── Search-MailboxItems.ps1 ├── Send-Again.ps1 ├── Update-FolderItems.ps1 └── Update-Folders.ps1 └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /Legacy/Archive/Search-MailboxForMessageClass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Archive/Search-MailboxForMessageClass.ps1 -------------------------------------------------------------------------------- /Legacy/Build/EWSOAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Build/EWSOAuth.ps1 -------------------------------------------------------------------------------- /Legacy/Build/Logging.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Build/Logging.ps1 -------------------------------------------------------------------------------- /Legacy/Build/Test-EWSScripts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Build/Test-EWSScripts.ps1 -------------------------------------------------------------------------------- /Legacy/Build/Update-CommonCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Build/Update-CommonCode.ps1 -------------------------------------------------------------------------------- /Legacy/Check-NamedProps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Check-NamedProps.ps1 -------------------------------------------------------------------------------- /Legacy/Convert-EWSId.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Convert-EWSId.ps1 -------------------------------------------------------------------------------- /Legacy/Create-MailboxBatches.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Create-MailboxBatches.ps1 -------------------------------------------------------------------------------- /Legacy/Delete-ByEntryId.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Delete-ByEntryId.ps1 -------------------------------------------------------------------------------- /Legacy/Delete-ByInternetMessageId.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Delete-ByInternetMessageId.ps1 -------------------------------------------------------------------------------- /Legacy/Fix-DuplicateMailboxFolders.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Fix-DuplicateMailboxFolders.ps1 -------------------------------------------------------------------------------- /Legacy/Get-EmptyFolders.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Get-EmptyFolders.ps1 -------------------------------------------------------------------------------- /Legacy/Get-Office365ServiceStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Get-Office365ServiceStatus.ps1 -------------------------------------------------------------------------------- /Legacy/Import-CalendarCSV.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Import-CalendarCSV.ps1 -------------------------------------------------------------------------------- /Legacy/Merge-MailboxFolder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Merge-MailboxFolder.ps1 -------------------------------------------------------------------------------- /Legacy/Microsoft.Exchange.WebServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Microsoft.Exchange.WebServices.dll -------------------------------------------------------------------------------- /Legacy/RecoverDeletedItems.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/RecoverDeletedItems.ps1 -------------------------------------------------------------------------------- /Legacy/Remove-DuplicateItems.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Remove-DuplicateItems.ps1 -------------------------------------------------------------------------------- /Legacy/Search-Appointments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Search-Appointments.ps1 -------------------------------------------------------------------------------- /Legacy/Search-MailboxItems.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Search-MailboxItems.ps1 -------------------------------------------------------------------------------- /Legacy/Send-Again.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Send-Again.ps1 -------------------------------------------------------------------------------- /Legacy/Update-FolderItems.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Update-FolderItems.ps1 -------------------------------------------------------------------------------- /Legacy/Update-Folders.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/Legacy/Update-Folders.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David-Barrett-MS/PowerShell-EWS-Scripts/HEAD/README.md --------------------------------------------------------------------------------