-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathLabAccountImport.ps1
278 lines (248 loc) · 8.62 KB
/
LabAccountImport.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
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
<#
.Synopsis
Test a CSV from FakeNameGenerator.com for required fields.
.DESCRIPTION
Test a CSV from FakeNameGenerator.com for required fields.
.EXAMPLE
Test-LabADUserList -Path .\FakeNameGenerator.com_b58aa6a5.csv
#>
function Test-LabADUserList
{
[CmdletBinding()]
[OutputType([Bool])]
Param
(
[Parameter(Mandatory=$true,
Position=0,
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true,
HelpMessage="Path to CSV generated from fakenamegenerator.com.")]
[Alias("PSPath")]
[ValidateNotNullOrEmpty()]
[string]
$Path
)
Begin {}
Process
{
# Test if the file exists.
if (Test-Path -Path $Path -PathType Leaf)
{
Write-Verbose -Message "Testing file $($Path)"
}
else
{
Write-Error -Message "File $($Path) was not found or not a file."
$false
return
}
# Get CSV header info.
$fileinfo = Import-Csv -Path $Path | Get-Member | Select-Object -ExpandProperty Name
$valid = $true
if ('City' -notin $fileinfo) {
Write-Warning -Message 'City field is missing'
$valid = $false
}
if ('Country' -notin $fileinfo) {
Write-Warning -Message 'Country field is missing'
$valid = $false
}
if ('GivenName' -notin $fileinfo) {
Write-Warning -Message 'GivenName field is missing'
$valid = $false
}
if ('Occupation' -notin $fileinfo) {
Write-Warning -Message 'Occupation field is missing'
$valid = $false
}
if ('Password' -notin $fileinfo) {
Write-Warning -Message 'Password field is missing'
$valid = $false
}
if ('StreetAddress' -notin $fileinfo) {
Write-Warning -Message 'StreetAddress field is missing'
$valid = $false
}
if ('Surname' -notin $fileinfo) {
Write-Warning -Message 'Surname field is missing'
$valid = $false
}
if ('TelephoneNumber' -notin $fileinfo) {
Write-Warning -Message 'TelephoneNumber field is missing'
$valid = $false
}
if ('Username' -notin $fileinfo) {
Write-Warning -Message 'Username field is missing'
$valid = $false
}
$valid
}
End {}
}
<#
.SYNOPSIS
Generates a semi random string.
.DESCRIPTION
Generates a semi random string.
.EXAMPLE
C:\PS> Get-RandomString
#>
function Get-RandomString {
[CmdletBinding()]
param(
# Size of string
[Parameter(Mandatory=$false,
HelpMessage='Lenght of random string,')]
[int]
$Lenght = 5
)
begin {
}
process {
-join ((65..90) + (97..122) | Get-Random -Count $Lenght | % {[char]$_})
}
end {
}
}
<#
.Synopsis
Removes duplicate username entries from Fake Name Generator generated accounts.
.DESCRIPTION
Removes duplicate username entries from Fake Name Generator generated accounts. Bulk
generated accounts from fakenamegenerator.com must have as fields:
* GivenName
* Surname
* StreetAddress
* City
* Title
* Username
* Password
* Country
* TelephoneNumber
* Occupation
.EXAMPLE
Remove-LabADUsertDuplicate -Path .\FakeNameGenerator.com_b58aa6a5.csv -OutPath .\unique_users.csv
#>
function Remove-LabADUsertDuplicate
{
[CmdletBinding()]
Param
(
[Parameter(Mandatory=$true,
Position=0,
ParameterSetName="Path",
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true,
HelpMessage="Path to CSV to remove duplicates from.")]
[Alias("PSPath")]
[ValidateNotNullOrEmpty()]
[string]
$Path,
[Parameter(Mandatory=$true,
Position=1,
ParameterSetName="Path",
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true,
HelpMessage="Path to CSV to remove duplicates from.")]
[ValidateNotNullOrEmpty()]
[string]
$OutPath
)
Begin {}
Process
{
Write-Verbose -Message "Processing $($Path)"
if (Test-LabADUserList -Path $Path) {
Import-Csv -Path $Path | Group-Object Username | Foreach-Object {
$_.group | Select-Object -Last 1} | Export-Csv -Path $OutPath -Encoding UTF8
} else {
Write-Error -Message "File $($Path) is not valid."
}
}
End {}
}
<#
.SYNOPSIS
Imports a CSV from Fake Name Generator to create test AD User accounts.
.DESCRIPTION
Imports a CSV from Fake Name Generator to create test AD User accounts.
It will create OUs per country under the OU specified. Bulk
generated accounts from fakenamegenerator.com must have as fields:
* GivenName
* Surname
* StreetAddress
* City
* Title
* Username
* Password
* Country
* TelephoneNumber
* Occupation
.EXAMPLE
C:\PS> Import-LabADUser -Path .\unique.csv -OU DemoUsers
#>
function Import-LabADUser
{
[CmdletBinding()]
param(
[Parameter(Mandatory=$true,
Position=0,
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true,
HelpMessage="Path to one or more locations.")]
[Alias("PSPath")]
[ValidateNotNullOrEmpty()]
[string[]]
$Path,
[Parameter(Mandatory=$true,
position=1,
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true,
HelpMessage="Organizational Unit to save users.")]
[String]
[Alias('OU')]
$OrganizationalUnit
)
begin {
if (-not (Get-Module -Name 'ActiveDirectory')) {
Write-Error -Message 'ActiveDirectory module is not present'
return
}
}
process {
Import-Module ActiveDirectory
$DomDN = (Get-ADDomain).DistinguishedName
$forest = (Get-ADDomain).Forest
$ou = Get-ADOrganizationalUnit -Filter "name -eq '$($OrganizationalUnit)'"
if($ou -eq $null) {
New-ADOrganizationalUnit -Name "$($OrganizationalUnit)" -Path $DomDN
$ou = Get-ADOrganizationalUnit -Filter "name -eq '$($OrganizationalUnit)'"
}
$data =
Import-Csv -Path $Path | select @{Name="Name";Expression={$_.Surname + ", " + $_.GivenName}},
@{Name="SamAccountName"; Expression={$_.Username}},
@{Name="UserPrincipalName"; Expression={$_.Username +"@" + $forest}},
@{Name="GivenName"; Expression={$_.GivenName}},
@{Name="Surname"; Expression={$_.Surname}},
@{Name="DisplayName"; Expression={$_.Surname + ", " + $_.GivenName}},
@{Name="City"; Expression={$_.City}},
@{Name="StreetAddress"; Expression={$_.StreetAddress}},
@{Name="State"; Expression={$_.State}},
@{Name="Country"; Expression={$_.Country}},
@{Name="PostalCode"; Expression={$_.ZipCode}},
@{Name="EmailAddress"; Expression={$_.Username +"@" + $forest}},
@{Name="AccountPassword"; Expression={ (Convertto-SecureString -Force -AsPlainText $_.password)}},
@{Name="OfficePhone"; Expression={$_.TelephoneNumber}},
@{Name="Title"; Expression={$_.Occupation}},
@{Name="Enabled"; Expression={$true}},
@{Name="PasswordNeverExpires"; Expression={$true}} | ForEach-Object -Process {
$subou = Get-ADOrganizationalUnit -Filter "name -eq ""$($_.Country)""" -SearchBase $ou.DistinguishedName
if($subou -eq $null) {
New-ADOrganizationalUnit -Name $_.Country -Path $ou.DistinguishedName
$subou = Get-ADOrganizationalUnit -Filter "name -eq ""$($_.Country)""" -SearchBase $ou.DistinguishedName
}
$_ | Select @{Name="Path"; Expression={$subou.DistinguishedName}},* | New-ADUser
}
}
end {}
}