-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTestSiUnUserFaitPartieDUnGroupe.ps1
50 lines (32 loc) · 1.2 KB
/
TestSiUnUserFaitPartieDUnGroupe.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
## SAMPLE FUNCTION: TEST SI UN UTILISATEUR FAIT PARTIE D'UN GROUPE OU PAS
# Creaion d'une fonction qui permet de faire le test
Function IsMemberOfGroup($groupName, $userPrincipalName) {
# Retourne le ou les groupes répondant au nom de la varible $groupName
$group = Get-MsolGroup -SearchString $groupName -All
# Test est ce qu'au moins un gropue a été trouvé
if($group -eq $null){
Write-Output $group
Write-Host "Group not found"
return
}
# Teste est-ce que le nom de groupe est unique
if($group.count -gt 1){
Write-Host "More than one matching group found"
return
}
# Test est-ce que l'utilisateur existe
$user = Get-MsolUser -UserPrincipalName $userPrincipalName
if($user -eq $null){
Write-Host "User not found"
return
}
# Test pour voir si l'utilsateur fait bien partie du groupe
$groupMember = Get-MsolGroupMember -GroupObjectId $group.ObjectId -All | Where-Object { $_.ObjectId -eq $user.ObjectId }
if($groupMember -eq $null){
Write-Output $false
}else{
write-Output $true
}
}
# Exemple d'utilisation
IsMemberOfGroup "Liga AC Labs" martin@OurCustomerO365labsPStest.onmicrosoft.com