Public/Get-ADSIForestDomain.ps1

Function Get-ADSIForestDomain
{
<#
.SYNOPSIS
    Function to retrieve the forest domain(s)
 
.DESCRIPTION
    Function to retrieve the forest domain(s)
 
.PARAMETER Credential
    Specifies alternative credential to use
 
.PARAMETER ForestName
    Specifies the ForestName to query
 
.EXAMPLE
    Get-ADSIForest
 
.EXAMPLE
    Get-ADSIForest -ForestName lazywinadmin.com
 
.EXAMPLE
    Get-ADSIForest -Credential (Get-Credential superAdmin) -Verbose
 
.EXAMPLE
    Get-ADSIForest -ForestName lazywinadmin.com -Credential (Get-Credential superAdmin) -Verbose
 
.OUTPUTS
    System.DirectoryServices.ActiveDirectory.Forest
 
.NOTES
    Francois-Xavier Cat
    LazyWinAdmin.com
    @lazywinadm
    github.com/lazywinadmin/ADSIPS
#>

    [cmdletbinding()]
    PARAM (
        [Alias("RunAs")]
        [System.Management.Automation.PSCredential]
        [System.Management.Automation.Credential()]
        $Credential = [System.Management.Automation.PSCredential]::Empty,
        
        $ForestName = [System.DirectoryServices.ActiveDirectory.Forest]::Getcurrentforest()
    )
    PROCESS
    {
        TRY
        {
            IF ($PSBoundParameters['Credential'] -or $PSBoundParameters['ForestName'])
            {
                Write-Verbose '[PROCESS] Credential or FirstName specified'
                $Splatting = @{ }
                IF ($PSBoundParameters['Credential']) { $Splatting.Credential = $Credential }
                IF ($PSBoundParameters['ForestName']) { $Splatting.ForestName = $ForestName }
                
                (Get-ADSIForest @splatting).Domains
                
            }
            ELSE
            {
                (Get-ADSIForest).Domains
            }
            
        }
        CATCH
        {
            $pscmdlet.ThrowTerminatingError($_)
        }
    }
}