Continuing our collection of routines to manage the trusted hosts this time we’ll look at how to remove a trusted host
function remove-trustedhost {
[CmdletBinding()]
param (
[string]$trustedhost,
[string]$computername = $env:COMPUTERNAME
)
if… Read the full text.