Test-Surname.ps1


Description

Purpose

Checks if a given surname exists in Active Directory.

Detailed Description

This function searches Active Directory for a given surname (sn attribute) and returns whether the surname exists.

Back to Top

Usage

Example 1

PS C:\> Test-Surname -Surname "Smith" -Verbose

Checks if the surname “Smith” exists in Active Directory.

Back to Top

Notes

Author: Your Name Date: 2024-06-30

Back to Top


Script

<#
.SYNOPSIS
    Checks if a given surname exists in Active Directory.

.DESCRIPTION
    This function searches Active Directory for a given surname (sn attribute) and returns whether the surname exists.

.PARAMETER Surname
    The surname to search for in Active Directory.

.EXAMPLE
    PS C:\> Test-Surname -Surname "Smith" -Verbose
    Checks if the surname "Smith" exists in Active Directory.

.NOTES
    Author: Your Name
    Date: 2024-06-30
#>

function Test-Surname {
    [CmdletBinding()]
    param(
        [Parameter(Mandatory = $true)]
        [String] $Surname
    )

    BEGIN {
        Write-Verbose "Starting the Test-Surname function."
        Write-Verbose "Surname parameter value: $Surname"
    }

    PROCESS {
        Write-Verbose "Creating an ADSI searcher for surname: $Surname"
        $searcher = [ADSISearcher] "(sn=$Surname)"
        
        Write-Verbose "Executing the search."
        $result = $searcher.FindOne()

        if ($null -ne $result) {
            Write-Verbose "Surname '$Surname' found in Active Directory."
            $true
        }
        else {
            Write-Verbose "Surname '$Surname' not found in Active Directory."
            $false
        }
    }

    END {
        Write-Verbose "Test-Surname function completed."
    }
}

# Example call to the function with verbose output
# Test-Surname -Surname "Smith" -Verbose

Back to Top

Download

Please feel free to copy parts of the script or if you would like to download the entire script, simply click the download button. You can download the complete repository in a zip file by clicking the Download link in the menu bar on the left hand side of the page.


Report Issues

You can report an issue or contribute to this site on GitHub. Simply click the button below and add any relevant notes. I will attempt to respond to all issues as soon as possible.

Issue


Back to Top