Public/HFAccount/Remove-HFAccount.ps1

<# function Remove-HFAccount {
    [CmdletBinding()]
    Param (
    )

    BEGIN {
        $VerbosePrefix = "Remove-HFAccount:"
    }

    PROCESS {
    }

    END {
    }
}
 #>