-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProvision-MSOLUsers-student-only.ps1
195 lines (178 loc) · 8.5 KB
/
Provision-MSOLUsers-student-only.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
# Provision-MSOLUsers.ps1 script, by J. Greg Mackinnon, 2014-07-30
# Updated 2014-11-20, new license SKU, corrections to error capture commands, and stronger typing of variables.
#
# Provisions all active student accounts in Active Directory with an Office 365 ProPlus license.
#
# Requires:
# - PowerShell Module "MSOnline"
# - PowerShell Module "ActiveDirectory"
# - Azure AD account with rights to read account information and set license status
# - Credentials for this account, with password saved in a file, as detailed below.
# - Script runs as a user with rights to read the eduPersonAffiliation property of all accounts in Active Directory.
#
# Create a credential file using the following procedure:
# 1. Log in as the user that will execute the script.
# 2. Execute the following line of code in PowerShell:
# ConvertTo-SecureString -String 'password' -AsPlainText -Force | ConvertFrom-SecureString | out-file "c:\local\scripts\msolCreds.txt" -Force
#
Set-PSDebug -Strict
#Setup local variables:
[string] $to = '[email protected]'
[string] $from = '[email protected]'
[string] $smtp = 'smtp.uvm.edu'
[string] $msolUser = '[email protected]'
#initialize log and counter:
[string[]] $log = @()
[long] $pCount = 0
#initialize logging:
[string] $logFQPath = "c:\local\temp\provision-MSOLUsers.log"
New-Item -Path $logFQPath -ItemType file -Force
[DateTime] $sTime = get-date
$log += "Provisioning report for Office 365/Azure AD for: " + ($sTime.ToString()) + "`r`n"
function errLogMail ($err,$msg) {
# Write error to log and e-mail function
# Writes out the error object in $err to the global $log object.
# Flushes the contents of the $log array to file,
# E-mails the log contents to the mail address specified in $to.
[string] $except = $err.exception;
[string] $invoke = $err.invocationInfo.Line;
[string] $posMsg = $err.InvocationInfo.PositionMessage;
$log += $msg + "`r`n`r`nException: `r`n$except `r`n`r`nError Position: `r`n$posMsg";
$log | Out-File -FilePath $logFQPath -Append;
[string] $subj = 'Office 365 Provisioning Script: ERROR'
[string] $body = $log | % {$_ + "`r`n"}
Send-MailMessage -To $to -From $from -Subject $subj -Body $body -SmtpServer $smtp
}
#Import PS Modules used by this script:
try {
Import-Module MSOnline -ErrorAction Stop ;
} catch {
$myError = $_
[string] $myMsg = "Error encountered loading Azure AD (MSOnline) PowerShell module."
errLogMail $myError $myMsg
exit 101
}
try {
Import-Module ActiveDirectory -ErrorAction Stop ;
} catch {
$myError = $_
[string] $myMsg = "Error encountered loading ActiveDirectory PowerShell module."
errLogMail $myError $myMsg
exit 102
}
#Get credentials for use with MS Online Services:
try {
$msolPwd = get-content C:\local\scripts\msolCreds.txt | convertto-securestring -ErrorAction Stop ;
} catch {
$myError = $_
[string] $myMsg = "Error encountered getting creds from file."
errLogMail $myError $myMsg
exit 110
}
try {
$msolCreds = New-Object System.Management.Automation.PSCredential ($msolUser, $msolPwd) -ErrorAction Stop ;
} catch {
$myError = $_
[string] $myMsg = "Error encountered in generating credential object."
errLogMail $myError $myMsg
exit 120
}
#Use the following credential command instead of the block above if running this script interactively:
#$msolCreds = get-credential
#Connect to MS Online Services:
try {
#ErrorAction set to "Stop" for force any errors to be terminating errors.
# default behavior for connection errors is non-terminating, so the "catch" block will not be processed.
Connect-MsolService -Credential $msolCreds -ErrorAction Stop
} catch {
$myError = $_
[string] $myMsg = "Error encountered in connecting to MSOL Services."
errLogMail $myError $myMsg
exit 130
}
$log += "Connected to MS Online Services.`r`n"
#Generate license report:
$lics = @()
$studAdv = Get-MsolAccountSku | ? {$_.accountSkuId -match 'STANDARDWOFFPACK_IW_STUDENT'}
$log += 'Office 365 ProPlus for Student - license report:'
$log += 'Total licenses: ' + $ppsSub.ActiveUnits
$log += 'Consumed licenses: ' + $ppsSub.ConsumedUnits
[int32] $alCount = $ppsSub.ActiveUnits - $ppsSub.ConsumedUnits
$log += 'Remaining licenses: ' + $alCount.toString() + "`r`n"
#Set license options for students:
$stuLicOpts = New-MsolLicenseOptions -AccountSkuId $studAdv.AccountSkuId -DisabledPlans YAMMER_EDU,SHAREPOINTWAC_EDU,SHAREPOINTSTANDARD_EDU,EXCHANGE_S_STANDARD,MCOSTANDARD
#Retrieve active student accounts into a hashtable:
[hashtable] $students = @{}
try {
#$NOTE: The filter used for collecting students needed to be modified to fetch admitted students that are not yet active
# This is a 'hack' implemented by FCS to address the tendency for the registrar not to change student status until the first day of class.
# (Actual student count should be lower, but we have no way to know what the final count will be until the first day of classes.)
#
#get-aduser -LdapFilter '(&(ObjectClass=inetOrgPerson)(eduPersonAffiliation=Student))' -SearchBase 'ou=people,dc=campus,dc=ad,dc=uvm,dc=edu' -SearchScope Subtree -ErrorAction Stop | % {$students.Add($_.userPrincipalName,$_.Enabled)}
get-aduser -LdapFilter '(&(ObjectClass=inetOrgPerson)(extensionAttribute1=*Student*))' -SearchBase 'ou=people,dc=campus,dc=ad,dc=uvm,dc=edu' -SearchScope Subtree -ErrorAction Stop | % {$students.Add($_.userPrincipalName,$_.Enabled)}
} catch {
$myError = $_
$myMsg = "Error encountered in reading accounts from Active Directory."
errLogMail $myError $myMsg
exit 200
}
$log += "Retrieved active students from Active Directory."
$log += "Active student count: " + $students.count
#Retrieve unprovisioned accounts from Azure AD:
[array] $ulUsers = @()
try {
#Note use of "Synchronized" to suppress processing of cloud-only accounts.
$ulUsers += Get-MsolUser -UnlicensedUsersOnly -Synchronized -All -errorAction Stop
} catch {
$myError = $_
$myMsg = "Error encountered in reading accounts from Azure AD. "
errLogMail $myError $myMsg
exit 300
}
$log += "Retrieved unlicensed MSOL users."
$log += "Unlicensed user count: " + $ulUsers.Count + "`r`n"
#Provision any account in $ulUsers that also is in the $students array:
foreach ($u in $ulUsers) {
if ($students.get_item($u.UserPrincipalName) -eq $true) {
#Uncomment to enable verbose logging of user to be processed.
#$log += $u.UserPrincipalName + " is an active student."
try {
if ($u.UsageLocation -notmatch 'US') {
#Set the usage location to the US... this is a prerequisite to assigning licenses.
$u | Set-MsolUser -UsageLocation 'US' -ErrorAction Stop ;
#Uncomment to enable verbose logging of usage location assignments.
#$log += 'Successfully set them usage location for the user. '
}
} catch {
$myError = $_
$myMsg = "Error encountered in setting Office 365 usage location to user. "
errLogMail $myError $myMsg
exit 410
}
try {
#Assign the student advantage license to the user, with desired license options
$u | Set-MsolUserLicense -AddLicenses $studAdv.AccountSkuId -LicenseOptions $stuLicOpts -ErrorAction Stop ;
#Uncomment to enable verbose logging of license assignments.
#$log += 'Successfully set the Office license for the user. '
$pCount += 1
} catch {
$myError = $_
$myMsg = "Error encountered in assigning Office 365 license to user. "
errLogMail $myError $myMsg
exit 420
}
} else {
$log += $u.UserPrincipalName + " is not an active student. Skipped Provisioning."
}
}
#Add reporting details to the log:
$eTime = Get-Date
$log += "`r`nProvisioning successfully completed at: " + ($eTime.ToString())
$log += "Provisioned $pCount accounts."
$tTime = new-timespan -Start $stime -End $etime
$log += 'Elapsed Time (hh:mm:ss): ' + $tTime.Hours + ':' + $tTime.Minutes + ':' + $tTime.Seconds
#Flush out the log and mail it:
$log | Out-File -FilePath $logFQPath -Append;
[string] $subj = 'Office 365 Provisioning Script: SUCCESS'
[string] $body = $log | % {$_ + "`r`n"}
Send-MailMessage -To $to -From $from -Subject $subj -Body $body -SmtpServer $smtp