-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.ps1
74 lines (66 loc) · 2.39 KB
/
script.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
param (
[string]$domain = $( Read-Host "Domain" ),
[string]$csvfile = $( Read-Host "Pfad zur CSV-File" ),
[int]$PasswordLenght = 12
)
Function GenerateStrongPassword ([Parameter(Mandatory=$true)][int]$PasswordLenght)
{
Add-Type -AssemblyName System.Web
$PassComplexCheck = $false
do {
$newPassword=[System.Web.Security.Membership]::GeneratePassword($PasswordLenght,1)
If ( ($newPassword -cmatch "[A-Z\p{Lu}\s]") `
-and ($newPassword -cmatch "[a-z\p{Ll}\s]") `
-and ($newPassword -match "[\d]") `
-and ($newPassword -match "[^\w]")
)
{
$PassComplexCheck=$True
}
} While ($PassComplexCheck -eq $false)
return $newPassword
}
# Importiere Powershell Module
Import-Module ActiveDirectory
# Lade CSV-Datei in Array
$ADUsers = Import-Csv $csvfile -Delimiter ";"
# Loope durch Array (CSV)
foreach ($User in $ADUsers) {
$Benutzername = $User.Benutzername
if (Get-ADUser -F { SamAccountName -eq $Benutzername }) {
Write-Warning "Benutzer $Benutzername existiert bereits in der Active Directory Domäne '$domain'."
}
else {
# Definiere alle Werte in eigene Variablen
$Vorname = $User.Vorname
$Nachname = $User.Nachname
$Initialen = $User.Initialen
if (!$User.Passwort) {
$Passwort = GenerateStrongPassword -PasswordLenght $PasswordLenght
Write-Host "Passwort für Benutzer '$Benutzername' wurde automatisch generiert: $Passwort" -ForegroundColor Blue
}
else {
$Passwort = $User.Passwort
}
$Email = $User.Email
$Abteilung = $User.Abteilung
$OU = $User.OU
New-ADUser `
-SamAccountName $Benutzername `
-Name "$Vorname $Nachname" `
-GivenName $Vorname `
-Surname $Nachname `
-Initials $Initialen `
-DisplayName "$Vorname $Nachname" `
-UserPrincipalName "$Benutzername@$domain" `
-AccountPassword (ConvertTo-SecureString $Passwort -AsPlainText -Force) `
-Enabled $true `
-ChangePasswordAtLogon $false `
-PasswordNeverExpires $true `
-Path $OU `
-EmailAddress $Email `
-Department $Abteilung
Write-Host "Benutzer $Benutzername wurde erfolgreich in der Active Directory Domäne '$domain' erstellt." -ForegroundColor Green
}
}
Write-Host "Vorgang abgeschlossen."