-
Notifications
You must be signed in to change notification settings - Fork 2
/
MicrosoftGraphPS.psm1
1264 lines (1039 loc) · 52.2 KB
/
MicrosoftGraphPS.psm1
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
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Function Connect-MicrosoftGraphPS
{
<#
.SYNOPSIS
Connect to Microsoft Graph (requires PS-module Microsoft Graph minimum v2.x)
.DESCRIPTION
Connect to Microsoft Graph using Azure App & Secret
Connect to Microsoft Graph using Azure App & Certificate Thumprint
Connect to Microsoft Graph using interactive login and scope
.AUTHOR
Morten Knudsen, Microsoft MVP - https://mortenknudsen.net
.LINK
https://github.com/KnudsenMorten/MicrosoftGraphPS
.PARAMETER AppId
This is the Azure app id
.PARAMETER AppSecret
This is the secret of the Azure app
.PARAMETER TenantId
This is the Azure AD tenant id
.PARAMETER CertificateThumbprint
This is the thumprint of the installed certificate
.PARAMETER ShowMgContext
switch to show the current Microsoft Graph context
.PARAMETER ShowMgContextExpandScopes
switch to show the Microsoft Graph permissions in the current context
.PARAMETER Scopes
Here you can define an array of permissions
.INPUTS
None. You cannot pipe objects
.OUTPUTS
Connection to Microsoft Graph ("welcome")
.EXAMPLE
# Microsoft Graph connect with AzApp & Secret
Connect-MicrosoftGraphPS -AppId $global:HighPriv_Modern_ApplicationID_Azure `
-AppSecret $global:HighPriv_Modern_Secret_Azure `
-TenantId $global:AzureTenantID
# Microsoft Graph connect with AzApp & CertificateThumprint
Connect-MicrosoftGraphPS -AppId $global:HighPriv_Modern_ApplicationID_Azure `
-CertificateThumbprint $global:HighPriv_Modern_CertificateThumbprint_Azure `
-TenantId $global:AzureTenantID
# Show Permissions in the current context
Connect-MicrosoftGraphPS -ShowMgContextExpandScopes
# Show context of current Microsoft Graph context
Connect-MicrosoftGraphPS -ShowMgContext
# Microsoft Graph connect with interactive login with the permission defined in the scopes
$Scopes = @("DeviceManagementConfiguration.ReadWrite.All",`
"DeviceManagementManagedDevices.ReadWrite.All",`
"DeviceManagementServiceConfig.ReadWrite.All"
)
Connect-MicrosoftGraphPS -Scopes $Scopes
#>
[CmdletBinding()]
param(
[Parameter()]
[string]$AppId,
[Parameter()]
[string]$AppSecret,
[Parameter()]
[string]$CertificateThumbprint,
[Parameter()]
[string]$TenantId,
[Parameter()]
[switch]$ShowMgContext = $false,
[Parameter()]
[switch]$ShowMgContextExpandScopes = $false,
[Parameter()]
[array]$Scopes
)
#---------------------------------------------------------------------
# Microsoft Graph (MgGraph) connect with AzApp & AppSecret
#---------------------------------------------------------------------
If ( ($AppId) -and ($AppSecret) -and ($TenantId) )
{
$Disconnect = Disconnect-MgGraph -ErrorAction SilentlyContinue
$AppSecretSecure = ConvertTo-SecureString $AppSecret -AsPlainText -Force
$ClientSecretCredential = New-Object System.Management.Automation.PSCredential ($AppId, $AppSecretSecure)
write-host "Connecting to Microsoft Graph using Azure App & Secret"
Connect-MgGraph -TenantId $TenantId -ClientSecretCredential $ClientSecretCredential
}
#---------------------------------------------------------------------
# Microsoft Graph (MgGraph) connect with AzApp & CertificateThumpprint
#---------------------------------------------------------------------
ElseIf ( ($AppId) -and ($CertificateThumbprint) -and ($TenantId) )
{
$Disconnect = Disconnect-MgGraph -ErrorAction SilentlyContinue
write-host "Connecting to Microsoft Graph using Azure App & CertificateThumprint"
Connect-MgGraph -TenantId $TenantId -ClientId $AppId -CertificateThumbprint $CertificateThumbprint
}
#---------------------------------------------------------------------
# Microsoft Graph (MgGraph) connect using interactive connectivity
#---------------------------------------------------------------------
ElseIf ($ShowMgContext)
{
$Context = Get-MgContext
Return $Context
}
ElseIf ($ShowMgContextExpandScopes)
{
$Context = Get-MgContext | Select -ExpandProperty Scopes
Return $Context
}
Else
{
Connect-MgGraph -Scopes $Scopes
}
}
Function Connect-MicrosoftRestApiEndpointPS
{
<#
.SYNOPSIS
Connect to REST API endpoint
.DESCRIPTION
Connect to REST API endpoint like https://api.securitycenter.microsoft.com
.AUTHOR
Morten Knudsen, Microsoft MVP - https://mortenknudsen.net
.LINK
https://github.com/KnudsenMorten/MicrosoftGraphPS
.PARAMETER Uri
This is the Uri for the REST endpoint in Microsoft Graph
.PARAMETER AppId
This is the Azure app id
.PARAMETER AppSecret
This is the secret of the Azure app
.PARAMETER TenantId
This is the Azure AD tenant id
.INPUTS
None. You cannot pipe objects
.OUTPUTS
Connection Header & Token
.EXAMPLE
$ConnectAuth = Connect-MicrosoftRestApiEndpointPS -AppId $global:HighPriv_Modern_ApplicationID_O365 `
-AppSecret $global:HighPriv_Modern_Secret_O365 `
-TenantId $global:AzureTenantID `
-Uri "https://api.securitycenter.microsoft.com"
#>
[CmdletBinding()]
param(
[Parameter(mandatory)]
[string]$Uri,
[Parameter()]
[string]$AppId,
[Parameter()]
[string]$AppSecret,
[Parameter()]
[string]$TenantId
)
<# TROUBLESHOOTING
$AppId = $global:HighPriv_Modern_ApplicationID_O365
$AppSecret = $global:HighPriv_Modern_Secret_O365
$TenantId = $global:AzureTenantID
$Uri = "https://api.securitycenter.microsoft.com"
#>
# Get Token
$oAuthUri = "https://login.microsoftonline.com/$($TenantID)/oauth2/token"
$authBody = [Ordered] @{
resource = $Uri
client_id = $AppId
client_secret = $AppSecret
grant_type = 'client_credentials'
}
$AuthResponse = Invoke-RestMethod -Method Post -Uri $oAuthUri -Body $authBody -ErrorAction Stop
$Token = $AuthResponse.access_token
# Set the WebRequest headers
$Headers = @{
'Content-Type' = 'application/json'
Accept = 'application/json'
Authorization = "Bearer $token"
}
Return $Token, $Headers
}
Function Get-MgUser-AllProperties-AllUsers
{
<#
.SYNOPSIS
Performs a Get-MgUser for all users retrieving all properties (except for certain properties which cannot be returned within a user collection).
Manager property is being expanded
.DESCRIPTION
Get all properties for all users
Expands manager information
Excludes certain properties which cannot be returned within a user collection in bulk retrieval (*)
(*)
https://learn.microsoft.com/en-us/graph/api/user-list?view=graph-rest-1.0&tabs=http#optional-query-parameters
The following properties are only supported when retrieving a single user: aboutMe, birthday, hireDate, interests, mySite, pastProjects, preferredName,
responsibilities, schools, skills, mailboxSettings, DeviceEnrollmentLimit, print, SignInActivity
.AUTHOR
Morten Knudsen, Microsoft MVP - https://mortenknudsen.net
.LINK
https://github.com/KnudsenMorten/MicrosoftGraphPS
.INPUTS
None. You cannot pipe objects
.OUTPUTS
Returns the data
.EXAMPLE
$Result = Get-MgUser-AllProperties-AllUsers
$Result | fl
$Result.ManagerProperties | fl
#>
[CmdletBinding()]
param(
[Parameter()]
[switch]$All,
[Parameter()]
[string]$UserId
)
# Building list of Properties from first user found in Entra ID (prior named Azure AD)
$PropertiesRaw = Get-MgUser -Top 1 | Get-Member -MemberType Property | select -ExpandProperty Name
<#
$BulkPropertyExclude
Certain properties cannot be returned within a user collection.
https://learn.microsoft.com/en-us/graph/api/user-list?view=graph-rest-1.0&tabs=http#optional-query-parameters
The following properties are only supported when retrieving a single user: aboutMe, birthday, hireDate, interests, mySite, pastProjects, preferredName,
responsibilities, schools, skills, mailboxSettings.
The following properties are not supported in personal Microsoft accounts and will be null: aboutMe, birthday, interests, mySite, pastProjects, preferredName,
responsibilities, schools, skills, streetAddress.
#>
$PropertyExclude = @("MailboxSettings",`
"DeviceEnrollmentLimit",`
"SignInActivity",`
"Print",`
"AboutMe",`
"Birthday",`
"HireDate",`
"Interests",`
"MySite",`
"PastProjects",`
"PreferredName",`
"Responsibilities",`
"Schools",`
"Skills"
)
# Removing special properties from bulk-retrieval
$Properties = $PropertiesRaw | Where-Object { ($_ -notin $PropertyExclude) }
# Building array of properties to expand
$PropertiesExpand = @("Manager")
# Getting all data about users
Write-Verbose "Getting all properties from all users in Entra ID .... Please Wait !"
$EntraID_Users_ALL = Get-MgUser -All -Property $Properties -ExpandProperty $PropertiesExpand | Select-Object $Properties | `
Select *,@{Name = 'ManagerDisplayName'; Expression = {$_.Manager.AdditionalProperties.displayName}}, `
@{Name = 'ManagerMail'; Expression = {$_.Manager.AdditionalProperties.mail}},`
@{Name = 'ManagerProperties'; Expression = {$_.Manager.AdditionalProperties}}
Return $EntraID_Users_ALL
}
Function InstallUpdate-MicrosoftGraphPS
{
<#
.SYNOPSIS
Install and Update MicrosoftGraphPS module
.DESCRIPTION
Install latest version of MicrosoftGraphPS, if not found
Updates to latest version of MicrosoftGraphPS, if switch (-AutoUpdate) is set
.AUTHOR
Morten Knudsen, Microsoft MVP - https://mortenknudsen.net
.LINK
https://github.com/KnudsenMorten/MicrosoftGraphPS
.PARAMETER Scope
Scope where MicrosoftGraphPS module will be installed - can be AllUsers or CurrentUser
.PARAMETER AutoUpdate
MicrosoftGraphPS module will be updated to latest version, if switch (-AutoUpdate) is set
.INPUTS
None. You cannot pipe objects
.OUTPUTS
Installation / Update status
.EXAMPLE
InstallUpdate-MicrosoftGraphPS -Scope AllUsers -AutoUpdate
#>
param(
[parameter()]
[ValidateSet("CurrentUser","AllUsers")]
$Scope = "AllUsers",
[parameter()]
[switch]$AutoUpdate = $False
)
#####################################################################
# MicrosoftGraphPS
#####################################################################
$Module = "MicrosoftGraphPS"
$ModuleCheck = Get-Module -Name $Module -ListAvailable -ErrorAction SilentlyContinue
If (!($ModuleCheck))
{
Write-host ""
Write-host "Installing latest version of $($Module) from PsGallery in scope $($Scope) .... Please Wait !"
Install-module -Name $Module -Repository PSGallery -Force -Scope $Scope
import-module -Name $Module -Global -force -DisableNameChecking -WarningAction SilentlyContinue
}
Else
{
#####################################
# Check for any available updates
#####################################
# Current version
$InstalledVersions = Get-module $Module -ListAvailable
$LatestVersion = $InstalledVersions | Sort-Object Version -Descending | Select-Object -First 1
$CleanupVersions = $InstalledVersions | Where-Object { $_.Version -ne $LatestVersion.Version }
# Online version in PSGallery (online)
$Online = Find-Module -Name $Module -Repository PSGallery
# Compare versions
if ( ([version]$Online.Version) -gt ([version]$LatestVersion.Version) )
{
Write-host ""
Write-host "Newer version ($($Online.version)) of $($Module) was detected in PSGallery"
Write-host ""
Write-host "Updating to latest version $($Online.version) of $($Module) from PSGallery ... Please Wait !"
Update-module $Module -Force
import-module -Name $Module -Global -force -DisableNameChecking -WarningAction SilentlyContinue
}
Else
{
# No new version detected ... continuing !
Write-host ""
Write-host "OK - Running latest version ($($LatestVersion.version)) of $($Module)"
}
#####################################
# Clean-up older versions, if found
#####################################
$InstalledVersions = Get-module $Module -ListAvailable
$LatestVersion = $InstalledVersions | Sort-Object Version -Descending | Select-Object -First 1
$CleanupVersions = $InstalledVersions | Where-Object { $_.Version -ne $LatestVersion.Version }
Write-host ""
ForEach ($ModuleRemove in $CleanupVersions)
{
Write-Host "Removing older version $($ModuleRemove.Version) of $($ModuleRemove.Name) ... Please Wait !"
Uninstall-module -Name $ModuleRemove.Name -RequiredVersion $ModuleRemove.Version -Force -ErrorAction SilentlyContinue
# Removing left-overs if uninstall doesn't complete task
$ModulePath = (get-item $ModuleRemove.Path -ErrorAction SilentlyContinue).DirectoryName
if ( ($ModulePath) -and (Test-Path $ModulePath) )
{
$Result = takeown /F $ModulePath /A /R
$Result = icacls $modulePath /reset
$Result = icacls $modulePath /grant Administrators:'F' /inheritance:d /T
$Result = Remove-Item -Path $ModulePath -Recurse -Force -Confirm:$false
}
}
} #If (!($ModuleCheck))
}
Function Invoke-MgGraphRequestPS
{
<#
.SYNOPSIS
Invoke command to get/put/post/patch/delete data using Microsoft Graph REST endpoint
.DESCRIPTION
Get data using Microsoft Graph REST endpoint in case there is no PS-cmdlet available
.AUTHOR
Morten Knudsen, Microsoft MVP - https://mortenknudsen.net
.LINK
https://github.com/KnudsenMorten/MicrosoftGraphPS
.PARAMETER Uri
This is the Uri for the REST endpoint in Microsoft Graph
.PARAMETER Method
This is the method to handle the data (GET, PUT, DELETE, POST, PATCH)
.PARAMETER OutPutType
This is the output type
.INPUTS
None. You cannot pipe objects
.OUTPUTS
Returns the data
.EXAMPLE
# Method #1 - REST Endpoint
$Uri = "https://graph.microsoft.com/v1.0/devicemanagement/managedDevices"
$Devices = Invoke-MgGraphRequestPS -Uri $Uri -Method GET -OutputType PSObject
# Method #2 - MgGraph cmdlet (prefered method, if available)
$Devices = Get-MgDeviceManagementManagedDevice
$Devices
#>
[CmdletBinding()]
param(
[Parameter(mandatory)]
[string]$Uri,
[Parameter(mandatory)]
[ValidateSet("GET", "DELETE", "POST", "PUT", "PATCH", IgnoreCase = $false)]
$Method = "GET",
[Parameter(mandatory)]
[ValidateSet("PSObject", "JSON", "HashTable", "HttpResponseMessage", IgnoreCase = $false)]
$OutputType = "PSObject",
[Parameter()]
[Object]$Body,
[Parameter()]
[Object]$Headers,
[Parameter()]
[Object]$ContentType,
[Parameter()]
[boolean]$SkipHeaderValidation,
[Parameter()]
[switch]$PassThru
)
<# TROUBLESHOOTING !!
$Uri = $Uri
$Method = "GET"
$OutputType = "PSObject"
#>
$Result = @()
$ResultsCount = 0
$CmdToRun_Hash = @{}
If ($Method)
{
$CmdToRun_Hash += @{ Method = $Method }
}
If ($Uri)
{
$CmdToRun_Hash += @{ Uri = $Uri }
}
If ($Headers)
{
$CmdToRun_Hash += @{ Headers = $Headers }
}
If ($Body)
{
$CmdToRun_Hash += @{ Body = $Body }
}
If ($OutputType)
{
$CmdToRun_Hash += @{ OutputType = $OutputType }
}
If ($ContentType)
{
$CmdToRun_Hash += @{ ContentType = $ContentType }
}
If ($SkipHeaderValidation)
{
$CmdToRun_Hash += @{ SkipHeaderValidation = $SkipHeaderValidation }
}
If ($PassThru)
{
$CmdToRun_Hash += @{ PassThru = $PassThru }
}
$ResultsRaw = Invoke-MGGraphRequest @CmdToRun_Hash
$Result += $ResultsRaw.value
$ResultsCount += ($ResultsRaw.value | Measure-Object).count
Write-host "[ $($ResultsCount) ] Getting data from $($Uri) using MgGraph"
if (!([string]::IsNullOrEmpty($ResultsRaw.'@odata.nextLink')))
{
do
{
Try
{
$Uri = $ResultsRaw.'@odata.nextLink'
$CmdToRun_Hash = @{}
If ($Method)
{
$CmdToRun_Hash += @{ Method = $Method }
}
If ($Uri)
{
$CmdToRun_Hash += @{ Uri = $Uri }
}
If ($Headers)
{
$CmdToRun_Hash += @{ Headers = $Headers }
}
If ($Body)
{
$CmdToRun_Hash += @{ Body = $Body }
}
If ($OutputType)
{
$CmdToRun_Hash += @{ OutputType = $OutputType }
}
If ($ContentType)
{
$CmdToRun_Hash += @{ ContentType = $ContentType }
}
If ($SkipHeaderValidation)
{
$CmdToRun_Hash += @{ SkipHeaderValidation = $SkipHeaderValidation }
}
If ($PassThru)
{
$CmdToRun_Hash += @{ PassThru = $PassThru }
}
$ResultsRaw = Invoke-MGGraphRequest @CmdToRun_Hash
}
Catch
{
Write-host "Errors occured - waiting 3 sec and then retrying"
Sleep -Seconds 3
}
$ResultsCount += ($ResultsRaw.value | Measure-Object).count
$Result += $ResultsRaw.value
Write-host "[ $($ResultsCount) ] Getting more data from $($Uri) using MgGraph"
}
while (!([string]::IsNullOrEmpty($ResultsRaw.'@odata.nextLink')))
}
Return $Result
}
Function Invoke-MicrosoftRestApiRequestPS
{
<#
.SYNOPSIS
Invoke command to get/put/post/patch/delete data using Microsoft REST API endpoint
.DESCRIPTION
Get data using Microsoft REST API endpoint like GET https://api.securitycenter.microsoft.com/api/machines
.AUTHOR
Morten Knudsen, Microsoft MVP - https://mortenknudsen.net
.LINK
https://github.com/KnudsenMorten/MicrosoftGraphPS
.PARAMETER Uri
This is the Uri for the REST endpoint in Microsoft Graph
.PARAMETER Method
This is the method to handle the data (GET, PUT, DELETE, POST, PATCH)
.PARAMETER Header
This is the Header coming from Connect-MicrosoftRestApiEndpointPS
.INPUTS
None. You cannot pipe objects
.OUTPUTS
Returns the data
.EXAMPLE
$Result = Invoke-MicrosoftRestApiRequestPS -Uri "https://api.securitycenter.microsoft.com/api/machines" `
-Method GET `
-Headers $ConnectAuth[1]
# Show Result
$Result
#>
[CmdletBinding()]
param(
[Parameter(mandatory)]
[string]$Uri,
[Parameter(mandatory)]
[ValidateSet("GET", "DELETE", "POST", "PUT", "PATCH", IgnoreCase = $false)]
$Method = "GET",
[Parameter()]
[Object]$Body,
[Parameter()]
[Object]$Headers,
[Parameter()]
[Object]$ContentType
)
<# TROUBLESHOOTING
$Uri = "https://api.securitycenter.microsoft.com/api/machines"
$Method = "GET"
$Headers = $ConnectAuth[1]
#>
$ResponseAllRecords = @()
Do
{
Write-host ""
try
{
$CmdToRun_Hash = @{}
If ($Method)
{
$CmdToRun_Hash += @{ Method = $Method }
}
If ($Uri)
{
$CmdToRun_Hash += @{ Uri = $Uri }
}
If ($Headers)
{
$CmdToRun_Hash += @{ Headers = $Headers }
}
If ($Body)
{
$CmdToRun_Hash += @{ Body = $Body }
}
If ($ContentType)
{
$CmdToRun_Hash += @{ ContentType = $ContentType }
}
$ResponseRaw = Invoke-WebRequest @CmdToRun_Hash
$ResponseAllRecords += $ResponseRaw.content
$ResponseRawJSON = ($ResponseRaw | ConvertFrom-Json)
$ResultsCount += ( ($ResponseRaw.content | ConvertFrom-Json).value | Measure-Object).count
Write-host "[ $($ResultsCount) ] Getting data from $($Uri) using REST Api endpoint"
if ($ResponseRawJSON.'@odata.nextLink')
{
$Uri = $ResponseRawJSON.'@odata.nextLink'
}
else
{
$Uri = $null
}
}
catch
{
Write-host ""
Write-host "StatusCode: " $_.Exception.Response.StatusCode.value__
Write-host "StatusDescription:" $_.Exception.Response.StatusDescription
Write-host ""
if ($_.ErrorDetails.Message)
{
Write-host ""
Write-host "Inner Error: $_.ErrorDetails.Message"
Write-host ""
}
# check for a specific error so that we can retry the request otherwise, set the url to null so that we fall out of the loop
if ($_.Exception.Response.StatusCode.value__ -eq 403 )
{
# just ignore, leave the url the same to retry but pause first
if ($retryCount -ge $maxRetries)
{
# not going to retry again
$Uri = $null
Write-host 'Not going to retry...'
}
else
{
$retryCount += 1
write-host ""
Write-host "Retry attempt $retryCount after a $pauseDuration second pause..."
Write-host ""
Start-Sleep -Seconds $pauseDuration
}
}
else
{
# not going to retry -- set the url to null to fall back out of the while loop
$Uri = $null
}
}
}
while (!([string]::IsNullOrEmpty($Uri)))
$Result = ($ResponseAllRecords | ConvertFrom-Json).value
Return $Result
}
Function Manage-Version-Microsoft.Graph
{
<#
.SYNOPSIS
Version management of Microsoft.Graph PS modules
.DESCRIPTION
Installing latest version of Microsoft.Graph, if not found
Shows older installed versions of Microsoft.Graph
Checks if newer version if available from PSGallery of Microsoft.Graph
Automatic clean-up old versions of Microsoft.Graph
Update to latest version from PSGallery of Microsoft.Graph
Remove all versions of Microsoft.Graph
.AUTHOR
Morten Knudsen, Microsoft MVP - https://mortenknudsen.net
.LINK
https://github.com/KnudsenMorten/MicrosoftGraphPS
.PARAMETER Scope
Scope where MicrosoftGraphPS module will be installed - can be AllUsers (default) or CurrentUser
.PARAMETER CleanupOldMicrosoftGraphVersions
[switch] Removes old versions, if any found
.PARAMETER RemoveAllMicrosoftGraphVersions
[switch] Removes all versions of Microsoft.Graph (complete re-install)
.PARAMETER InstallLatestMicrosoftGraph
[switch] Install latest version of Microsoft.Graph from PSGallery, if new version detected
.PARAMETER ShowVersionDetails
[switch] Show version details (detailed)
.INPUTS
None. You cannot pipe objects
.OUTPUTS
Returns the data
.EXAMPLE
# Show details of installed Microsoft.Graph
Manage-Version-Microsoft.Graph
# Show details of installed Microsoft.Graph including version details
Manage-Version-Microsoft.Graph -ShowVersionDetails
# Show details of installed Microsoft.Graph and install latest (if found)
Manage-Version-Microsoft.Graph -InstallLatestMicrosoftGraph
# Show details of installed Microsoft.Graph and install latest (if found)
Manage-Version-Microsoft.Graph -InstallLatestMicrosoftGraph -Scope CurrentUser
# Force Re-install of Microsoft.Graph
Manage-Version-Microsoft.Graph -ForceReinstall -Scope AllUsers
# Show details of installed Microsoft.Graph and clean-up old versions (if found)
Manage-Version-Microsoft.Graph -CleanupOldMicrosoftGraphVersions
# Show details of installed Microsoft.Graph and remove all versions (complete re-install)
Manage-Version-Microsoft.Graph -RemoveAllMicrosoftGraphVersions
# Show details, install latest (if found) and clean-up old versions (if found)
Manage-Version-Microsoft.Graph -InstallLatestMicrosoftGraph -CleanupOldMicrosoftGraphVersions
#>
[CmdletBinding()]
param(
[parameter()]
[ValidateSet("CurrentUser","AllUsers")]
$Scope = "AllUsers",
[Parameter()]
[switch]$CleanupOldMicrosoftGraphVersions = $false,
[Parameter()]
[switch]$RemoveAllMicrosoftGraphVersions = $false,
[Parameter()]
[switch]$InstallLatestMicrosoftGraph = $False,
[Parameter()]
[switch]$ForceReinstall = $False,
[Parameter()]
[switch]$ShowVersionDetails = $False
)
#-----------------------------------------------------------------------------------------
#####################################################################
# MicrosoftGraphPS - install/update/remove
#####################################################################
$Module = "MicrosoftGraphPS"
Write-host "Checking module $($Module) ... Please Wait !"
$ModuleCheck = Get-Module -Name $Module -ListAvailable -ErrorAction SilentlyContinue
If (!($ModuleCheck))
{
Write-host ""
Write-host "Installing latest version of $($Module) from PsGallery in scope $($Scope) .... Please Wait !"
Install-module -Name $Module -Repository PSGallery -Force -Scope $Scope
import-module -Name $Module -Global -force -DisableNameChecking -WarningAction SilentlyContinue
}
Else
{
#####################################
# Check for any available updates
#####################################
# Current version
$InstalledVersions = Get-module $Module -ListAvailable
$LatestVersion = $InstalledVersions | Sort-Object Version -Descending | Select-Object -First 1
$CleanupVersions = $InstalledVersions | Where-Object { $_.Version -ne $LatestVersion.Version }
# Online version in PSGallery (online)
$Online = Find-Module -Name $Module -Repository PSGallery
# Compare versions
if ( ([version]$Online.Version) -gt ([version]$LatestVersion.Version) )
{
Write-host ""
Write-host "Newer version ($($Online.version)) of $($Module) was detected in PSGallery"
Write-host ""
Write-host "Updating to latest version $($Online.version) of $($Module) from PSGallery ... Please Wait !"
Update-module $Module -Force
import-module -Name $Module -Global -force -DisableNameChecking -WarningAction SilentlyContinue
}
Else
{
# No new version detected ... continuing !
Write-host ""
Write-host "OK - Running latest version ($($LatestVersion.version)) of $($Module)"
}
#####################################
# Clean-up older versions, if found
#####################################
$InstalledVersions = Get-module $Module -ListAvailable
$LatestVersion = $InstalledVersions | Sort-Object Version -Descending | Select-Object -First 1
$CleanupVersions = $InstalledVersions | Where-Object { $_.Version -ne $LatestVersion.Version }
Write-host ""
ForEach ($ModuleRemove in $CleanupVersions)
{
Write-Host "Removing older version $($ModuleRemove.Version) of $($ModuleRemove.Name) ... Please Wait !"
Uninstall-module -Name $ModuleRemove.Name -RequiredVersion $ModuleRemove.Version -Force -ErrorAction SilentlyContinue
# Removing left-overs if uninstall doesn't complete task
$ModulePath = (get-item $ModuleRemove.Path -ErrorAction SilentlyContinue).DirectoryName
if ( ($ModulePath) -and (Test-Path $ModulePath) )
{
$Result = takeown /F $ModulePath /A /R
$Result = icacls $modulePath /reset
$Result = icacls $modulePath /grant Administrators:'F' /inheritance:d /T
$Result = Remove-Item -Path $ModulePath -Recurse -Force -Confirm:$false
}
}
} #If (!($ModuleCheck))
#----------------------------------------------------------------------------------------------------------------------------------------------
# Parameter/Switch to force removal of all versions of Microsoft.Graph
If ($RemoveAllMicrosoftGraphVersions)
{
Write-host ""
Write-Host "Removing all versions of Microsoft.Graph main module ... Please Wait !"
Uninstall-Module Microsoft.Graph -AllVersions -Force -ErrorAction SilentlyContinue
Remove-Module Microsoft.Graph -Force -ErrorAction SilentlyContinue
# Remove all dependency modules from memory + uninstall
$Retry = 0
Do
{
$Retry = 1 + $Retry
$LoadedModules = Get-Module Microsoft.Graph.* -ListAvailable -ErrorAction SilentlyContinue | Where-Object { ($_.Name -ne 'Microsoft.Graph.Authentication') -and ($_.Name -notlike "*beta*") }
$LoadedModules = $LoadedModules | Sort-Object -Property Name
# Modules found
If ($LoadedModules)
{
ForEach ($Module in $LoadedModules)
{
Write-Host "Removing dependency module $($Module.Name) (version: $($Module.Version)) ... Please Wait !"
Remove-Module -Name $Module.Name -force -ErrorAction SilentlyContinue
Uninstall-Module -Name $Module.Name -force -ErrorAction SilentlyContinue
# Sometimes uninstall-module doesn't clean-up correctly. This will ensure complete deletion of leftovers !
$ModulePath = (get-item $Module.Path -ErrorAction SilentlyContinue).DirectoryName
if ( ($ModulePath) -and (Test-Path $ModulePath) )
{
$Result = takeown /F $ModulePath /A /R
$Result = icacls $modulePath /reset
$Result = icacls $modulePath /grant Administrators:'F' /inheritance:d /T
$Result = Remove-Item -Path $ModulePath -Recurse -Force -Confirm:$false
}
}
$LoadedModules = Get-Module -Name "Microsoft.Graph.Authentication" -ListAvailable -ErrorAction SilentlyContinue
ForEach ($Module in $LoadedModules)
{
Write-Host "Removing dependency module $($Module.Name) (version: $($Module.Version)) ... Please Wait !"
Remove-Module -Name $Module.Name -force -ErrorAction SilentlyContinue
Uninstall-Module -Name $Module.Name -force -ErrorAction SilentlyContinue
# Sometimes uninstall-module doesn't clean-up correctly. This will ensure complete deletion of leftovers !
$ModulePath = (get-item $Module.Path -ErrorAction SilentlyContinue).DirectoryName
if ( ($ModulePath) -and (Test-Path $ModulePath) )
{
$Result = takeown /F $ModulePath /A /R
$Result = icacls $modulePath /reset
$Result = icacls $modulePath /grant Administrators:'F' /inheritance:d /T
$Result = Remove-Item -Path $ModulePath -Recurse -Force -Confirm:$false
}
}
}
# Verifying if all modules have been removed
$InstalledModules = Get-Module Microsoft.Graph.* -ErrorAction SilentlyContinue | Where-Object { ($_.Name -notlike "*beta*") }
}
Until ( ($LoadedModules -eq $null) -or ($Retry -eq 5) )
}
#-----------------------------------------------------------------------------------------
Write-host ""
Write-Host "Checking if Microsoft.Graph is installed"
$Installed = Get-module Microsoft.Graph.* -ListAvailable | Where-Object { ($_.Name -notlike "*beta*") }