Skip to content

Instantly share code, notes, and snippets.

View wolffberg's full-sized avatar
🎉

David Wolffberg wolffberg

🎉
View GitHub Profile
@wolffberg
wolffberg / ConvertTo-DistinguishedName.ps1
Last active February 11, 2021 05:27
Function to check and convert CanonicalName to DestinguishedName
function ConvertTo-DistinguishedName{
[CmdletBinding()]
Param(
[Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true)]
$CanonicalName
)
Begin{
# StringBuilders used to build DestinguishedName and LDAP query
$dn = [System.Text.StringBuilder]::new()
$ldapQuery = [System.Text.StringBuilder]::new()