-
Notifications
You must be signed in to change notification settings - Fork 1
/
Find-UnlicensedWithMailbox.ps1
145 lines (111 loc) · 3.62 KB
/
Find-UnlicensedWithMailbox.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
#requires -version 2
<#
.SYNOPSIS
Locates unlicensed users that have an existing mailbox. Useful for hybrid mirgations.
.DESCRIPTION
<Brief description of script>
.PARAMETER Domain
Required parameter. Domain in which to search for users and mailboxes.
.INPUTS
Parameters above
.OUTPUTS
Returns SPLATed set of user objects and primary smtp addresses.
.NOTES
Version: 1.0
Author: Jared McArthur
Creation Date: 14/03/2015
Purpose/Change: Initial script development
.EXAMPLE
<Example goes here. Repeat this attribute for more than one example>
#>
Param([Parameter(Mandatory=$true)][string]$domain)
#---------------------------------------------------------[Initialisations]--------------------------------------------------------
#Set Error Action to Silently Continue
#$ErrorActionPreference = "SilentlyContinue"
#Dot Source required Function Libraries
. ".\Logging_Functions.ps1"
#. ".\Connect_Functions.ps1"
#----------------------------------------------------------[Declarations]----------------------------------------------------------
#Script Version
$sScriptVersion = "1.0"
#Log File Info
$sLogPath = "."
$sLogName = "UnlicensedWithMailbox.log"
$sLogFile = Join-Path -Path $sLogPath -ChildPath $sLogName
#-----------------------------------------------------------[Functions]------------------------------------------------------------
Function GetUnlicensed{
Param([Parameter(Mandatory=$true)][string]$domain)
Begin{
Log-Write -LogPath $sLogFile -LineValue "Generating array of users in provided domain."
}
Process{
Try{
$users = get-msoluser -all | ? { !$_.isLicensed -and $_.UserPrincipalName -like "*$domain*" }
#return @($users | % { foreach ( $i in 0..($_.count-1) ) { get-mailbox -Identity $_[$i].userprincipalname.split('@')[0] | ? {$_.primarysmtpaddress -like "*@safeplace.org" } } })
return $users
}
Catch{
Log-Error -LogPath $sLogFile -ErrorDesc $_.Exception -ExitGracefully $True
Break
}
}
End{
If($?){
Log-Write -LogPath $sLogFile -LineValue " GetUnlicensed Completed Successfully."
Log-Write -LogPath $sLogFile -LineValue " "
}
}
}
Function GetPrimarySMTP{
Param([Parameter(Mandatory=$true)][string[]]$users)
Begin{
Log-Write -LogPath $sLogFile -LineValue "Extracting PrimarySMTP values from proxyAddresses"
}
Process{
Try{
$smtp = @($users | % { $_ | % { if ( $_.startswith("SMTP") ) { $_.substring(5)} } })
}
Catch{
Log-Error -LogPath $sLogFile -ErrorDesc $_.Exception -ExitGracefully $True
Break
}
}
End{
If($?){
Log-Write -LogPath $sLogFile -LineValue " GetPrimarySMTP Completed Successfully."
Log-Write -LogPath $sLogFile -LineValue " "
}
}
}
Function Main{
Param(
[Parameter(Mandatory=$true)][string]$domain
)
Begin{
Log-Write -LogPath $sLogFile -LineValue "Begin query on $domain"
}
Process{
Try{
$users = GetUnlicensed $domain
$smtp = GetPrimarySMTP $users.proxyaddresses
return @{
users = $users
smtp = $smtp
}
}
Catch{
Log-Error -LogPath $sLogFile -ErrorDesc $_.Exception -ExitGracefully $True
Break
}
}
End{
If($?){
Log-Write -LogPath $sLogFile -LineValue "Main Completed Successfully."
Log-Write -LogPath $sLogFile -LineValue " "
}
}
}
#-----------------------------------------------------------[Execution]------------------------------------------------------------
#Log-Start -LogPath $sLogPath -LogName $sLogName -ScriptVersion $sScriptVersion
#main $domain
#Log-Finish -LogPath $sLogFile