Functions/RemotePS/Clear-TrustedHosts.ps1

<#
.SYNOPSIS
    Removes all computers from the trusted host list.
.DESCRIPTION
    Removes all computers from the trusted host list.
.EXAMPLE
    Clear-TrustedHosts
#>


function Clear-TrustedHosts {
    Param ()
    Set-TrustedHosts -Computer ''
}

Export-ModuleMember -Function Clear-TrustedHosts