Also replaced first and last names
This commit is contained in:
parent
cf923bb63e
commit
d660bdd9bf
@ -6,11 +6,13 @@
|
|||||||
$Users = Import-Csv .\Users.csv
|
$Users = Import-Csv .\Users.csv
|
||||||
forEach ($User in $Users)
|
forEach ($User in $Users)
|
||||||
{
|
{
|
||||||
$first = $User.first[0..1]
|
$firstname = $User.first
|
||||||
$last = $User.last[0..2]
|
$first = $firstname[0..1]
|
||||||
|
$lastname = $User.last
|
||||||
|
$last = $lastname[0..2]
|
||||||
$username = "$first$last"
|
$username = "$first$last"
|
||||||
$username = $username -replace " ", ""
|
$username = $username -replace " ", ""
|
||||||
"dsadd user `"cn=$username, ou=Illuminati, dc=datavg2, dc=local -fn Joetta -ln Heckel pwd Admin123" | out-file run.bat -Encoding "UTF8" -Append
|
"dsadd user `"cn=$username, ou=Illuminati, dc=datavg2, dc=local -fn $firstname -ln $lastname pwd Admin123" | out-file run.bat -Encoding "UTF8" -Append
|
||||||
}
|
}
|
||||||
"echo Script has finished running, thanks based Daniel in 1ELA for making our lives easier" | out-file run.bat -Encoding "UTF8" -Append
|
"echo Script has finished running, thanks based Daniel in 1ELA for making our lives easier" | out-file run.bat -Encoding "UTF8" -Append
|
||||||
"PAUSE" | out-file run.bat -Encoding "UTF8" -append
|
"PAUSE" | out-file run.bat -Encoding "UTF8" -append
|
||||||
|
Loading…
Reference in New Issue
Block a user