Windows/Powershell
From r00tedvw.com wiki
(Difference between revisions)
(Created page with "=Allow Remote Powershell= On the server you'll be accessing <nowiki>PS> Enable-PSRemoting -Force #suppresses user prompts and enables. PS> Enable-PSRemoting -SkipNetwork...") |
|||
Line 8: | Line 8: | ||
PS> Get-Item WSMan:\localhost\Client\TrustedHosts | PS> Get-Item WSMan:\localhost\Client\TrustedHosts | ||
+ | |||
WSManConfig: Microsoft.WSMan.Management\WSMan::localhost\Client | WSManConfig: Microsoft.WSMan.Management\WSMan::localhost\Client | ||
− | Type | + | Type Name SourceOfValue Value |
− | ---- | + | ---- ---- ------------- ----- |
− | System.String TrustedHosts | + | System.String TrustedHosts * </nowiki> |
Revision as of 10:25, 18 January 2019
Allow Remote Powershell
On the server you'll be accessing
PS> Enable-PSRemoting -Force #suppresses user prompts and enables. PS> Enable-PSRemoting -SkipNetworkProfileCheck -Force #enables even on public networks.
You may also need to add the client that will be connecting to the trusted hosts list.
PS> Set-Item WSMan:\localhost\Client\TrustedHosts -Value "FQDN" -Force #Adds an individual host. Overwrites previous entry. PS> Set-Item WSMan:\localhost\Client\TrustedHosts -Value "*" -Force #Adds everything to the trusted host list. PS> Get-Item WSMan:\localhost\Client\TrustedHosts WSManConfig: Microsoft.WSMan.Management\WSMan::localhost\Client Type Name SourceOfValue Value ---- ---- ------------- ----- System.String TrustedHosts *