12 lines
364 B
PowerShell
12 lines
364 B
PowerShell
Param(
|
|
[string]$hostname
|
|
)
|
|
|
|
$trustedHosts = (
|
|
Get-Item "wsman:\localhost\client\trustedhosts").Value.Replace(
|
|
$hostname, '')
|
|
$trustedHosts = $trustedHosts.Replace(",,","")
|
|
if($trustedHosts.EndsWith(",")){
|
|
$trustedHosts = $trustedHosts.Substring(0,$trustedHosts.length-1)
|
|
}
|
|
Set-Item "wsman:\localhost\client\trustedhosts" -Value $trustedHosts -Force |