-
Notifications
You must be signed in to change notification settings - Fork 54
/
Import-SPE-DeviceConfiguration.ps1
577 lines (395 loc) · 15.1 KB
/
Import-SPE-DeviceConfiguration.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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
<#
.COPYRIGHT
Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
See LICENSE in the project root for license information.
#>
$ScriptDir = Split-Path $script:MyInvocation.MyCommand.Path
$ImportPath = $ScriptDir + "\JSON\DeviceConfiguration"
####################################################
function Test-MgAuth {
<#
.SYNOPSIS
This function is used to authenticate with the Graph API REST interface
.DESCRIPTION
The function authenticate with the Graph API Interface with the tenant name
.EXAMPLE
Test-MgAuth
Authenticates you with the Graph API interface
.NOTES
NAME: Test-MgAuth
#>
[cmdletbinding()]
param
(
[Parameter(Mandatory = $true)]
$User
)
$userUpn = New-Object "System.Net.Mail.MailAddress" -ArgumentList $User
$tenant = $userUpn.Host
Write-Host "Checking for Microsoft Graph module..."
$MgModule = Get-Module -Name "Microsoft.Graph" -ListAvailable
if ($null -eq $MgModule) {
write-host
write-host "Microsoft Graph Powershell module not installed..." -f Red
write-host "Install by running 'Install-Module Microsoft.Graph' or 'Install-Module Microsoft.Graph' from an elevated PowerShell prompt" -f Yellow
write-host "Script can't continue..." -f Red
write-host
}
$scopes = @()
#########################################
# Directory related scopes #
#########################################
$scopes += @("Device.Read.All",
"User.Read.All",
"GroupMember.ReadWrite.All",
"Group.ReadWrite.All",
"Directory.ReadWrite.All")
#########################################
# Device Management scopes #
#########################################
$scopes += @("DeviceManagementConfiguration.ReadWrite.All",
"DeviceManagementServiceConfig.ReadWrite.All",
"DeviceManagementRBAC.ReadWrite.All",
"DeviceManagementManagedDevices.ReadWrite.All",
"DeviceManagementApps.ReadWrite.All")
#$clientId = "d1ddf0e4-d672-4dae-b554-9d5bdfd93547"
#$redirectUri = "urn:ietf:wg:oauth:2.0:oob"
try {
Connect-MgGraph -Scopes $scopes -TenantId $tenant
#validate connected to proper tenant and account
$ctx = Get-MgContext
$org = Get-MgOrganization
$domains = $org.VerifiedDomains | select-object -ExpandProperty Name
if ($ctx.Account.ToLower() -ne $userUpn.Address.ToLower() -or ($ctx.TenantId -ne $org.Id) -or $domains -notcontains $tenant) {
write-host "Unable to verify tenant or account" -f Red
Disconnect-MgGraph
throw "Unable to continue due to validation"
}
# $authHeader = @{
# 'Content-Type' = 'application/json'
# 'Authorization' = "Bearer " + $authResult.AccessToken
# 'ExpiresOn' = $authResult.ExpiresOn
# }
# return $authHeader
}
catch {
write-host $_.Exception.Message -f Red
write-host $_.Exception.ItemName -f Red
write-host
break
}
}
####################################################
Function Add-DeviceConfigurationPolicy() {
<#
.SYNOPSIS
This function is used to add an device configuration policy using the Graph API REST interface
.DESCRIPTION
The function connects to the Graph API Interface and adds a device configuration policy
.EXAMPLE
Add-DeviceConfigurationPolicy -JSON $JSON
Adds a device configuration policy in Intune
.NOTES
NAME: Add-DeviceConfigurationPolicy
#>
[cmdletbinding()]
param
(
$JSON
)
$graphApiVersion = "Beta"
$DCP_resource = "deviceManagement/deviceConfigurations"
Write-Verbose "Resource: $DCP_resource"
try {
if ($JSON -eq "" -or $null -eq $JSON) {
write-host "No JSON specified, please specify valid JSON for the Policy..." -f Red
}
else {
Test-JSON -JSON $JSON
$uri = "https://graph.microsoft.com/$graphApiVersion/$($DCP_resource)"
Invoke-MgGraphRequest -Uri $uri -Method Post -Body $JSON -ContentType "application/json"
}
}
catch {
$ex = $_.Exception
Write-Host "Response content:`n$($ex.Response.Content.ReadAsStringAsync().Result)" -f Red
Write-Error "Request to $Uri failed with HTTP Status $($ex.Response.StatusCode) $($ex.Response.StatusDescription)"
write-host
break
}
}
####################################################
Function Add-DeviceConfigurationPolicyAssignment() {
<#
.SYNOPSIS
This function is used to add a device configuration policy assignment using the Graph API REST interface
.DESCRIPTION
The function connects to the Graph API Interface and adds a device configuration policy assignment
.EXAMPLE
Add-DeviceConfigurationPolicyAssignment -ConfigurationPolicyId $ConfigurationPolicyId -TargetGroupId $TargetGroupId
Adds a device configuration policy assignment in Intune
.NOTES
NAME: Add-DeviceConfigurationPolicyAssignment
#>
[cmdletbinding()]
param
(
$ConfigurationPolicyId,
$TargetGroupId,
$Assignment
)
$graphApiVersion = "Beta"
$Resource = "deviceManagement/deviceConfigurations/$ConfigurationPolicyId/assignments"
try {
if (!$ConfigurationPolicyId) {
write-host "No Configuration Policy Id specified, specify a valid Configuration Policy Id" -f Red
break
}
if (!$TargetGroupId) {
write-host "No Target Group Id specified, specify a valid Target Group Id" -f Red
break
}
if (!$Assignment) {
write-host "No Assignment Type specified, specify a valid Assignment Type" -f Red
break
}
$ConfPolAssign = "$ConfigurationPolicyId" + "_" + "$TargetGroupId"
$JSON = @"
{
"target": {
"@odata.type": "$Assignment",
"groupId": "$TargetGroupId"
}
}
"@
$uri = "https://graph.microsoft.com/$graphApiVersion/$($Resource)"
Invoke-MgGraphRequest -Uri $uri -Method Post -Body $JSON -ContentType "application/json"
}
catch {
$ex = $_.Exception
Write-Host "Response content:`n$($ex.Response.Content.ReadAsStringAsync().Result)" -f Red
Write-Error "Request to $Uri failed with HTTP Status $($ex.Response.StatusCode) $($ex.Response.StatusDescription)"
write-host
break
}
}
####################################################
Function Get-DeviceConfigurationPolicy() {
<#
.SYNOPSIS
This function is used to get device configuration policies from the Graph API REST interface
.DESCRIPTION
The function connects to the Graph API Interface and gets any device configuration policies
.EXAMPLE
Get-DeviceConfigurationPolicy
Returns any device configuration policies configured in Intune
.NOTES
NAME: Get-DeviceConfigurationPolicy
#>
[cmdletbinding()]
param
(
$name
)
$graphApiVersion = "Beta"
$DCP_resource = "deviceManagement/deviceConfigurations"
try {
if ($Name) {
$uri = "https://graph.microsoft.com/$graphApiVersion/$($DCP_resource)"
(Invoke-MgGraphRequest -Uri $uri -Method Get).Value | Where-Object { ($_.'displayName').contains("$Name") }
}
else {
$uri = "https://graph.microsoft.com/$graphApiVersion/$($DCP_resource)"
(Invoke-MgGraphRequest -Uri $uri -Method Get).Value
}
}
catch {
$ex = $_.Exception
Write-Host "Response content:`n$($ex.Response.Content.ReadAsStringAsync().Result)" -f Red
Write-Error "Request to $Uri failed with HTTP Status $($ex.Response.StatusCode) $($ex.Response.StatusDescription)"
write-host
break
}
}
####################################################
Function Get-AADGroup() {
<#
.SYNOPSIS
This function is used to get AAD Groups from the Graph API REST interface
.DESCRIPTION
The function connects to the Graph API Interface and gets any Groups registered with AAD
.EXAMPLE
Get-AADGroup
Returns all users registered with Azure AD
.NOTES
NAME: Get-AADGroup
#>
[cmdletbinding()]
param
(
$GroupName,
$id,
[switch]$Members
)
# Defining Variables
$graphApiVersion = "v1.0"
$Group_resource = "groups"
# pseudo-group identifiers for all users and all devices
[string]$AllUsers = "acacacac-9df4-4c7d-9d50-4ef0226f57a9"
[string]$AllDevices = "adadadad-808e-44e2-905a-0b7873a8a531"
try {
if ($id) {
$uri = "https://graph.microsoft.com/$graphApiVersion/$($Group_resource)?`$filter=id eq '$id'"
switch ( $id ) {
$AllUsers { $grp = [PSCustomObject]@{ displayName = "All users" }; $grp }
$AllDevices { $grp = [PSCustomObject]@{ displayName = "All devices" }; $grp }
default { (Invoke-MgGraphRequest -Uri $uri -Method Get).Value }
}
}
elseif ($GroupName -eq "" -or $null -eq $GroupName) {
$uri = "https://graph.microsoft.com/$graphApiVersion/$($Group_resource)"
(Invoke-MgGraphRequest -Uri $uri -Method Get).Value
}
else {
if (!$Members) {
$uri = "https://graph.microsoft.com/$graphApiVersion/$($Group_resource)?`$filter=displayname eq '$GroupName'"
(Invoke-MgGraphRequest -Uri $uri -Method Get).Value
}
elseif ($Members) {
$uri = "https://graph.microsoft.com/$graphApiVersion/$($Group_resource)?`$filter=displayname eq '$GroupName'"
$Group = (Invoke-MgGraphRequest -Uri $uri -Method Get).Value
if ($Group) {
$GID = $Group.id
$Group.displayName
write-host
$uri = "https://graph.microsoft.com/$graphApiVersion/$($Group_resource)/$GID/Members"
(Invoke-MgGraphRequest -Uri $uri -Method Get).Value
}
}
}
}
catch {
$ex = $_.Exception
Write-Host "Response content:`n$($ex.Response.Content.ReadAsStringAsync().Result)" -f Red
Write-Error "Request to $Uri failed with HTTP Status $($ex.Response.StatusCode) $($ex.Response.StatusDescription)"
write-host
break
}
}
####################################################
Function Test-JSON() {
<#
.SYNOPSIS
This function is used to test if the JSON passed to a REST Post request is valid
.DESCRIPTION
The function tests if the JSON passed to the REST Post is valid
.EXAMPLE
Test-JSON -JSON $JSON
Test if the JSON is valid before calling the Graph REST interface
.NOTES
NAME: Test-AuthHeader
#>
param (
$JSON
)
try {
$TestJSON = ConvertFrom-Json $JSON -ErrorAction Stop
$validJson = $true
}
catch {
$validJson = $false
$_.Exception
}
if (!$validJson) {
Write-Host "Provided JSON isn't in valid JSON format" -f Red
break
}
}
####################################################
#region Authentication
write-host
if ($null -eq $User -or $User -eq "") {
$User = Read-Host -Prompt "Please specify your user principal name for Azure Authentication"
Write-Host
}
Test-MgAuth -User $User
#endregion
####################################################
# Setting application AAD Group to assign Policy
#$AADGroup = Read-Host -Prompt "Enter the Azure AD Group name where policies will be assigned"
#$TargetGroupId = (Get-AADGroup | Where-Object {$_.displayName -eq $AADGroup}).id
#
# if($TargetGroupId -eq $null -or $TargetGroupId -eq ""){
#
# Write-Host "AAD Group - '$AADGroup' doesn't exist, please specify a valid AAD Group..." -ForegroundColor Red
# Write-Host
# exit
# }
# Replacing quotes for Test-Path
$ImportPath = $ImportPath.replace('"', '')
if (!(Test-Path "$ImportPath")) {
Write-Host "Import Path for JSON file doesn't exist..." -ForegroundColor Red
Write-Host "Script can't continue..." -ForegroundColor Red
Write-Host
break
}
####################################################
Get-ChildItem $ImportPath -filter *.json |
Foreach-object {
$JSON_Data = Get-Content $_.FullName
# Excluding entries that are not required - id,createdDateTime,lastModifiedDateTime,version
$JSON_Convert = $JSON_Data | ConvertFrom-Json | Select-Object -Property * -ExcludeProperty id, createdDateTime, lastModifiedDateTime, version, supportsScopeTags
$DisplayName = $JSON_Convert.displayName
$DuplicateDCP = Get-DeviceConfigurationPolicy -Name $JSON_Convert.displayName
If ($DuplicateDCP -eq $null) {
$JSON_Output = $JSON_Convert | ConvertTo-Json -Depth 5
write-host
write-host "Device Configuration Policy '$DisplayName' Found..." -ForegroundColor Yellow
write-host
$JSON_Output
write-host
Write-Host "Adding Device Configuration Policy '$DisplayName'" -ForegroundColor Yellow
Add-DeviceConfigurationPolicy -JSON $JSON_Output
$DeviceConfigs = Get-DeviceConfigurationPolicy -name $DisplayName
$DeviceConfigID = $DeviceConfigs.id
Write-Host "Device ConfigID '$DeviceConfigID'" -ForegroundColor Yellow
Write-Host
$AADGroups = $JSON_Convert.assignments.target
foreach ($AADGroup in $AADGroups )
{
Write-Host "AAD Group Name:" $AADGroup.groupId -ForegroundColor Yellow
Write-Host "Assignment Type:" $AADGroup."@OData.type" -ForegroundColor Yellow
$TargetGroupId = (Get-AADGroup -GroupName $AADGroup.groupid)
Write-Host "Included Group ID:" $TargetGroupID.Id -ForegroundColor Yellow
Add-DeviceConfigurationPolicyAssignment -ConfigurationPolicyId $DeviceConfigID -TargetGroupId $TargetGroupId.id -Assignment $AADGroup."@OData.type"
}
# Create exclude Group
<#$ShortName = $JSON_Convert.displayName -replace "PAW-Global-2009-Intune-Configuration-", ''
$ExcludeGroup = "PAW-"+$ShortName+"-Exclude-Device"
If (Get-AzureADGroup -SearchString $ExcludeGroup) {
Write-Host
Write-Host "AAD group" $ExcludeGroup "already exists!" -f Yellow
Write-Host
}
Else {
$MailNickName = $ShortName+"-G"
try
{
$ExcludeTargetGroup = New-AzureADGroup -DisplayName $ExcludeGroup -Description $ExcludeGroup"-Group" -MailEnabled $false -SecurityEnabled $true -MailNickName $MailNickName
sleep 5
}
catch
{
Write-Host
Write-Host "Error creating AAD group" $ExcludeGroup -f Red
Write-Host
}
}
Write-Host "Excluded Group ID" $ExcludeTargetGroup.objectid
Add-DeviceConfigurationPolicyAssignment -ConfigurationPolicyId $DeviceConfigID -TargetGroupId $ExcludeTargetGroup.objectid -Assignment "exclusionGroupAssignmentTarget"
#>
}
else {
write-host "Device Configuration Profile:" $JSON_Convert.displayName "has already been created" -ForegroundColor Yellow
}
}