-
Notifications
You must be signed in to change notification settings - Fork 204
/
Copy pathNew-AADUser.ps1
165 lines (140 loc) · 5.66 KB
/
New-AADUser.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
#Requires -Version 5.0
#Requires -Modules AzureAD
<#
.SYNOPSIS
Connect to Azure Active Directory and creates a user
.DESCRIPTION
.NOTES
This PowerShell script was developed and optimized for ScriptRunner. The use of the scripts requires ScriptRunner.
The customer or user is authorized to copy the script from the repository and use them in ScriptRunner.
The terms of use for ScriptRunner do not apply to this script. In particular, ScriptRunner Software GmbH assumes no liability for the function,
the use and the consequences of the use of this freely available script.
PowerShell is a product of Microsoft Corporation. ScriptRunner is a product of ScriptRunner Software GmbH.
© ScriptRunner Software GmbH
.COMPONENT
Azure Active Directory Powershell Module
Requires the library script StatisticLib.ps1
.LINK
https://github.com/scriptrunner/ActionPacks/tree/master/Statistics/Samples
.Parameter UserPrincipalName
[sr-en] User ID for this user
[sr-de] UPN des neuen Benutzers
.Parameter Password
[sr-en] New password for the user
[sr-de] Initiales Passwort
.Parameter DisplayName
[sr-en] Display name of the user
[sr-de] Anzeigename
.Parameter Enabled
[sr-en] User is able to log on using their user ID
[sr-de] Aktiviere Log On
.Parameter FirstName
[sr-en] First name of the user
[sr-de] Vorname
.Parameter LastName
[sr-en] Last name of the user
[sr-de] Nachname
.Parameter PostalCode
[sr-en] Postal code of the user
[sr-de] Postleitzahl
.Parameter City
[sr-en] City of the user
[sr-de] Ort
.Parameter Street
[sr-en] Street address of the user
[sr-de] Strasse
.Parameter PhoneNumber
[sr-en] Phone number of the user
[sr-de] Telefonnummer
.Parameter MobilePhone
[sr-en] Mobile phone number of the user
[sr-de] Telefonnummer mobil
.Parameter Department
[sr-en] Department of the user
[sr-de] Abteilung
.Parameter ForceChangePasswordNextLogin
[sr-en] Forces a user to change their password during their next logon
[sr-de] Benutzer muss das Passwort beim nächsten LogIn ändern
.Parameter ShowInAddressList
[sr-en] Show this user in the address list
[sr-de] Benutzer in der Adresslisten anzeigen
.Parameter UserType
[sr-en] Type of the user
[sr-de] Benutzertyp
.Parameter CostReduction
[sr-en] Cost saving through execution per ScriptRunner, in seconds
[sr-de] Zeitersparnis, in Sekunden
#>
param(
[Parameter(Mandatory = $true)]
[string]$UserPrincipalName,
[Parameter(Mandatory = $true)]
[string]$Password,
[Parameter(Mandatory = $true)]
[string]$DisplayName,
[Parameter(Mandatory = $true)]
[bool]$Enabled,
[string]$FirstName,
[string]$LastName,
[string]$PostalCode,
[string]$City,
[string]$Street,
[string]$PhoneNumber,
[string]$MobilePhone,
[string]$Department,
[bool]$ForceChangePasswordNextLogin,
[bool]$ShowInAddressList,
[int]$CostReduction = 600,
[ValidateSet('Member','Guest')]
[string]$UserType = 'Member'
)
try{
$PasswordProfile = New-Object -TypeName Microsoft.Open.AzureAD.Model.PasswordProfile
$PasswordProfile.Password = $Password
$PasswordProfile.ForceChangePasswordNextLogin = $ForceChangePasswordNextLogin
$nick = $UserPrincipalName.Substring(0, $UserPrincipalName.IndexOf('@'))
$Script:User = New-AzureADUser -UserPrincipalName $UserPrincipalName -DisplayName $DisplayName -AccountEnabled $Enabled -MailNickName $nick -UserType $UserType `
-PasswordProfile $PasswordProfile -ShowInAddressList $ShowInAddressList | Select-Object *
if($null -ne $Script:User){
if($PSBoundParameters.ContainsKey('FirstName') -eq $true ){
$null = Set-AzureADUser -ObjectId $Script:User.ObjectId -GivenName $FirstName
}
if($PSBoundParameters.ContainsKey('LastName') -eq $true ){
$null = Set-AzureADUser -ObjectId $Script:User.ObjectId -Surname $LastName
}
if($PSBoundParameters.ContainsKey('PostalCode') -eq $true ){
$null = Set-AzureADUser -ObjectId $Script:User.ObjectId -PostalCode $PostalCode
}
if($PSBoundParameters.ContainsKey('City') -eq $true ){
$null = Set-AzureADUser -ObjectId $Script:User.ObjectId -City $City
}
if($PSBoundParameters.ContainsKey('Street') -eq $true ){
$null = Set-AzureADUser -ObjectId $Script:User.ObjectId -StreetAddress $Street
}
if($PSBoundParameters.ContainsKey('PhoneNumber') -eq $true ){
$null = Set-AzureADUser -ObjectId $Script:User.ObjectId -TelephoneNumber $PhoneNumber
}
if($PSBoundParameters.ContainsKey('MobilePhone') -eq $true ){
$null = Set-AzureADUser -ObjectId $Script:User.ObjectId -Mobile $MobilePhone
}
if($PSBoundParameters.ContainsKey('Department') -eq $true ){
$null = Set-AzureADUser -ObjectId $Script:User.ObjectId -Department $Department
}
$Script:User = Get-AzureADUser | Where-Object {$_.UserPrincipalName -eq $UserPrincipalName} | Select-Object *
LogExecution -CostSavingsSeconds $CostReduction
if($SRXEnv) {
$SRXEnv.ResultMessage = $Script:User
}
else{
Write-Output $Script:User
}
}
else{
if($SRXEnv) {
$SRXEnv.ResultMessage = "User not created"
}
Throw "User not created"
}
}
finally{
}