Skip to content

Instantly share code, notes, and snippets.

@Chirishman
Forked from kevinblumenfeld/RacoonDoctorDiaper.ps1
Last active May 15, 2018 17:25
Show Gist options
  • Save Chirishman/c5403388388c99bf599d5c6688b546fc to your computer and use it in GitHub Desktop.
Save Chirishman/c5403388388c99bf599d5c6688b546fc to your computer and use it in GitHub Desktop.
Write-Verbose "Display Name: $Display"
$TruncatedBaseDisplay = (-join([char[]]$Display | select -first 15))
$FirstUnusedName = (
($TruncatedBaseDisplay.Length)..1 | %{
$ThisLength = $_;
$Digits = 15 - $ThisLength;
(-join([char[]]$Display | select -first $ThisLength)) | %{
$ThisName = $_
$Zeroes = -join('0'*$Digits)
0..([int64](-join('1',$Zeroes)) - 1) | %{-join($ThisName,$_)} | ?{-not(Get-ADUser -filter {samaccountname -eq $_})} | %{
$_
break
}
}
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment