-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck-authentication-method.ps1
47 lines (41 loc) · 1.59 KB
/
check-authentication-method.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
#run script
Import-Module Microsoft.Graph
Import-Module Microsoft.Graph.Beta.Users
Connect-MgGraph -Scopes "User.ReadWrite.All","UserAuthenticationMethod.ReadWrite.All"
# Get all users from your tenant
$allusers = Get-MgBetaUser -All
# Add your webhook URL here. You generate it from your dedicated notification channel in Teams.
$webhookUrl = "Insert Webhook url here"
# Add your notification title here
$teamschanneltitle = "Checking for missing phone authentication methods"
function SendTeamsNotification {
$JSONBody = [PSCustomObject][Ordered]@{
"@type" = "MessageCard"
"@context" = http://schema.org/extensions
"summary" = $teamschanneltitle
"themeColor" = '0078D7'
"title" = $teamschanneltitle
"text" = "$message"
}
$TeamMessageBody = ConvertTo-Json $JSONBody
$parameters = @{
"URI" = $webhookUrl
"Method" = 'POST'
"Body" = $TeamMessageBody
"ContentType" = 'application/json'
}
Invoke-RestMethod @parameters
}
$missingphoneauth = @()
foreach ($user in $allusers) {
$existingPhoneMethods = Get-MgBetaUserAuthenticationPhoneMethod -UserId $user.Id
if (!$existingPhoneMethods) {
Write-Host "Missing phone authentication method for user $($user.UserPrincipalName)" -ForegroundColor Yellow
$missingphoneauth += $user.UserPrincipalName
$message = "Missing phone authentication method for user $($user.UserPrincipalName)"
SendTeamsNotification
}
else {
Write-Host "All good! Phone methods for user $($user.UserPrincipalName) exists" -ForegroundColor Green
}
}