-
Notifications
You must be signed in to change notification settings - Fork 100
/
unReadModule2016.ps1
366 lines (337 loc) · 17.2 KB
/
unReadModule2016.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
function Connect-Exchange {
param(
[Parameter(Position = 0, Mandatory = $true)] [string]$MailboxName,
[Parameter(Position = 1, Mandatory = $true)] [System.Management.Automation.PSCredential]$Credentials,
[Parameter(Position = 2, Mandatory = $false)] [string]$url
)
Begin {
Load-EWSManagedAPI
## Set Exchange Version
if ([Microsoft.Exchange.WebServices.Data.ExchangeVersion]::Exchange2016) {
$ExchangeVersion = [Microsoft.Exchange.WebServices.Data.ExchangeVersion]::Exchange2016
}
else {
$ExchangeVersion = [Microsoft.Exchange.WebServices.Data.ExchangeVersion]::Exchange2013_SP1
}
## Create Exchange Service Object
$service = New-Object Microsoft.Exchange.WebServices.Data.ExchangeService($ExchangeVersion)
## Set Credentials to use two options are availible Option1 to use explict credentials or Option 2 use the Default (logged On) credentials
#Credentials Option 1 using UPN for the windows Account
#$psCred = Get-Credential
$creds = New-Object System.Net.NetworkCredential($Credentials.UserName.ToString(), $Credentials.GetNetworkCredential().password.ToString())
$service.Credentials = $creds
#Credentials Option 2
#service.UseDefaultCredentials = $true
#$service.TraceEnabled = $true
## Choose to ignore any SSL Warning issues caused by Self Signed Certificates
Handle-SSL
## Set the URL of the CAS (Client Access Server) to use two options are availbe to use Autodiscover to find the CAS URL or Hardcode the CAS to use
#CAS URL Option 1 Autodiscover
if ($url) {
$uri = [system.URI] $url
$service.Url = $uri
}
else {
$service.AutodiscoverUrl($MailboxName, { $true })
}
Write-host ("Using CAS Server : " + $Service.url)
#CAS URL Option 2 Hardcoded
#$uri=[system.URI] "https://casservername/ews/exchange.asmx"
#$service.Url = $uri
## Optional section for Exchange Impersonation
#$service.ImpersonatedUserId = new-object Microsoft.Exchange.WebServices.Data.ImpersonatedUserId([Microsoft.Exchange.WebServices.Data.ConnectingIdType]::SmtpAddress, $MailboxName)
if (!$service.URL) {
throw "Error connecting to EWS"
}
else {
return $service
}
}
}
function Load-EWSManagedAPI {
param(
)
Begin {
if (Test-Path ($script:ModuleRoot + "/Microsoft.Exchange.WebServices.dll")) {
Import-Module ($script:ModuleRoot + "/Microsoft.Exchange.WebServices.dll")
$Script:EWSDLL = $script:ModuleRoot + "/Microsoft.Exchange.WebServices.dll"
write-verbose ("Using EWS dll from Local Directory")
}
else {
## Load Managed API dll
###CHECK FOR EWS MANAGED API, IF PRESENT IMPORT THE HIGHEST VERSION EWS DLL, ELSE EXIT
$EWSDLL = (($(Get-ItemProperty -ErrorAction SilentlyContinue -Path Registry::$(Get-ChildItem -ErrorAction SilentlyContinue -Path 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Exchange\Web Services'|Sort-Object Name -Descending| Select-Object -First 1 -ExpandProperty Name)).'Install Directory') + "Microsoft.Exchange.WebServices.dll")
if (Test-Path $EWSDLL) {
Import-Module $EWSDLL
$Script:EWSDLL = $EWSDLL
}
else {
"$(get-date -format yyyyMMddHHmmss):"
"This script requires the EWS Managed API 1.2 or later."
"Please download and install the current version of the EWS Managed API from"
"http://go.microsoft.com/fwlink/?LinkId=255472"
""
"Exiting Script."
exit
}
}
}
}
function Handle-SSL {
param(
)
Begin {
## Code From http://poshcode.org/624
## Create a compilation environment
$Provider = New-Object Microsoft.CSharp.CSharpCodeProvider
$Compiler = $Provider.CreateCompiler()
$Params = New-Object System.CodeDom.Compiler.CompilerParameters
$Params.GenerateExecutable = $False
$Params.GenerateInMemory = $True
$Params.IncludeDebugInformation = $False
$Params.ReferencedAssemblies.Add("System.DLL") | Out-Null
$TASource = @'
namespace Local.ToolkitExtensions.Net.CertificatePolicy{
public class TrustAll : System.Net.ICertificatePolicy {
public TrustAll() {
}
public bool CheckValidationResult(System.Net.ServicePoint sp,
System.Security.Cryptography.X509Certificates.X509Certificate cert,
System.Net.WebRequest req, int problem) {
return true;
}
}
}
'@
$TAResults = $Provider.CompileAssemblyFromSource($Params, $TASource)
$TAAssembly = $TAResults.CompiledAssembly
## We now create an instance of the TrustAll and attach it to the ServicePointManager
$TrustAll = $TAAssembly.CreateInstance("Local.ToolkitExtensions.Net.CertificatePolicy.TrustAll")
[System.Net.ServicePointManager]::CertificatePolicy = $TrustAll
## end code from http://poshcode.org/624
}
}
function CovertBitValue($String) {
$numItempattern = '(?=\().*(?=bytes)'
$matchedItemsNumber = [regex]::matches($String, $numItempattern)
$Mb = [INT64]$matchedItemsNumber[0].Value.Replace("(", "").Replace(",", "")
return [math]::round($Mb / 1048576, 0)
}
function Get-UnReadMessageCount {
param(
[Parameter(Position = 0, Mandatory = $true)] [string]$MailboxName,
[Parameter(Position = 1, Mandatory = $true)] [System.Management.Automation.PSCredential]$Credentials,
[Parameter(Position = 2, Mandatory = $false)] [switch]$useImpersonation,
[Parameter(Position = 3, Mandatory = $false)] [string]$url,
[Parameter(Position = 4, Mandatory = $true)] [Int32]$Months
)
Begin {
$eval1 = "Last" + $Months + "MonthsTotal"
$eval2 = "Last" + $Months + "MonthsUnread"
$eval3 = "Last" + $Months + "MonthsSent"
$eval4 = "Last" + $Months + "MonthsReplyToSender"
$eval5 = "Last" + $Months + "MonthsReplyToAll"
$eval6 = "Last" + $Months + "MonthForward"
$reply = 0;
$replyall = 0
$forward = 0
$rptObj = "" | select MailboxName, Mailboxsize, LastLogon, LastLogonAccount, $eval1, $eval2, $eval4, $eval5, $eval6, LastMailRecieved, $eval3, LastMailSent
$rptObj.MailboxName = $MailboxName
if ($url) {
$service = Connect-Exchange -MailboxName $MailboxName -Credentials $Credentials -url $url
}
else {
$service = Connect-Exchange -MailboxName $MailboxName -Credentials $Credentials
}
if ($useImpersonation.IsPresent) {
$service.ImpersonatedUserId = new-object Microsoft.Exchange.WebServices.Data.ImpersonatedUserId([Microsoft.Exchange.WebServices.Data.ConnectingIdType]::SmtpAddress, $MailboxName)
}
$AQSString1 = "System.Message.DateReceived:>" + [system.DateTime]::Now.AddMonths(-$Months).ToString("yyyy-MM-dd")
$folderid = new-object Microsoft.Exchange.WebServices.Data.FolderId([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::Inbox, $MailboxName)
$Inbox = [Microsoft.Exchange.WebServices.Data.Folder]::Bind($service, $folderid)
$folderid = new-object Microsoft.Exchange.WebServices.Data.FolderId([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::SentItems, $MailboxName)
$SentItems = [Microsoft.Exchange.WebServices.Data.Folder]::Bind($service, $folderid)
$ivItemView = New-Object Microsoft.Exchange.WebServices.Data.ItemView(1000)
$psPropset = new-object Microsoft.Exchange.WebServices.Data.PropertySet([Microsoft.Exchange.WebServices.Data.BasePropertySet]::IdOnly)
$psPropset.Add([Microsoft.Exchange.WebServices.Data.ItemSchema]::DateTimeReceived)
$psPropset.Add([Microsoft.Exchange.WebServices.Data.EmailMessageSchema]::IsRead)
$PidTagLastVerbExecuted = new-object Microsoft.Exchange.WebServices.Data.ExtendedPropertyDefinition(0x1081, [Microsoft.Exchange.WebServices.Data.MapiPropertyType]::Integer);
$psPropset.Add($PidTagLastVerbExecuted)
$ivItemView.PropertySet = $psPropset
$MailboxStats = Get-MailboxStatistics $MailboxName
$ts = CovertBitValue($MailboxStats.TotalItemSize.ToString())
write-host ("Total Size : " + $MailboxStats.TotalItemSize)
$rptObj.MailboxSize = $ts
write-host ("Last Logon Time : " + $MailboxStats.LastLogonTime)
$rptObj.LastLogon = $MailboxStats.LastLogonTime
write-host ("Last Logon Account : " + $MailboxStats.LastLoggedOnUserAccount )
$rptObj.LastLogonAccount = $MailboxStats.LastLoggedOnUserAccount
$fiItems = $null
$unreadCount = 0
$settc = $true
do {
$fiItems = $Inbox.findItems($AQSString1, $ivItemView)
if ($settc) {
$rptObj.$eval1 = $fiItems.TotalCount
write-host ("Last " + $Months + " Months : " + $fiItems.TotalCount)
if ($fiItems.TotalCount -gt 0) {
write-host ("Last Mail Recieved : " + $fiItems.Items[0].DateTimeReceived )
$rptObj.LastMailRecieved = $fiItems.Items[0].DateTimeReceived
}
$settc = $false
}
foreach ($Item in $fiItems.Items) {
$unReadVal = $null
if ($Item.TryGetProperty([Microsoft.Exchange.WebServices.Data.EmailMessageSchema]::IsRead, [ref]$unReadVal)) {
if (!$unReadVal) {
$unreadCount++
}
}
$lastVerb = $null
if ($Item.TryGetProperty($PidTagLastVerbExecuted, [ref]$lastVerb)) {
switch ($lastVerb) {
102 { $reply++ }
103 { $replyall++ }
104 { $forward++ }
}
}
}
$ivItemView.Offset += $fiItems.Items.Count
}while ($fiItems.MoreAvailable -eq $true)
write-host ("Last " + $Months + " Months Unread : " + $unreadCount )
$rptObj.$eval2 = $unreadCount
$rptObj.$eval4 = $reply
$rptObj.$eval5 = $replyall
$rptObj.$eval6 = $forward
$ivItemView = New-Object Microsoft.Exchange.WebServices.Data.ItemView(1)
$fiResults = $SentItems.findItems($AQSString1, $ivItemView)
write-host ("Last " + $Months + " Months Sent : " + $fiResults.TotalCount )
$rptObj.$eval3 = $fiResults.TotalCount
if ($fiResults.TotalCount -gt 0) {
write-host ("Last Mail Sent Date : " + $fiResults.Items[0].DateTimeSent )
$rptObj.LastMailSent = $fiResults.Items[0].DateTimeSent
}
Write-Output $rptObj
}
}
function Get-UnReadCountOnFolder {
param(
[Parameter(Position = 0, Mandatory = $true)] [string]$MailboxName,
[Parameter(Position = 1, Mandatory = $true)] [System.Management.Automation.PSCredential]$Credentials,
[Parameter(Position = 2, Mandatory = $false)] [switch]$useImpersonation,
[Parameter(Position = 3, Mandatory = $false)] [string]$url
)
Begin {
if ($url) {
$service = Connect-Exchange -MailboxName $MailboxName -Credentials $Credentials -url $url
}
else {
$service = Connect-Exchange -MailboxName $MailboxName -Credentials $Credentials
}
if ($useImpersonation.IsPresent) {
$service.ImpersonatedUserId = new-object Microsoft.Exchange.WebServices.Data.ImpersonatedUserId([Microsoft.Exchange.WebServices.Data.ConnectingIdType]::SmtpAddress, $MailboxName)
}
$folderid = new-object Microsoft.Exchange.WebServices.Data.FolderId([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::Inbox, $MailboxName)
$Inbox = [Microsoft.Exchange.WebServices.Data.Folder]::Bind($service, $folderid)
Write-Host ("Total Message Count : " + $Inbox.TotalCount)
Write-Host ("Total Unread Message Count : " + $Inbox.UnreadCount)
$mbcomb = "" | select EmailAddress, Unread, TotalCount
$mbcomb.EmailAddress = $MailboxName
$mbcomb.Unread = $Inbox.UnreadCount
$mbcomb.TotalCount = $Inbox.TotalCount
return $mbcomb
}
}
function Mark-AllMessagesUnread {
param(
[Parameter(Position = 0, Mandatory = $true)] [string]$MailboxName,
[Parameter(Position = 1, Mandatory = $true)] [System.Management.Automation.PSCredential]$Credentials,
[Parameter(Position = 2, Mandatory = $false)] [switch]$useImpersonation,
[Parameter(Position = 3, Mandatory = $false)] [string]$url,
[Parameter(Position = 4, Mandatory = $true)] [string]$FolderPath
)
Begin {
if ($url) {
$service = Connect-Exchange -MailboxName $MailboxName -Credentials $Credentials -url $url
}
else {
$service = Connect-Exchange -MailboxName $MailboxName -Credentials $Credentials
}
if ($useImpersonation.IsPresent) {
$service.ImpersonatedUserId = new-object Microsoft.Exchange.WebServices.Data.ImpersonatedUserId([Microsoft.Exchange.WebServices.Data.ConnectingIdType]::SmtpAddress, $MailboxName)
}
$folderId = FolderIdFromPath -FolderPath $FolderPath -SmtpAddress $MailboxName
if ($folderId -ne $null) {
$Folder = [Microsoft.Exchange.WebServices.Data.Folder]::Bind($service, $folderId)
Write-Host ("Total Message Count : " + $Inbox.TotalCount)
Write-Host ("Total Unread Message Count : " + $Inbox.UnreadCount)
Write-Host ("Marking all messags a unread in folder")
$Folder.MarkAllItemsAsRead($true)
}
}
}
function FolderIdFromPath {
param (
$FolderPath = "$( throw 'Folder Path is a mandatory Parameter' )",
$SmtpAddress = "$( throw 'Folder Path is a mandatory Parameter' )"
)
process {
## Find and Bind to Folder based on Path
#Define the path to search should be seperated with \
#Bind to the MSGFolder Root
$folderid = new-object Microsoft.Exchange.WebServices.Data.FolderId([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::MsgFolderRoot, $SmtpAddress)
$tfTargetFolder = [Microsoft.Exchange.WebServices.Data.Folder]::Bind($service, $folderid)
#Split the Search path into an array
$fldArray = $FolderPath.Split("\")
#Loop through the Split Array and do a Search for each level of folder
for ($lint = 1; $lint -lt $fldArray.Length; $lint++) {
#Perform search based on the displayname of each folder level
$fvFolderView = new-object Microsoft.Exchange.WebServices.Data.FolderView(1)
$SfSearchFilter = new-object Microsoft.Exchange.WebServices.Data.SearchFilter+IsEqualTo([Microsoft.Exchange.WebServices.Data.FolderSchema]::DisplayName, $fldArray[$lint])
$findFolderResults = $service.FindFolders($tfTargetFolder.Id, $SfSearchFilter, $fvFolderView)
if ($findFolderResults.TotalCount -gt 0) {
foreach ($folder in $findFolderResults.Folders) {
$tfTargetFolder = $folder
}
}
else {
"Error Folder Not Found"
$tfTargetFolder = $null
break
}
}
if ($tfTargetFolder -ne $null) {
return $tfTargetFolder.Id
}
else {
throw "Folder not found"
}
}
}
function Mark-LastMessageReadinInbox {
param(
[Parameter(Position = 0, Mandatory = $true)] [string]$MailboxName,
[Parameter(Position = 1, Mandatory = $true)] [System.Management.Automation.PSCredential]$Credentials,
[Parameter(Position = 2, Mandatory = $false)] [switch]$useImpersonation,
[Parameter(Position = 3, Mandatory = $false)] [string]$url
)
Begin {
if ($url) {
$service = Connect-Exchange -MailboxName $MailboxName -Credentials $Credentials -url $url
}
else {
$service = Connect-Exchange -MailboxName $MailboxName -Credentials $Credentials
}
if ($useImpersonation.IsPresent) {
$service.ImpersonatedUserId = new-object Microsoft.Exchange.WebServices.Data.ImpersonatedUserId([Microsoft.Exchange.WebServices.Data.ConnectingIdType]::SmtpAddress, $MailboxName)
}
$folderid = new-object Microsoft.Exchange.WebServices.Data.FolderId([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::Inbox, $MailboxName)
$Inbox = [Microsoft.Exchange.WebServices.Data.Folder]::Bind($service, $folderid)
$ivItemView = New-Object Microsoft.Exchange.WebServices.Data.ItemView(1)
$fiItems = $service.FindItems($Inbox.Id, $ivItemView)
if ($fiItems.Items.Count -eq 1) {
$fiItems.Items[0].isRead = $true
$fiItems.Items[0].Update([Microsoft.Exchange.WebServices.Data.ConflictResolutionMode]::AutoResolve);
}
}
}