Created
May 30, 2015 00:45
-
-
Save MattHodge/b931d609cf9970ce7ff3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get a list of trusted hosts | |
Get-Item WSMan:\localhost\Client\TrustedHosts | |
# Note that these commands don't create a list of trusted hosts, it simply replaces the trusted host with what you set via the command. If you need to add multiple hosts, they need to be comma seperated | |
# Trust all computers in a domain | |
Set-Item WSMan:\localhost\Client\TrustedHosts *.contoso.com | |
# Turst a single machine | |
Set-Item WSMan:\localhost\Client\TrustedHosts -Value myserver | |
# Add another single machine | |
$trustedHosts = (Get-Item WSMan:\localhost\Client\TrustedHosts).value | |
Set-Item WSMan:\localhost\Client\TrustedHosts -Value "$trustedHosts, mynextserver" | |
# Trust an IP address range | |
Set-Item WSMan:\localhost\Client\TrustedHosts -value 192.168.10.* | |
# Trust all remote machines (not recommended) | |
Set-Item WSMan:\localhost\Client\TrustedHosts * |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment