mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-27 03:56:50 -04:00
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
15 lines
No EOL
434 B
PowerShell
15 lines
No EOL
434 B
PowerShell
# Copyright IBM Corp. 2010, 2025
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
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 |